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
|
#!/usr/bin/perl -w
# This code was developped by Jerome Tournier (jtournier@gmail.com) and
# contributors (their names can be found in the CONTRIBUTORS file).
# This was first contributed by IDEALX (http://www.opentrust.com/)
#
# 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.
use strict;
package smbldap_tools;
use Net::LDAP;
use Crypt::SmbHash;
use Unicode::MapUTF8 qw(to_utf8 from_utf8);
my $smbldap_conf;
if (-e "/etc/smbldap-tools/smbldap.conf") {
$smbldap_conf="/etc/smbldap-tools/smbldap.conf";
} else {
$smbldap_conf="/etc/opt/IDEALX/smbldap-tools/smbldap.conf";
}
my $smbldap_bind_conf;
if (-e "/etc/smbldap-tools/smbldap_bind.conf") {
$smbldap_bind_conf="/etc/smbldap-tools/smbldap_bind.conf";
} else {
$smbldap_bind_conf="/etc/opt/IDEALX/smbldap-tools/smbldap_bind.conf";
}
my $samba_conf;
if (-e "/etc/samba/smb.conf") {
$samba_conf="/etc/samba/smb.conf";
} else {
$samba_conf="/usr/local/samba/lib/smb.conf";
}
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
use Exporter;
$VERSION = 1.00;
@ISA = qw(Exporter);
use vars qw(%config $ldap);
@EXPORT = qw(
get_user_dn
get_group_dn
is_group_member
is_samba_user
is_unix_user
is_nonldap_unix_user
is_user_valid
does_sid_exist
get_dn_from_line
add_posix_machine
add_samba_machine
add_samba_machine_smbpasswd
group_add_user
add_grouplist_user
disable_user
delete_user
group_add
group_del
get_homedir
read_user
read_user_entry
read_group
read_group_entry
read_group_entry_gid
find_groups_of
parse_group
group_remove_member
group_get_members
do_ldapadd
do_ldapmodify
get_user_dn2
connect_ldap_master
connect_ldap_slave
group_type_by_name
subst_configvar
read_config
read_parameter
subst_user
split_arg_comma
list_union
list_minus
get_next_id
print_banner
getDomainName
getLocalSID
utf8Encode
utf8Decode
%config
);
sub print_banner
{
print STDERR "(c) Jerome Tournier - (jtournier\@gmail.com)- Licensed under the GPL\n"
unless $config{no_banner};
}
sub read_parameter
{
my $line=shift;
## check for a param = value
if ($_=~/=/) {
my ($param,$val);
if ($_=~/\s*.*?\s*=\s*".*"/) {
($param,$val) = /\s*(.*?)\s*=\s*"(.*)"/;
} elsif ($_=~/\s*.*?\s*=\s*'.*'/) {
($param,$val) = /\s*(.*?)\s*=\s*'(.*)'/;
} else {
($param,$val) = /\s*(.*?)\s*=\s*(.*)/;
}
return ($param,$val);
}
}
sub subst_configvar
{
my $value = shift;
my $vars = shift;
$value =~ s/\$\{([^}]+)\}/$vars->{$1} ? $vars->{$1} : $1/eg;
return $value;
}
sub read_conf
{
my %conf;
open (CONFIGFILE, "$smbldap_conf") || die "Unable to open $smbldap_conf for reading !\n";
while (<CONFIGFILE>) {
chomp($_);
## throw away comments
next if ( /^\s*#/ || /^\s*$/ || /^\s*\;/);
## check for a param = value
my ($parameter,$value)=read_parameter($_);
$value = &subst_configvar($value, \%conf);
$conf{$parameter}=$value;
}
close (CONFIGFILE);
if ($< == 0) {
open (CONFIGFILE, "$smbldap_bind_conf") || die "Unable to open $smbldap_bind_conf for reading !\n";
while (<CONFIGFILE>) {
chomp($_);
## throw away comments
next if ( /^\s*#/ || /^\s*$/ || /^\s*\;/);
## check for a param = value
my ($parameter,$value)=read_parameter($_);
$value = &subst_configvar($value, \%conf);
$conf{$parameter}=$value;
}
close (CONFIGFILE);
} else {
$conf{slaveDN}=$conf{slavePw}=$conf{masterDN}=$conf{masterPw}="";
}
# automatically find SID
if (not $conf{SID}) {
$conf{SID} = getLocalSID() ||
die "Unable to determine domain SID: please edit your smbldap.conf, or start your samba server for a few minutes to allow for SID generation to proceed\n";
}
return(%conf);
}
sub read_smbconf
{
my %conf;
my $smbconf="$samba_conf";
open (CONFIGFILE, "$smbconf") || die "Unable to open $smbconf for reading !\n";
my $global=0;
my $prevline="";
while (<CONFIGFILE>) {
chomp;
if (/^(.*)\\$/) {
$prevline.=$1;
next;
}
$_=$prevline.$_;
$prevline="";
if (/^\[global\]/) {
$global=1;
}
if ($global == 1) {
if (/^\[/ and !/\[global\]/) {
$global=0;
} else {
## throw away comments
#next if ( ! /workgroup/i );
next if ( /^\s*#/ || /^\s*$/ || /^\s*\;/ || /\[/);
## check for a param = value
my ($parameter,$value)=read_parameter($_);
$value = &subst_configvar($value, \%conf);
$conf{$parameter}=$value;
}
}
}
close (CONFIGFILE);
return(%conf);
}
my %smbconf=read_smbconf();
sub getLocalSID {
my $string = `LANG= PATH=/opt/IDEALX/bin:/usr/local/bin:/usr/bin:/bin net getlocalsid 2>/dev/null`;
my ($domain,$sid)=($string =~ m/^SID for domain (\S+) is: (\S+)$/ );
return $sid;
}
# let's read the configurations file...
%config=read_conf();
sub get_parameter {
# this function return the value for a parameter. The name of the parameter can be either this
# defined in smb.conf or smbldap.conf
my $parameter_smb=shift;
my $parameter_smbldap=shift;
if (defined $config{$parameter_smbldap} and $config{$parameter_smbldap} ne "") {
return $config{$parameter_smbldap};
} elsif (defined $smbconf{$parameter_smb} and $smbconf{$parameter_smb} ne "") {
return $smbconf{$parameter_smb};
} else {
#print "could not find parameter's value (parameter given: $parameter_smbldap or $parameter_smb) !!\n";
undef $smbconf{$parameter_smb};
}
}
$config{sambaDomain}=get_parameter("workgroup","sambaDomain");
$config{suffix}=get_parameter("ldap suffix","suffix");
$config{usersdn}=get_parameter("ldap user suffix","usersdn");
if ($config{usersdn} !~ m/,/ ) {$config{usersdn}=$config{usersdn}.",".$config{suffix};}
$config{groupsdn}=get_parameter("ldap group suffix","groupsdn");
if ($config{groupsdn} !~ m/,/ ) {$config{groupsdn}=$config{groupsdn}.",".$config{suffix};}
$config{computersdn}=get_parameter("ldap machine suffix","computersdn");
if ($config{computersdn} !~ m/,/ ) {$config{computersdn}=$config{computersdn}.",".$config{suffix};}
$config{idmapdn}=get_parameter("ldap idmap suffix","idmapdn");
if (defined $config{idmapdn}) {
if ($config{idmapdn} !~ m/,/ ) {$config{idmapdn}=$config{idmapdn}.",".$config{suffix};}
}
# next uidNumber and gidNumber available are stored in sambaDomainName object
if (!defined $config{sambaUnixIdPooldn}) {
$config{sambaUnixIdPooldn}="sambaDomainName=$config{sambaDomain},$config{suffix}";
}
if (!defined $config{masterLDAP}) {
$config{masterLDAP}="127.0.0.1";
}
if (!defined $config{masterPort}) {
$config{masterPort}="389";
}
if (!defined $config{slaveLDAP}) {
$config{slaveLDAP}="127.0.0.1";
}
if (!defined $config{slavePort}) {
$config{slavePort}="389";
}
if (!defined $config{ldapTLS}) {
$config{ldapTLS}="0";
}
sub connect_ldap_master
{
my $mesg;
# bind to a directory with dn and password
my $ldap_master = Net::LDAP->new(
"$config{masterLDAP}",
port => "$config{masterPort}",
version => 3,
timeout => 60,
# debug => 0xffff,
)
or die "erreur LDAP: Can't contact master ldap server for writing ($@)";
if ($config{ldapTLS} == 1) {
$mesg = $ldap_master->start_tls(
verify => "$config{verify}",
clientcert => "$config{clientcert}",
clientkey => "$config{clientkey}",
cafile => "$config{cafile}"
);
if ($mesg->code) {
warn("Could not start_tls: " . $mesg->error);
}
}
$mesg = $ldap_master->bind ( "$config{masterDN}",
password => "$config{masterPw}"
);
$ldap=$ldap_master;
return($ldap_master);
}
sub connect_ldap_slave
{
# bind to a directory with dn and password
my $conf_cert;
my $ldap_slave = Net::LDAP->new(
"$config{slaveLDAP}",
port => "$config{slavePort}",
version => 3,
timeout => 60,
# debug => 0xffff,
)
or warn "erreur LDAP: Can't contact slave ldap server ($@)\n=>trying to contact the master server\n";
if (!$ldap_slave) {
# connection to the slave failed: trying to contact the master ...
$ldap_slave = Net::LDAP->new(
"$config{masterLDAP}",
port => "$config{masterPort}",
version => 3,
timeout => 60,
# debug => 0xffff,
)
or die "erreur LDAP: Can't contact master ldap server ($@)\n";
$config{slaveDN}=$config{masterDN};
$config{slavePw}=$config{masterPw};
}
if ($ldap_slave) {
if ($config{ldapTLS} == 1) {
$ldap_slave->start_tls(
verify => "$config{verify}",
clientcert => "$config{clientcert}",
clientkey => "$config{clientkey}",
cafile => "$config{cafile}"
);
}
$ldap_slave->bind ( "$config{slaveDN}",
password => "$config{slavePw}"
);
$ldap=$ldap_slave;
return($ldap_slave);
}
}
sub get_user_dn
{
my $user = shift;
my $dn='';
my $mesg = $ldap->search ( base => $config{suffix},
scope => $config{scope},
filter => "(&(objectclass=posixAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
foreach my $entry ($mesg->all_entries) {
$dn= $entry->dn;
}
chomp($dn);
if ($dn eq '') {
return undef;
}
$dn="dn: ".$dn;
return $dn;
}
sub get_user_dn2
{
my $user = shift;
my $dn='';
my $mesg = $ldap->search ( base => $config{suffix},
scope => $config{scope},
filter => "(&(objectclass=posixAccount)(uid=$user))"
);
$mesg->code && warn "failed to perform search; ", $mesg->error;
foreach my $entry ($mesg->all_entries) {
$dn= $entry->dn;
}
chomp($dn);
if ($dn eq '') {
return (1,undef);
}
$dn="dn: ".$dn;
return (1,$dn);
}
sub get_group_dn
{
my $group = shift;
my $dn='';
my $filter;
if ($group =~ /^\d+$/) {
$filter="(&(objectclass=posixGroup)(|(cn=$group)(gidNumber=$group)))";
} else {
$filter="(&(objectclass=posixGroup)(cn=$group))";
}
my $mesg = $ldap->search ( base => $config{groupsdn},
scope => $config{scope},
filter => $filter
);
$mesg->code && die $mesg->error;
foreach my $entry ($mesg->all_entries) {
$dn= $entry->dn;
}
chomp($dn);
if ($dn eq '') {
return undef;
}
$dn="dn: ".$dn;
return $dn;
}
# return (success, dn)
# bool = is_samba_user($username)
sub is_samba_user
{
my $user = shift;
my $mesg = $ldap->search ( base => $config{suffix},
scope => $config{scope},
filter => "(&(objectClass=sambaSamAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
return ($mesg->count ne 0);
}
sub is_unix_user
{
my $user = shift;
my $mesg = $ldap->search ( base => $config{suffix},
scope => $config{scope},
filter => "(&(objectClass=posixAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
return ($mesg->count ne 0);
}
sub is_nonldap_unix_user
{
my $user = shift;
my $uid = getpwnam($user);
if ($uid) {
return 1;
} else {
return 0;
}
}
sub is_group_member
{
my $dn_group = shift;
my $user = shift;
my $mesg = $ldap->search ( base => $dn_group,
scope => 'base',
filter => "(&(memberUid=$user))"
);
$mesg->code && die $mesg->error;
return ($mesg->count ne 0);
}
# all entries = does_sid_exist($sid,$config{scope})
sub does_sid_exist
{
my $sid = shift;
my $dn_group=shift;
my $mesg = $ldap->search ( base => $dn_group,
scope => $config{scope},
filter => "(sambaSID=$sid)"
#filter => "(&(objectClass=sambaSAMAccount|objectClass=sambaGroupMapping)(sambaSID=$sid))"
);
$mesg->code && die $mesg->error;
return ($mesg);
}
# try to bind with user dn and password to validate current password
sub is_user_valid
{
my ($user, $dn, $pass) = @_;
my $userLdap = Net::LDAP->new(
"$config{slaveLDAP}",
port => "$config{slavePort}",
version => 3,
timeout => 60
)
or warn "erreur LDAP: Can't contact slave ldap server ($@)\n=>trying to contact the master server\n";
if (!$userLdap) {
# connection to the slave failed: trying to contact the master ...
$userLdap = Net::LDAP->new(
"$config{masterLDAP}",
port => "$config{masterPort}",
version => 3,
timeout => 60
)
or die "erreur LDAP: Can't contact master ldap server ($@)\n";
}
if ($userLdap) {
if ($config{ldapTLS} == 1) {
$userLdap->start_tls(
verify => "$config{verify}",
clientcert => "$config{clientcert}",
clientkey => "$config{clientkey}",
cafile => "$config{cafile}"
);
}
my $mesg= $userLdap->bind (dn => $dn, password => $pass );
if ($mesg->code eq 0) {
$userLdap->unbind;
return 1;
} else {
if ($userLdap->bind()) {
$userLdap->unbind;
return 0;
} else {
print ("The LDAP directory is not available.\n Check the server, cables ...");
$userLdap->unbind;
return 0;
}
die "Problem : contact your administrator";
}
}
}
# dn = get_dn_from_line ($dn_line)
# helper to get "a=b,c=d" from "dn: a=b,c=d"
sub get_dn_from_line
{
my $dn = shift;
$dn =~ s/^dn: //;
return $dn;
}
# success = add_posix_machine($user, $uid, $gid)
sub add_posix_machine
{
my ($user,$uid,$gid,$wait) = @_;
if (!defined $wait) {
$wait=0;
}
# bind to a directory with dn and password
my $add = $ldap->add ( "uid=$user,$config{computersdn}",
attr => [
#'objectclass' => ['top', 'person', 'organizationalPerson', 'inetOrgPerson', 'posixAccount'],
'objectclass' => ['top', 'account', 'posixAccount'],
'cn' => "$user",
#'sn' => "$user",
'uid' => "$user",
'uidNumber' => "$uid",
'gidNumber' => "$gid",
'homeDirectory' => '/dev/null',
'loginShell' => '/bin/false',
'description' => 'Computer',
'gecos' => 'Computer',
]
);
$add->code && warn "failed to add entry: ", $add->error ;
sleep($wait);
return 1;
}
# success = add_samba_machine_smbpasswd($computername)
sub add_samba_machine_smbpasswd
{
my $user = shift;
system "smbpasswd -a -m $user";
return 1;
}
sub add_samba_machine
{
my ($user, $uid) = @_;
my $sambaSID = 2 * $uid + 1000;
my $name = $user;
$name =~ s/.$//s;
my ($lmpassword,$ntpassword) = ntlmgen $name;
my $modify = $ldap->modify ( "uid=$user,$config{computersdn}",
changes => [
#replace => [objectClass => ['inetOrgPerson', 'posixAccount', 'sambaSAMAccount']],
replace => [objectClass => ['posixAccount', 'sambaSAMAccount']],
add => [sambaPwdLastSet => '0'],
add => [sambaLogonTime => '0'],
add => [sambaLogoffTime => '2147483647'],
add => [sambaKickoffTime => '2147483647'],
add => [sambaPwdCanChange => '0'],
add => [sambaPwdMustChange => '0'],
add => [sambaAcctFlags => '[W ]'],
add => [sambaLMPassword => "$lmpassword"],
add => [sambaNTPassword => "$ntpassword"],
add => [sambaSID => "$config{SID}-$sambaSID"],
add => [sambaPrimaryGroupSID => "$config{SID}-0"]
]
);
$modify->code && die "failed to add entry: ", $modify->error ;
return 1;
}
sub group_add_user
{
my ($group, $userid) = @_;
my $members='';
my $dn_line = get_group_dn($group);
if (!defined(get_group_dn($group))) {
print "$0: group \"$group\" doesn't exist\n";
exit (6);
}
if (!defined($dn_line)) {
return 1;
}
my $dn = get_dn_from_line("$dn_line");
# on look if the user is already present in the group
my $is_member=is_group_member($dn,$userid);
if ($is_member == 1) {
print "User \"$userid\" already member of the group \"$group\".\n";
} else {
# bind to a directory with dn and password
# It does not matter if the user already exist, Net::LDAP will add the user
# if he does not exist, and ignore him if his already in the directory.
my $modify = $ldap->modify ( "$dn",
changes => [
add => [memberUid => $userid]
]
);
$modify->code && die "failed to modify entry: ", $modify->error ;
}
}
sub group_del
{
my $group_dn=shift;
# bind to a directory with dn and password
my $modify = $ldap->delete ($group_dn);
$modify->code && die "failed to delete group : ", $modify->error ;
}
sub add_grouplist_user
{
my ($grouplist, $user) = @_;
my @array = split(/,/, $grouplist);
foreach my $group (@array) {
group_add_user($group, $user);
}
}
sub disable_user
{
my $user = shift;
my $dn_line;
my $dn = get_dn_from_line($dn_line);
if (!defined($dn_line = get_user_dn($user))) {
print "$0: user $user doesn't exist\n";
exit (10);
}
my $modify = $ldap->modify ( "$dn",
changes => [
replace => [userPassword => '{crypt}!x']
]
);
$modify->code && die "failed to modify entry: ", $modify->error ;
if (is_samba_user($user)) {
my $modify = $ldap->modify ( "$dn",
changes => [
replace => [sambaAcctFlags => '[D ]']
]
);
$modify->code && die "failed to modify entry: ", $modify->error ;
}
}
# delete_user($user)
sub delete_user
{
my $user = shift;
my $dn_line;
if (!defined($dn_line = get_user_dn($user))) {
print "$0: user $user doesn't exist\n";
exit (10);
}
my $dn = get_dn_from_line($dn_line);
my $modify = $ldap->delete($dn);
$modify->code && die "failed to delete entry: ", $modify->error ;
}
# $gid = group_add($groupname, $group_gid, $force_using_existing_gid)
sub group_add
{
my ($gname, $gid, $force) = @_;
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";
}
if (!defined($gid)) {
#while (defined(getgrgid($config{GID_START}))) {
# $config{GID_START}++;
#}
#$gid = $config{GID_START};
$gid=get_next_id($config{groupsdn},"gidNumber");
} else {
if (!defined($force)) {
if (defined(getgrgid($gid))) {
return undef;
}
}
}
if ($nscd_status == 0) {
system "/etc/init.d/nscd start > /dev/null 2>&1";
}
my $modify = $ldap->add ( "cn=$gname,$config{groupsdn}",
attrs => [
objectClass => [ 'top', 'posixGroup' ],
cn => "$gname",
gidNumber => "$gid"
]
);
$modify->code && die "failed to add entry: ", $modify->error ;
return $gid;
}
# $homedir = get_homedir ($user)
sub get_homedir
{
my $user = shift;
my $homeDir='';
my $entry;
my $mesg = $ldap->search (
base =>$config{usersdn},
scope => $config{scope},
filter => "(&(objectclass=posixAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
my $nb=$mesg->count;
if ($nb > 1) {
print "Aborting: there are $nb existing user named $user\n";
foreach $entry ($mesg->all_entries) {
my $dn=$entry->dn;
print " $dn\n";
}
exit (4);
} else {
$entry = $mesg->shift_entry();
$homeDir= $entry->get_value("homeDirectory");
}
chomp $homeDir;
if ($homeDir eq '') {
return undef;
}
return $homeDir;
}
# search for an user
sub read_user
{
my $user = shift;
my $lines ='';
my $mesg = $ldap->search ( # perform a search
base => $config{suffix},
scope => $config{scope},
filter => "(&(objectclass=posixAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
foreach my $entry ($mesg->all_entries) {
$lines.= "dn: " . $entry->dn."\n";
foreach my $attr ($entry->attributes) {
{
$lines.= $attr.": ".join(',', $entry->get_value($attr))."\n";
}
}
}
chomp $lines;
if ($lines eq '') {
return undef;
}
return $lines;
}
# search for a user
# return the attributes in an array
sub read_user_entry
{
my $user = shift;
my $mesg = $ldap->search ( # perform a search
base => $config{suffix},
scope => $config{scope},
filter => "(&(objectclass=posixAccount)(uid=$user))"
);
$mesg->code && die $mesg->error;
my $entry = $mesg->entry();
return $entry;
}
# search for a group
sub read_group
{
my $user = shift;
my $lines ='';
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(cn=$user))"
);
$mesg->code && die $mesg->error;
foreach my $entry ($mesg->all_entries) {
$lines.= "dn: " . $entry->dn."\n";
foreach my $attr ($entry->attributes) {
{
$lines.= $attr.": ".join(',', $entry->get_value($attr))."\n";
}
}
}
chomp $lines;
if ($lines eq '') {
return undef;
}
return $lines;
}
# find groups of a given user
##### MODIFIE ########
sub find_groups_of {
my $user = shift;
my @groups = ();
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(memberuid=$user))"
);
$mesg->code && die $mesg->error;
my $entry;
while ($entry = $mesg->shift_entry()) {
push(@groups, scalar($entry->get_value('cn')));
}
return (@groups);
}
sub read_group_entry {
my $group = shift;
my $entry;
my %res;
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(cn=$group))"
);
$mesg->code && die $mesg->error;
my $nb=$mesg->count;
if ($nb > 1) {
print "Error: $nb groups exist \"cn=$group\"\n";
foreach $entry ($mesg->all_entries) {
my $dn=$entry->dn; print " $dn\n";
}
exit 11;
} else {
$entry = $mesg->shift_entry();
}
return $entry;
}
sub read_group_entry_gid {
my $group = shift;
my %res;
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(gidNumber=$group))"
);
$mesg->code && die $mesg->error;
my $entry = $mesg->shift_entry();
return $entry;
}
# return the gidnumber for a group given as name or gid
# -1 : bad group name
# -2 : bad gidnumber
sub parse_group
{
my $userGidNumber = shift;
if ($userGidNumber =~ /[^\d]/ ) {
# make a search based on the group name
my $gname = $userGidNumber;
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(cn=$gname))"
);
$mesg->code && die $mesg->error;
my $entry = $mesg->shift_entry();
my $gidnum;
if ($entry) {
$gidnum=$entry->get_value('gidNumber');
#my $gidnum = getgrnam($gname);
} else {
$gidnum="";
}
if ($gidnum !~ /\d+/) {
return -1;
} else {
$userGidNumber = $gidnum;
}
} else {
# make a search based on the group gidNumber
# we check that the gidNumber is attributed to a real group
my $mesg = $ldap->search ( # perform a search
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixGroup)(gidNumber=$userGidNumber))"
);
$mesg->code && die $mesg->error;
my $entry = $mesg->shift_entry();
if (!$entry) {
return -2;
}
}
return $userGidNumber;
}
# remove $user from $group
sub group_remove_member
{
my ($group, $user) = @_;
my $members='';
my $grp_line = get_group_dn($group);
if (!defined($grp_line)) {
return 0;
}
my $dn = get_dn_from_line($grp_line);
# we test if the user exist in the group
my $is_member=is_group_member($dn,$user);
if ($is_member == 1) {
# delete only the user from the group
my $modify = $ldap->modify ( "$dn",
changes => [
delete => [memberUid => ["$user"]]
]
);
$modify->code && die "failed to delete entry: ", $modify->error ;
}
return 1;
}
sub group_get_members
{
my ($group) = @_;
my $members;
my @resultat;
my $grp_line = get_group_dn($group);
if (!defined($grp_line)) {
return 0;
}
my $mesg = $ldap->search (
base => $config{groupsdn},
scope => $config{scope},
filter => "(&(objectclass=posixgroup)(cn=$group))"
);
$mesg->code && die $mesg->error;
foreach my $entry ($mesg->all_entries) {
foreach my $attr ($entry->attributes) {
if ($attr=~/\bmemberUid\b/) {
foreach my $ent ($entry->get_value($attr)) {
push (@resultat,$ent);
}
}
}
}
return @resultat;
}
sub do_ldapmodify
{
my $ldif = shift;
my $FILE = "|$config{ldapmodify} -r >/dev/null";
open (FILE, $FILE) || die "$!\n";
print FILE <<EOF;
$ldif
EOF
;
close FILE;
my $rc = $?;
return $rc;
}
sub group_type_by_name {
my $type_name = shift;
my %groupmap = (
'domain' => 2,
'local' => 4,
'builtin' => 5
);
return $groupmap{$type_name};
}
sub subst_user
{
my ($str, $username) = @_;
$str =~ s/%U/$username/ if ($str);
return($str);
}
# all given mails are stored in a table (remove the comma separated)
sub split_arg_comma {
my $arg = shift;
my @args;
if (defined($arg)) {
if ($arg eq '-') {
@args = ( );
} else {
@args = split(/\s*,\s*/, $arg);
}
}
return (@args);
}
sub list_union {
my ($list1, $list2) = @_;
my @res = @$list1;
foreach my $e (@$list2) {
if (! grep($_ eq $e, @$list1)) {
push(@res, $e);
}
}
return @res;
}
sub list_minus {
my ($list1, $list2) = @_;
my @res = ();
foreach my $e (@$list1) {
if (! grep( $_ eq $e, @$list2 )) {
push(@res, $e);
}
}
return @res;
}
sub get_next_id($$) {
my $ldap_base_dn = shift;
my $attribute = shift;
my $tries = 0;
my $found=0;
my $next_uid_mesg;
my $nextuid;
if ($ldap_base_dn =~ m/$config{usersdn}/i) {
# when adding a new user, we'll check if the uidNumber available is not
# already used for a computer's account
$ldap_base_dn=$config{suffix}
}
do {
$next_uid_mesg = $ldap->search(
base => $config{sambaUnixIdPooldn},
filter => "(objectClass=sambaUnixIdPool)",
scope => "base"
);
$next_uid_mesg->code && die "Error looking for next uid in ".$config{sambaUnixIdPooldn}.":".$next_uid_mesg->error;
if ($next_uid_mesg->count != 1) {
die "Could not find base dn, to get next $attribute";
}
my $entry = $next_uid_mesg->entry(0);
$nextuid = $entry->get_value($attribute);
my $modify=$ldap->modify( "$config{sambaUnixIdPooldn}",
changes => [
replace => [ $attribute => $nextuid + 1 ]
]
);
$modify->code && die "Error: ", $modify->error;
# let's check if the id found is really free (in ou=Groups or ou=Users)...
my $check_uid_mesg = $ldap->search(
base => $ldap_base_dn,
filter => "($attribute=$nextuid)",
);
$check_uid_mesg->code && die "Cannot confirm $attribute $nextuid is free";
if ($check_uid_mesg->count == 0) {
# now, look if the id or gid is not already used in /etc/passwd or /etc/group
if (!getpwuid($nextuid)) {
$found=1;
return $nextuid;
}
}
$tries++;
print "Cannot confirm $attribute $nextuid is free: checking for the next one\n"
} while ($found != 1);
die "Could not allocate $attribute!";
}
sub utf8Encode {
my $arg = shift;
return to_utf8(
-string=> $arg,
-charset => 'ISO-8859-1',
);
}
sub utf8Decode {
my $arg = shift;
return from_utf8(
-string=> $arg,
-charset => 'ISO-8859-1',
);
}
1;
|