#!/usr/local/bin/perl # Check the user's LDAP settings require './ldap-client-lib.pl'; require './switch-lib.pl'; &ui_print_unbuffered_header(undef, $text{'check_title'}, ""); # Get the user base print $text{'check_base'},"
\n"; $conf = &get_config(); $user_base = &find_svalue("nss_base_passwd", $conf) || &find_svalue("base", $conf); if (!$user_base) { &print_problem(&text('check_ebase')); goto END; } else { print &text('check_based', "$user_base"),"

\n"; } # Attempt to connect to LDAP server print $text{'check_connect'},"
\n"; $ldap = &ldap_connect(1); if (!ref($ldap)) { &print_problem(&text('check_econnect', $ldap)); goto END; } else { local $ldaphost; eval { $ldaphost = $ldap->host(); }; $ldaphost ||= &get_ldap_host(); print &text('check_connected', $ldaphost),"

\n"; } # Work out the scope $scope = &find_svalue("scope", $conf); if ($user_base =~ s/\?([^\?]*)(\?([^\?]*))?$//) { $scope = $1; } $scope ||= "one"; # Look for some users print $text{'check_search'},"
\n"; $rv = $ldap->search(base => $user_base, filter => '(objectClass=posixAccount)', scope => $scope); if ($rv->code) { # Search failed! &print_problem(&text('check_esearch', $rv->error)); goto END; } if (!$rv->count) { &print_problem(&text('check_eusers', "$user_base")); goto END; } else { print &text('check_found', $rv->count),"

\n"; } # Check NSS configuration for users print $text{'check_nss'},"
\n"; $nss = &get_nsswitch_config(); ($passwd) = grep { $_->{'name'} eq 'passwd' } @$nss; ($ldapsrc) = grep { $_->{'src'} eq 'ldap' } @{$passwd->{'srcs'}}; if (!$ldapsrc) { &print_problem($text{'check_enss'}); goto END; } else { print $text{'check_nssok'},"

\n"; } # Make sure one of the users is a valid Unix user $first = $rv->entry(0); print &text('check_match', "".$first->get_value("uid").""),"
\n"; $uid = getpwnam($first->get_value("uid")); if (!$uid) { # Sometimes this fails due to nsswitch.conf caching .. so try forking # a separate command $uid = &backquote_command( "id -a ".$first->get_value("uid")." 2>/dev/null"); } if (!$uid) { &print_problem($text{'check_ematch'}); goto END; } else { print $text{'check_matched'},"

\n"; print "$text{'check_done'}

\n"; } END: &ui_print_footer("", $text{'index_return'}); sub print_problem { print "",@_,"

\n"; }