/usr/share/perl5/Passwd/Unix.pm is in libpasswd-unix-perl 0.700-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 | package Passwd::Unix;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
use warnings;
use strict;
use Carp;
use Config;
use File::Spec;
use File::Path;
use File::Copy;
use File::Basename qw(dirname basename);
use IO::Compress::Bzip2 qw($Bzip2Error);
use Struct::Compare;
use Crypt::PasswdMD5 qw(unix_md5_crypt);
require Exporter;
#======================================================================
$VERSION = '0.7';
@ISA = qw(Exporter);
@EXPORT_OK = qw(check_sanity reset encpass passwd_file shadow_file
group_file backup debug warnings del del_user uid gid
gecos home shell passwd rename maxgid maxuid exists_user
exists_group user users users_from_shadow del_group
group groups groups_from_gshadow default_umask
unused_uid unused_gid);
#======================================================================
use constant TRUE => not undef;
use constant FALSE => undef;
#======================================================================
use constant DAY => 86400;
use constant PASSWD => '/etc/passwd';
use constant GROUP => '/etc/group';
use constant SHADOW => '/etc/shadow';
use constant GSHADOW => '/etc/gshadow';
use constant BACKUP => TRUE;
use constant DEBUG => FALSE;
use constant WARNINGS => FALSE;
use constant UMASK => 0022;
use constant PERM_PWD => 0644;
use constant PERM_GRP => 0644;
use constant PERM_SHD => 0400;
use constant PATH => qr/^[\w\+_\040\#\(\)\{\}\[\]\/\-\^,\.:;&%@\\~]+\$?$/;
#======================================================================
my $_CHECK = {
'rename' => sub { return if not defined $_[0] or $_[0] !~ /^[A-Z0-9_\.-]+$/io; TRUE },
'gid' => sub { return if not defined $_[0] or $_[0] !~ /^[0-9]+$/o; TRUE },
'uid' => sub { return if not defined $_[0] or $_[0] !~ /^[0-9]+$/o; TRUE },
'home' => sub { return if not defined $_[0] or $_[0] !~ PATH; TRUE },
'shell' => sub { return if not defined $_[0] or $_[0] !~ PATH; TRUE },
'gecos' => sub { return if not defined $_[0] or $_[0] !~ /^[^:]+$/o; TRUE },
'passwd' => sub { return if not defined $_[0]; TRUE},
};
#======================================================================
my $Self = __PACKAGE__->new();
#======================================================================
sub new {
my ($class, %params) = @_;
my $self = bless {
passwd => (defined $params{passwd} ? $params{passwd} : PASSWD ),
group => (defined $params{group} ? $params{group} : GROUP ),
shadow => (defined $params{shadow} ? $params{shadow} : SHADOW ),
gshadow => (defined $params{gshadow} ? $params{gshadow} : GSHADOW ),
backup => (defined $params{backup} ? $params{backup} : BACKUP ),
debug => (defined $params{debug} ? $params{debug} : DEBUG ),
warnings => (defined $params{warnings} ? $params{warnings} : WARNINGS ),
'umask' => (defined $params{'umask'} ? $params{'umask'} : UMASK ),
}, $class;
$self->check_sanity(TRUE) if (caller())[0] ne __PACKAGE__;
return $self;
}
#======================================================================
sub error {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->{ error } = shift if defined $_[0];
return $self->{ error } || q//;
}
#======================================================================
sub check_sanity {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my $quiet = shift;
for($self->shadow_file, $self->passwd_file, $self->group_file){
next if -f $_;
croak('File not found: ' . $_);
}
unless($quiet){
carp(q/Insecure permissions to group file!/) and sleep(1) if ((stat($self->group_file) )[2] & 07777) != PERM_GRP;
carp(q/Insecure permissions to passwd file!/) and sleep(1) if ((stat($self->passwd_file) )[2] & 07777) != PERM_PWD;
carp(q/Insecure permissions to shadow file!/) and sleep(1) if ((stat($self->shadow_file) )[2] & 07777) != PERM_SHD;
carp(q/Insecure permissions to gshadow file!/) and sleep(1) if ((stat($self->gshadow_file))[2] & 07777) != PERM_GRP;
}
if($( !~ /^0/o){
carp(q/Running as "/ . getlogin() . qq/", which has currently no permissions to write to system files. Some operations (i.e. modify) may fail!/) unless $quiet;
return;
}
my %filenames = ( shadow => $self->shadow_file, passwd => $self->passwd_file, group => $self->group_file, gshadow => $self->gshadow_file );
foreach my $file0 (keys %filenames){
foreach my $file1 (keys %filenames){
next if $file0 eq $file1;
croak(q/Files "/ . $file0 . q/" and "/ . $file1 . q/" cannot be the same!/) if $filenames{$file0} eq $filenames{$file1};
}
}
unless(compare([$self->users()], [$self->users_from_shadow()])){
carp(qq/\nYour ENVIRONMENT IS INSANE! Users in files "/.$self->passwd_file().q/" and "/.$self->shadow_file().qq/ are diffrent!!!\nI'll continue, but it is YOUR RISK! You'll probably go into BIG troubles!\n\n/);
warn "\a\n";
sleep 5;
}
return;
}
#======================================================================
sub reset {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->{passwd} = PASSWD;
$self->{group} = GROUP;
$self->{shadow} = SHADOW;
$self->{gshadow} = GSHADOW;
$self->{'umask'} = UMASK;
return TRUE;
}
#======================================================================
sub encpass {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return unless defined $val;
return unix_md5_crypt($val);
}
#======================================================================
sub _do_backup {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($sec,$min,$hour,$mday,$mon,$year) = localtime(time);
my $umask = umask $self->{'umask'};
$self->error(q//);
my $dir = File::Spec->catfile($self->passwd_file.'.bak', ($year+1900).'.'.($mon+1).'.'.$mday.'-'.$hour.'.'.$min.'.'.$sec);
mkpath $dir; chmod 0500, $dir;
my $cpasswd = File::Spec->catfile($dir, basename($self->passwd_file()) . q/.bz2/);
my $cgroup = File::Spec->catfile($dir, basename($self->group_file()) . q/.bz2/);
my $cshadow = File::Spec->catfile($dir, basename($self->shadow_file()) . q/.bz2/);
my $cgshadow = File::Spec->catfile($dir, basename($self->gshadow_file()) . q/.bz2/);
# passwd
my $compress = IO::Compress::Bzip2->new($cpasswd, AutoClose => 1, Append => 1, BlockSize100K => 9) or ($self->error($Bzip2Error) and umask $umask and return);
open(my $fh, '<', $self->passwd_file) or (umask $umask and return);
$compress->print($_) while <$fh>;
$compress->close;
chmod 0644, $cpasswd;
# group
$compress = IO::Compress::Bzip2->new($cgroup, AutoClose => 1, Append => 1, BlockSize100K => 9) or ($self->error($Bzip2Error) and umask $umask and return);
open($fh, '<', $self->group_file) or (umask $umask and return);
$compress->print($_) while <$fh>;
$compress->close;
chmod 0644, $cgroup;
# shadow
$compress = IO::Compress::Bzip2->new($cshadow, AutoClose => 1, Append => 1, BlockSize100K => 9) or ($self->error($Bzip2Error) and umask $umask and return);
open($fh, '<', $self->shadow_file) or (umask $umask and return);
$compress->print($_) while <$fh>;
$compress->close;
chmod 0400, $cshadow;
# gshadow
if(-f $self->gshadow_file){
$compress = IO::Compress::Bzip2->new($cgshadow, AutoClose => 1, Append => 1, BlockSize100K => 9) or ($self->error($Bzip2Error) and umask $umask and return);
open($fh, '<', $self->gshadow_file) or (umask $umask and return);
$compress->print($_) while <$fh>;
$compress->close;
chmod 0400, $cgshadow;
}
umask $umask;
return TRUE;
}
#======================================================================
sub passwd_file {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{passwd} unless defined $val;
$self->{passwd} = File::Spec->canonpath($val);
return $self->{passwd};
}
#======================================================================
sub group_file {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{group} unless defined $val;
$self->{group} = File::Spec->canonpath($val);
return $self->{group};
}
#======================================================================
sub shadow_file {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{shadow} unless defined $val;
$self->{shadow} = File::Spec->canonpath($val);
return $self->{shadow};
}
#======================================================================
sub gshadow_file {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{gshadow} unless defined $val;
$self->{gshadow} = File::Spec->canonpath($val);
return $self->{gshadow};
}
#======================================================================
sub backup {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{backup} unless defined $val;
$self->{backup} = $val ? TRUE : FALSE;
return $self->{backup};
}
#======================================================================
sub debug {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{debug} unless defined $val;
$self->{debug} = $val ? TRUE : FALSE;
return $self->{debug};
}
#======================================================================
sub warnings {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{warnings} unless defined $val;
$self->{warnings} = $val ? TRUE : FALSE;
return $self->{warnings};
}
#======================================================================
sub default_umask {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
my ($val) = @_;
return $self->{'umask'} unless defined $val;
$val = oct($val) if length($val) != 2;
$self->{'umask'} = $val;
return $self->{'umask'};
}
#======================================================================
*del_user = { };
*del_user = \&del;
sub del {
# This method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
unless(scalar @_){
my $error = $self->error(q|Method/function "del" cannot run without params!|);
carp($error) if $self->warnings();
return;
}
if( $self->backup() ){
$self->_do_backup() or return;
}
my $regexp = '^'.join('$|^',@_).'$';
$regexp = qr/$regexp/;
# here unused gids will be saved
my (@gids, @deleted, %_gids);
my $umask = umask $self->{'umask'};
# remove from passwd
my $tmp = $self->passwd_file.'.tmp';
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_PWD, $ch;
while(my $line = <$fh>){
my ($user, undef, undef, $gid) = split(/:/,$line, 5);
if($user =~ $regexp){
push @gids, $gid;
push @deleted, $user;
}else{
$_gids{$gid} = defined $_gids{$gid} ? $_gids{$gid} + 1 : 1;
print $ch $line;
}
}
close($fh);close($ch);
move($tmp, $self->passwd_file()) or ($self->error($!) and umask $umask and return);
# remove from shadow
$tmp = $self->shadow_file.'.tmp';
open($fh, '<', $self->shadow_file()) or ($self->error($!) and umask $umask and return);
open($ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_SHD, $ch;
while(my $line = <$fh>){
next if (split(/:/,$line,2))[0] =~ $regexp;
print $ch $line;
}
close($fh);close($ch);
move($tmp, $self->shadow_file()) or ($self->error($!) and umask $umask and return);
# remove from group
my $gids = '^'.join('$|^',@gids).'$';
$gids = qr/$gids/;
$tmp = $self->group_file.'.tmp';
open($fh, '<', $self->group_file()) or ($self->error($!) and umask $umask and return);
open($ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_GRP, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd, $gid, $users) = split(/:/,$line,4);
$users = join(q/,/, grep { !/$regexp/ } split(/\s*,\s*/, $users));
print $ch join(q/:/, $name, $passwd, $gid, $users),"\n";
}
close($fh);close($ch);
move($tmp, $self->group_file()) or ($self->error($!) and umask $umask and return);
# remove from gshadow
if(-f $self->gshadow_file){
$tmp = $self->gshadow_file.'.tmp';
open($fh, '<', $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
open($ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_SHD, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd, $gid, $users) = split(/:/,$line,4);
$users = join(q/,/, grep { !/$regexp/ } split(/\s*,\s*/, $users));
print $ch join(q/:/, $name, $passwd, $gid, $users),"\n";
}
close($fh);close($ch);
move($tmp, $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
}
umask $umask;
return @deleted if wantarray;
return scalar @deleted;
}
#======================================================================
sub _set {
# This method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
return if scalar @_ < 4;
my ($file, $user, $pos, $val, $count) = @_;
my @t = split(/::/,(caller(1))[3]);
croak(qq/\n"_set" cannot be called from outside of Passwd::Unix!/) if $t[-2] ne 'Unix';
unless($_CHECK->{$t[-1]}($val)){
my $error = $self->error(qq/Incorrect parameters for "$t[-1]! Leaving unchanged..."/);
carp($error) if $self->warnings();
return;
}
if( $self->backup() ){
$self->_do_backup() or return;
}
my $umask = umask $self->{'umask'};
my $mode = $file eq $self->passwd_file() ? PERM_PWD :
$file eq $self->group_file() ? PERM_GRP :
$file eq $self->shadow_file() ? PERM_SHD :
PERM_SHD ;
$count ||= 6;
my $tmp = $file.'.tmp';
open(my $fh, '<', $file) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod $mode, $ch;
my $ret;
while(<$fh>){
chomp;
my @a = split /:/;
if($a[0] eq $user){
$a[$pos] = $val;
$ret = TRUE;
for(scalar @a .. $count){ push @a, ''; }
print $ch join(q/:/, @a),"\n";
}else{
print $ch $_,"\n";
}
}
close($fh);close($ch);
move($tmp, $file) or ($self->error($!) and umask $umask and return);
umask $umask;
return $ret;
}
#======================================================================
sub _get {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
return if scalar @_ != 3;
my ($file, $user, $pos) = @_;
unless($_CHECK->{'rename'}($user)){
my $error = $self->error(qq/Incorrect user "$user"!/);
carp($error) if $self->warnings();
return;
}
open(my $fh, '<', $file) or ($self->error($!) and return);
while(<$fh>){
my @a = split /:/;
next if $a[0] ne $user;
chomp $a[$pos];
return $a[$pos];
}
return;
}
#======================================================================
sub uid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->passwd_file(), $_[0], 2);
}elsif(scalar @_ != 2){
my $error = $self->error( q/Incorrect parameters for "uid"!/ );
carp($error) if $self->warnings();
return;
}
return $self->_set($self->passwd_file(), $_[0], 2, $_[1]);
}
#======================================================================
sub gid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->passwd_file(), $_[0], 3);
}elsif(scalar @_ != 2){
my $error = $self->error( q/Incorrect parameters for "gid"!/ );
carp($error) if $self->warnings();
return;
}
return $self->_set($self->passwd_file(), $_[0], 3, $_[1]);
}
#======================================================================
sub gecos {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->passwd_file(), $_[0], 4);
}elsif(scalar @_ != 2){
my $error = $self->error(q/Incorrect parameters for "gecos"!/);
carp($error) if $self->warnings();
return;
}
return $self->_set($self->passwd_file(), $_[0], 4, $_[1]);
}
#======================================================================
sub home {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->passwd_file(), $_[0], 5);
}elsif(scalar @_ != 2){
my $error = $self->error(q/Incorrect parameters for "home"!/);
carp($error) if $self->warnings();
return;
}
return $self->_set($self->passwd_file(), $_[0], 5, $_[1]);
}
#======================================================================
sub shell {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->passwd_file(), $_[0], 6);
}elsif(scalar @_ != 2){
my $error = $self->error(q/Incorrect parameters for "shell"!/);
carp($error) if $self->warnings();
return;
}
return $self->_set($self->passwd_file(), $_[0], 6, $_[1]);
}
#======================================================================
sub passwd {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ == 1){
return $self->_get($self->shadow_file(), $_[0], 1);
}elsif(scalar @_ != 2){
my $error = $self->error(q/Incorrect parameters for "passwd"!/);
carp($error) if $self->warnings();
return;
}
return $self->_set($self->shadow_file(), $_[0], 1, $_[1], 8);
}
#======================================================================
sub rename {
# This method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
if(scalar @_ != 2){
my $error = $self->error(q/Incorrect parameters for "rename"!/);
carp($error) if $self->warnings();
return;
}
my ($user, $val) = @_;
unless($self->exists_user($user)){
my $error = $self->error(qq/User "$user" does not exists!/);
carp($error) if $self->warnings();
return;
}
my $gid = $self->gid($user);
unless(defined $gid){
my $error = $self->error(qq/Cannot retrieve GID of user "$user"! Leaving unchanged.../);
carp($error) if $self->warnings();
return;
}
if( $self->backup() ){
$self->_do_backup() or return;
}
my $umask = umask $self->{'umask'};
my $tmp = $self->group_file.'.tmp';
open(my $fh, '<', $self->group_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_GRP, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd, $gid, $users) = split(/:/,$line,4);
$users = join(q/,/, map { $_ eq $user ? $val : $_ } split(/\s*,\s*/, $users));
print $ch join(q/:/, $name, $passwd, $gid, $users),"\n";
}
close($fh);close($ch);
move($tmp, $self->group_file()) or ($self->error($!) and umask $umask and return);
if(-f $self->gshadow_file){
my $tmp = $self->gshadow_file.'.tmp';
open(my $fh, '<', $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_PWD, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd, $gid, $users) = split(/:/,$line,4);
$users = join(q/,/, map { $_ eq $user ? $val : $_ } split(/\s*,\s*/, $users));
print $ch join(q/:/, $name, $passwd, $gid, $users),"\n";
}
close($fh);close($ch);
move($tmp, $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
}
$self->_set($self->passwd_file(), $user, 0, $val);
umask $umask;
return $self->_set($self->shadow_file(), $user, 0, $val);
}
#======================================================================
sub maxgid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my $max = 0;
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
while(<$fh>){
my $tmp = (split(/:/,$_))[3];
$max = $tmp > $max ? $tmp : $max;
}
close($fh);
# we should check group file too...
open($fh, '<', $self->group_file()) or ($self->error($!) and return);
while(<$fh>){
my $tmp = (split(/:/,$_))[2];
$max = $tmp > $max ? $tmp : $max;
}
close($fh);
return $max;
}
#======================================================================
sub maxuid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my $max = 0;
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
while(<$fh>){
my $tmp = (split(/:/,$_))[2];
$max = $tmp > $max ? $tmp : $max;
}
close($fh);
return $max;
}
#======================================================================
sub unused_uid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my $min = shift || 0;
my $max = shift || ( 2 ** ( $Config{ intsize } * 8 ) );
# UIDs could be in random order, so this is only safe way...
my ( @seen, $last );
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
push @seen, (split(/:/,$_))[2] while <$fh>;
close($fh);
@seen = sort { $a <=> $b } @seen;
return $min if $seen[ -1 ] < $min;
for my $uid ( @seen, $max ){
next if $uid < $min;
if( not defined $last ){
return $min if $uid > $min;
$last = $uid;
#next;
}
return $last + 1 if $uid > $last + 1 and $last + 1 <= $max;
return if $uid > $max;
$last = $uid;
}
return;
}
#======================================================================
sub unused_gid {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my $min = shift || 0;
my $max = shift || ( 2 ** ( $Config{ intsize } * 8 ) );
# GIDs could be in random order, so this is only safe way...
my ( %seen, $last );
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
$seen{ (split(/:/,$_))[3] } = 1 while <$fh>;
close($fh);
# we should check group file too...
open($fh, '<', $self->group_file()) or ($self->error($!) and return);
$seen{ (split(/:/,$_))[2] } = 1 while <$fh>;
close($fh);
my @seen = sort { $a <=> $b } keys %seen;
return $min if $seen[ -1 ] < $min;
for my $gid ( @seen, $max ){
next if $gid < $min;
if( not defined $last ){
return $min if $gid > $min;
$last = $gid;
#next;
}
return $last + 1 if $gid > $last + 1 and $last + 1 <= $max;
return if $gid > $max;
$last = $gid;
}
return;
}
#======================================================================
sub _exists {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
return if scalar @_ != 3;
my ($file, $pos, $val) = @_;
open(my $fh, '<', $file) or ($self->error($!) and return);
while(<$fh>){
my @a = split /:/;
return TRUE if $a[$pos] eq $val;
}
return;
}
#======================================================================
sub exists_user {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my ($user) = @_;
unless($_CHECK->{rename}($user)){
my $error = $self->error(qq/Incorrect user "$user"!/);
carp($error) if $self->warnings();
return;
}
return $self->_exists($self->passwd_file(), 0, $user);
}
#======================================================================
sub exists_group {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my ($group) = @_;
unless($_CHECK->{rename}($group)){
my $error = $self->error(qq/Incorrect group "$group"!/);
carp($error) if $self->warnings();
return;
}
return $self->_exists($self->group_file(), 0, $group);
}
#======================================================================
sub user {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my (@user) = @_;
unless($_CHECK->{rename}($user[0])){
my $error = $self->error(qq/Incorrect user "$user[0]"!/);
carp($error) if $self->warnings();
return;
}
if(scalar @_ != 7){
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
while(<$fh>){
my @a = split /:/;
next if $a[0] ne $user[0];
chomp $a[-1];
splice @a, 0, 2;
return $self->passwd($user[0]), @a;
}
my $error = $self->error(qq/User "$user[0]" does not exists!/);
carp($error) if $self->warnings();
return;
}
# The rest of this method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my @tests = qw(rename passwd uid gid gecos home shell);
for(1..6){
unless($_CHECK->{$tests[$_]}($user[$_])){
my $error = $self->error(qq/Incorrect parameters for "$tests[$_]"!/);
carp($error) if $self->warnings();
return;
}
}
if( $self->backup() ){
$self->_do_backup() or return;
}
my $umask = umask $self->{'umask'};
my $passwd = splice @user,1, 1, 'x';
my $mod;
my $tmp = $self->passwd_file.'.tmp';
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_PWD, $ch;
while(<$fh>){
my @a = split /:/;
if($user[0] eq $a[0]){
$mod = TRUE;
print $ch join(q/:/, @user),"\n";
}else{ print $ch $_; }
}
close($fh);
print $ch join(q/:/, @user),"\n" unless $mod;
close($ch);
move($tmp, $self->passwd_file()) or ($self->error($!) and umask $umask and return);
# user already exists
if($mod){ $self->passwd($user[0], $passwd); }
else{
open(my $fh, '>>', $self->shadow_file()) or ($self->error($!) and umask $umask and return);
chmod PERM_SHD, $fh;
print $fh join(q/:/, $user[0], $passwd, int(time()/DAY), ('') x 5, "\n");
close($fh);
}
umask $umask;
return TRUE;
}
#======================================================================
sub users {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my @a;
open(my $fh, '<', $self->passwd_file()) or ($self->error($!) and return);
push @a, (split(/:/,$_))[0] while <$fh>;
close($fh);
return @a;
}
#======================================================================
sub users_from_shadow {
# This method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my @a;
open(my $fh, '<', $self->shadow_file()) or ($self->error($!) and return);
push @a, (split(/:/,$_))[0] while <$fh>;
close($fh);
return @a;
}
#======================================================================
sub del_group {
# This method will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my ($group) = @_;
unless($_CHECK->{rename}($group)){
my $error = $self->error(qq/Incorrect group "$group"!/);
carp($error) if $self->warnings();
return;
}
if( $self->backup() ){
$self->_do_backup() or return;
}
my $umask = umask $self->{'umask'};
my @dels;
my $tmp = $self->group_file.'.tmp';
open(my $fh, '<', $self->group_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_GRP, $ch;
while(my $line = <$fh>){
my ($name) = split(/:/,$line,2);
if($group eq $name){ push @dels, $name; }
else{ print $ch $line; }
}
close($fh);close($ch);
move($tmp, $self->group_file()) or ($self->error($!) and umask $umask and return);
if(-f $self->gshadow_file){
my $tmp = $self->gshadow_file.'.tmp';
open(my $fh, '<', $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_SHD, $ch;
while(my $line = <$fh>){
my ($name) = split(/:/,$line,2);
print $ch $line if $group ne $name;
}
close($fh);close($ch);
move($tmp, $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
}
umask $umask;
return @dels if wantarray;
return scalar @dels;
}
#======================================================================
sub group {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my ($group, $gid, $users) = @_;
unless($_CHECK->{rename}($group)){
my $error = $self->error(qq/Incorrect group "$group"!/);
carp($error) if $self->warnings();
return;
}
if(scalar @_ == 3){
# The rest of this "if" will fail, if user doesn't have permissions to files.
# Error will be in $self->error() and error();
# return if $( !~ /^0/o;
if( $self->backup() ){
$self->_do_backup() or return;
}
my $umask = umask $self->{'umask'};
unless($_CHECK->{gid}($gid)){
my $error = $self->error(qq/Incorrect GID "$gid"!/);
carp($error) if $self->warnings();
umask $umask;
return;
}
# 2009.03.30 - Thx to Jonas Genannt; will allow to add empty groups
# unless(ref $users and ref $users eq 'ARRAY'){ warn "AAA";
if(defined($users) && ref $users ne 'ARRAY' ){
my $error = $self->error(qq/Incorrect parameter "users"! It should be arrayref.../);
carp($error) if $self->warnings();
umask $umask;
return;
}
$users ||= [ ];
foreach(@$users){
unless($_CHECK->{rename}($_)){
my $error = $self->error(qq/Incorrect user "$_"!/);
carp($error) if $self->warnings();
umask $umask;
return;
}
}
my $mod;
my $tmp = $self->group_file.'.tmp';
open(my $fh, '<', $self->group_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_GRP, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd) = split(/:/,$line,3);
if($group eq $name){
print $ch join(q/:/, $group, $passwd, $gid, join(q/,/, @$users)),"\n";
$mod = TRUE;
} else{ print $ch $line,"\n"; }
}
print $ch join(q/:/, $group, 'x', $gid, join(q/,/, @$users)),"\n" unless $mod;
close($fh);close($ch);
move($tmp, $self->group_file()) or ($self->error($!) and umask $umask and return);
if(-f $self->gshadow_file){
my $mod;
my $tmp = $self->gshadow_file.'.tmp';
open(my $fh, '<', $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
open(my $ch, '>', $tmp) or ($self->error($!) and umask $umask and return);
chmod PERM_SHD, $ch;
while(my $line = <$fh>){
chomp $line;
my ($name, $passwd) = split(/:/,$line,3);
if($group eq $name){
print $ch join(q/:/, $group, $passwd, q//, join(q/,/, @$users)),"\n";
$mod = TRUE;
} else{ print $ch $line,"\n"; }
}
print $ch join(q/:/, $group, '!', q//, join(q/,/, @$users)),"\n" unless $mod;
close($fh);close($ch);
move($tmp, $self->gshadow_file()) or ($self->error($!) and umask $umask and return);
}
umask $umask;
}else{
my ($gid, @users);
open(my $fh, '<', $self->group_file()) or ($self->error($!) and return);
while(my $line = <$fh>){
chomp $line;
my ($name, undef, $id, $usrs) = split(/:/,$line,4);
next if $group ne $name;
$gid = $id;
$usrs =~ s/\s+$//o;
push @users, split(/\s*,\s*/o, $usrs) if $usrs;
last;
}
# if searched ground does not exist
return undef, [ ] unless defined $gid;
open($fh, '<', $self->passwd_file()) or ($self->error($!) and return);
while(my $line = <$fh>){
my ($login, undef, undef, $id) = split(/:/,$line,5);
next if $id != $gid;
push @users, $login;
}
@users = sort @users;
for(reverse 0..$#users){
last if $_ == 0;
splice @users, $_, 1 if $users[$_] eq $users[ $_ - 1 ];
}
return $gid, \@users;
}
return;
}
#======================================================================
sub groups {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my @a;
open(my $fh, '<', $self->group_file()) or ($self->error($!) and return);
push @a, (split(/:/,$_))[0] while <$fh>;
close($fh);
return @a;
}
#======================================================================
sub groups_from_gshadow {
my $self = scalar @_ && ref $_[0] eq __PACKAGE__ ? shift : $Self;
$self->error(q//);
my @a;
open(my $fh, '<', $self->gshadow_file()) or ($self->error($!) and return);
push @a, (split(/:/,$_))[0] while <$fh>;
close($fh);
return @a;
}
#======================================================================
1;
=encoding utf8
=head1 NAME
Passwd::Unix - access to standard unix files
=head1 SYNOPSIS
use Passwd::Unix;
my $pu = Passwd::Unix->new();
my $err = $pu->user("example", $pu->encpass("my_secret"), $pu->maxuid + 1, 10,
"My User", "/home/example", "/bin/bash" );
$pu->passwd("example", $pu->encpass("newsecret"));
foreach my $user ($pu->users) {
print "Username: $user\nFull Name: ", $pu->gecos($user), "\n\n";
}
my $uid = $pu->uid('example');
$pu->del("example");
# or
use Passwd::Unix qw(check_sanity reset encpass passwd_file shadow_file
group_file backup warnings del del_user uid gid gecos
home shell passwd rename maxgid maxuid exists_user
exists_group user users users_from_shadow del_group
group groups groups_from_gshadow);
my $err = user( "example", encpass("my_secret"), $pu->maxuid + 1, 10,
"My User", "/home/example", "/bin/bash" );
passwd("example",encpass("newsecret"));
foreach my $user (users()) {
print "Username: $user\nFull Name: ", gecos($user), "\n\n";
}
my $uid = uid('example');
del("example");
=head1 ABSTRACT
Passwd::Unix provides an abstract object-oriented and function interface to
standard Unix files, such as /etc/passwd, /etc/shadow, /etc/group. Additionally
this module provides environment to testing new software, without using
system critical files in /etc/dir.
=head1 DESCRIPTION
The Passwd::Unix module provides an abstract interface to /etc/passwd,
/etc/shadow and /etc/group format files. It is inspired by
Unix::PasswdFile module (that one does not handle /etc/shadow file,
what is necessary in modern systems like Sun Solaris 10 or Linux).
=head1 SUBROUTINES/METHODS
=over 4
=item B<new( [ param0 => 1, param1 => 0... ] )>
Constructor. Possible parameters are:
=over 8
=item B<passwd> - path to passwd file; default C</etc/passwd>
=item B<shadow> - path to shadow file; default C</etc/shadow>
=item B<group> - path to group file; default C</etc/group>
=item B<gshadow> - path to gshadow file if any; default C</etc/gshadow>
=item B<umask> - umask for creating files; default C<0022> (standard for UNIX and Linux systems)
=item B<backup> - boolean; if set to C<1>, backup will be made; default C<1>
=item B<warnings> - boolean; if set to C<1>, important warnings will be displayed; default C<0>
=back
=item B<check_sanity()>
This method check if environment is sane. I.e. if users in I<shadow> and
in I<passwd> are the same. This method is invoked in constructor.
=item B<del( USERNAME0, USERNAME1... )>
This method is an alias for C<del_user>. It's for transition only.
=item B<del_user( USERNAME0, USERNAME1... )>
This method will delete the list of users. It has no effect if the
supplied users do not exist.
=item B<del_group( GROUPNAME0, GROUPNAME1... )>
This method will delete the list of groups. It has no effect if the
supplied groups do not exist.
=item B<encpass( PASSWORD )>
This method will encrypt plain text into unix style MD5 password.
=item B<gecos( USERNAME [,GECOS] )>
Read or modify a user's GECOS string (typically their full name).
Returns the result of operation (C<1> or C<undef>) if GECOS was specified.
Otherwhise returns the GECOS.
=item B<gid( USERNAME [,GID] )>
Read or modify a user's GID. Returns the result of operation (TRUE or
FALSE) if GID was specified otherwhise returns the GID.
=item B<home( USERNAME [,HOMEDIR] )>
Read or modify a user's home directory. Returns the result of operation
(C<1> or C<undef>) if HOMEDIR was specified otherwhise returns the HOMEDIR.
=item B<maxuid( )>
This method returns the maximum UID in use by all users.
=item B<maxgid( )>
This method returns the maximum GID in use by all groups.
=item B<unused_uid( [MINUID] [,MAXUID] )>
This method returns the first unused UID in a given range. The default MINUID is 0. The default MAXUID is maximal integer value (computed from C<$Config{ intsize }> ).
=item B<unused_gid( [MINGID] [,MAXGID] )>
This method returns the first unused GID in a given range. The default MINGID is 0. The default MAXGID is maximal integer value (computed from C<$Config{ intsize }> ).
=item B<passwd( USERNAME [,PASSWD] )>
Read or modify a user's password. If you have a plaintext password,
use the encpass method to encrypt it before passing it to this method.
Returns the result of operation (C<1> or C<undef>) if PASSWD was specified.
Otherwhise returns the PASSWD.
=item B<rename( OLDNAME, NEWNAME )>
This method changes the username for a user. If NEWNAME corresponds to
an existing user, that user will be overwritten. It returns FALSE on
failure and TRUE on success.
=item B<shell( USERNAME [,SHELL] )>
Read or modify a user's shell. Returns the result of operation (TRUE
or FALSE) if SHELL was specified otherwhise returns the SHELL.
=item B<uid( USERNAME [,UID] )>
Read or modify a user's UID. Returns the result of operation (TRUE or
FALSE) if UID was specified otherwhise returns the UID.
=item B<user( USERNAME [,PASSWD, UID, GID, GECOS, HOMEDIR, SHELL] )>
This method can add, modify, or return information about a user.
Supplied with a single username parameter, it will return a six element
list consisting of (PASSWORD, UID, GID, GECOS, HOMEDIR, SHELL), or
undef if no such user exists. If you supply all seven parameters,
the named user will be created or modified if it already exists.
=item B<group( GROUPNAME [,GID, ARRAYREF] )>
This method can add, modify, or return information about a group.
Supplied with a single groupname parameter, it will return a two element
list consisting of (GID, ARRAYREF), where ARRAYREF is a ref to array
consisting names of users in this GROUP. It will return undef and ref to empty array (C<undef, [ ]>) if no such group
exists. If you supply all three parameters, the named group will be
created or modified if it already exists.
=item B<users()>
This method returns a list of all existing usernames.
=item B<users_from_shadow()>
This method returns a list of all existing usernames in a shadow file.
=item B<groups()>
This method returns a list of all existing groups.
=item B<groups_from_gshadow()>
This method returns a list of all existing groups in a gshadow file.
=item B<exists_user(USERNAME)>
This method checks if specified user exists. It returns TRUE or FALSE.
=item B<exists_group(GROUPNAME)>
This method checks if specified group exists. It returns TRUE or FALSE.
=item B<default_umask([UMASK])>
This method, if called with an argument, sets default umask for this module (not Your program!).
Otherwise returns the current UMASK. Probably You don't want to change this.
=item B<passwd_file([PATH])>
This method, if called with an argument, sets path to the I<passwd> file.
Otherwise returns the current PATH.
=item B<shadow_file([PATH])>
This method, if called with an argument, sets path to the I<shadow> file.
Otherwise returns the current PATH.
=item B<group_file([PATH])>
This method, if called with an argument, sets path to the I<group> file.
Otherwise returns the current PATH.
=item B<gshadow_file([PATH])>
This method, if called with an argument, sets path to the I<gshadow> file.
Otherwise returns the current PATH.
=item B<reset()>
This method sets paths to files I<passwd>, I<shadow>, I<group> to the
default values.
=item B<error()>
This method returns the last error (even if "warnings" is disabled).
=back
=head1 DEPENDENCIES
=over 4
=item Struct::Compare
=item Crypt::PasswdMD5
=back
=head1 INCOMPATIBILITIES
None known.
=head1 BUGS AND LIMITATIONS
None. I hope.
=head1 THANKS
=over 4
=item Thanks to Christian Kuelker for suggestions and reporting some bugs :-).
=item Thanks to Steven Haryanto for suggestions.
=item Thanks to Jonas Genannt for suggestions as well as supplying relevant patch!
=item BIG THANKS to Lopes Victor for reporting some bugs and his exact sugesstions :-)
=item Thanks to Foudil BRÉTEL for some remarks, suggestions as well as supplying relevant patch!
=item BIG thanks to Artem Russakovskii for reporting a bug.
=back
=head1 AUTHOR
Strzelecki Lukasz <lukasz@strzeleccy.eu>
=head1 LICENCE AND COPYRIGHT
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
|