'admin/settings/ldapauth', 'title' => t('LDAP Integration'), 'callback' => 'ldapauth_admin_list', 'access' => user_access('administer ldap modules'), 'description' => t('Configure LDAP settings'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/list', 'title' => t('List'), 'callback' => 'ldapauth_admin_list', 'access' => user_access('administer ldap modules'), 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/ldapauth/add', 'title' => t('Configure LDAP Server'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_form'), 'type' => MENU_LOCAL_TASK, 'weight' => 1, 'access' => user_access('administer ldap modules'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/options', 'title' => t('System Wide Options'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_options'), 'type' => MENU_LOCAL_TASK, 'weight' => 2, 'access' => user_access('administer ldap modules'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/edit', 'title' => t('Configure LDAP Server'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_form'), 'type' => MENU_CALLBACK, 'access' => user_access('administer ldap modules'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/delete', 'title' => t('Delete LDAP Server'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_delete'), 'type' => MENU_CALLBACK, 'access' => user_access('administer ldap modules'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/activate', 'title' => t('Activate LDAP Source'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_activate'), 'type' => MENU_CALLBACK, 'access' => user_access('administer ldap modules'), ); $items[] = array( 'path' => 'admin/settings/ldapauth/deactivate', 'title' => t('De-Activate LDAP Source'), 'callback' => 'drupal_get_form', 'callback arguments' => array('ldapauth_admin_deactivate'), 'type' => MENU_CALLBACK, 'access' => user_access('administer ldap modules'), ); } return $items; } /** * Implements hook_perm() **/ function ldapauth_perm() { return array('administer ldap modules'); } /** * Implements hook_cron() **/ function ldapauth_cron() { cache_clear_all(NULL, 'cache_filter'); } function ldapauth_admin_list() { $sql = "SELECT sid, name, status FROM {ldapauth} ORDER BY sid"; $result = db_query($sql); $rows = array(); while ($row = db_fetch_object($result)) { if ($row->status) { $link_text = "de-activate"; $link_comp = "deactivate"; } else { $link_text = "activate"; $link_comp = "activate"; } $rows[] = array( $row->name, l(t('edit'), 'admin/settings/ldapauth/edit/'.$row->name), l(t('!link_text', array('!link_text' => $link_text)), 'admin/settings/ldapauth/'.$link_comp.'/'.$row->name), l(t('delete'), 'admin/settings/ldapauth/delete/'.$row->name) ); } $header = array( t('LDAP Config'), array( 'data' => t('Operations'), 'colspan' => '3' ) ); return theme('table', $header, $rows); } function ldapauth_admin_deactivate($ldap_name) { $ldap_name = arg(4); // de-activate the config db_query("UPDATE {ldapauth} SET status = '%s'WHERE name = '%s'", "", $ldap_name); drupal_set_message(t('LDAP Configuration %config has been de-activated.', array('%config' => $ldap_name))); watchdog('ldap', t('ldapauth: ldap config %config de-activated.', array('%config' => $ldap_name))); drupal_goto('admin/settings/ldapauth'); } function ldapauth_admin_activate() { $ldap_name = arg(4); // activate the config db_query("UPDATE {ldapauth} SET status = '%d'WHERE name = '%s'", "1", $ldap_name); drupal_set_message(t('LDAP Configuration %config has been activated.', array('%config' => $ldap_name))); watchdog('ldap', t('ldapauth: ldap config %config activated.', array('%config' => $ldap_name))); drupal_goto('admin/settings/ldapauth'); } function ldapauth_admin_options() { $options_login_process = array( LDAP_FIRST_DRUPAL => t('Drupal\'s DB first, then LDAP directory'), //LDAP_OR_DRUPAL => t('If LDAP user, LDAP only; otherwise Drupal DB'), LDAP_FIRST_LDAP => t('LDAP directory only') ); $form['system-options'] = array( '#type' => 'fieldset', '#title' => t('Authentication mode'), '#description' => t('
NOTE: These settings have no effect on Drupal user with uid 1. The admin account never uses LDAP.
'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['system-options']['ldap_login_process'] = array( '#type' => 'radios', '#title' => t('Choose authentication mode'), '#description' => t('Pick the mode based on the types of user accounts and other configuration decisions...
'), '#default_value' => variable_get('ldap_login_process', LDAP_FIRST_DRUPAL), '#options' => $options_login_process, '#required' => true, ); $form['security-options'] = array( '#type' => 'fieldset', '#title' => t('Security Options'), '#collapsible' => TRUE, '#description' => t('If you use the ldapdata module and want to allow users to modify their LDAP attributes, you have two options:
Physically, these passwords are stored in the Drupal\'s session table in clear text. This is not ideal and is not the recomended configuration.
Unless you need to use the latter configuration, leave this checked.
'), '#collapsed' => TRUE, ); $form['security-options']['ldap_forget_passwords'] = array( '#type' => 'checkbox', '#title' => t('Do not store users\' passwords during sessions'), '#return_value' => true, '#default_value' => variable_get('ldap_forget_passwords', true), ); $form['anonymous-ui'] = array( '#type' => 'fieldset', '#title' => t('Anonymous UI Options'), '#description' => t('Effects the interface for all non-authenticated users.
'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['anonymous-ui']['ldap_disable_request_new_password'] = array( '#type' => 'checkbox', '#title' => t('Remove Request new password link from login block'), '#return_value' => TRUE, '#default_value' => variable_get('ldap_disable_request_new_password', FALSE), ); $options_reset_form = array( LDAP_RESET_FORM_NO => t('Do nothing'), LDAP_RESET_FORM_OVERWRITE => t('Overwrite form with HTML in textfield'), LDAP_RESET_FORM_MERGE => t('Prepend HTML to form') ); $form['anonymous-ui']['ldap_alter_reset_form'] = array( '#type' => 'radios', '#title' => t('Alter Request New Password form'), '#default_value' => variable_get('ldap_alter_reset_form', LDAP_RESET_FORM_NO), '#options' => $options_reset_form, '#required' => true, ); $form['anonymous-ui']['ldap_user_pass_form'] = array( '#type' => 'textarea', '#title' => t('New password reset message'), '#default_value' => variable_get('ldap_user_pass_form','The Request New Password form cannot be removed, but it can be altered. Pick the mode based on the types of user accounts and other configuration decisions.
'), ); $form['ldap-ui'] = array( '#type' => 'fieldset', '#title' => t('LDAP UI Options'), '#description' => t('Alters LDAP users\' interface only, though admin accounts can still access email and password fields of LDAP users regardless of selections. Does not effect non-LDAP authenticated accounts.
'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['ldap-ui']['ldap_disable_user_request_password'] = array( '#type' => 'checkbox', '#title' => t('Remove password change fields from user edit form'), '#default_value' => variable_get('ldap_disable_user_request_password',FALSE), ); $options_email_field = array( LDAP_EMAIL_FIELD_NO => t('Do nothing'), LDAP_EMAIL_FIELD_REMOVE => t('Remove email field from form'), LDAP_EMAIL_FIELD_DISABLE => t('Disable email field on form') ); $form['ldap-ui']['ldap_alter_email_field'] = array( '#type' => 'radios', '#title' => t('Alter email field on user edit form'), '#description' => t('Remove or disable email field from user edit form for LDAP authenticated users.
'), '#default_value' => variable_get('ldap_alter_email_field', LDAP_EMAIL_FIELD_NO), '#options' => $options_email_field, '#required' => true, ); $form['ldap_restore_defaults'] = array( '#type' => 'checkbox', '#title' => t('Reset to default values'), '#default_value' => variable_get('ldap_restore_defaults',FALSE), ); $form['submit'] = array( '#type' => 'submit', '#value' => 'Save configuration' ); return $form; } function ldapauth_admin_options_submit($form_id, $form_values) { if ($form_values['ldap_restore_defaults']) { variable_del('ldap_disable_request_new_password'); variable_del('ldap_alter_reset_form'); variable_del('ldap_alter_email_field'); variable_del('ldap_user_pass_form'); variable_del('ldap_disable_user_request_password'); variable_del('ldap_forget_passwords'); variable_del('ldap_login_process'); $msg = 'System wide LDAP settings reset to defaults'; } else { variable_set('ldap_user_pass_form', $form_values['ldap_user_pass_form']); variable_set('ldap_disable_request_new_password', $form_values['ldap_disable_request_new_password']); variable_set('ldap_forget_passwords', $form_values['ldap_forget_passwords']); variable_set('ldap_login_process', $form_values['ldap_login_process']); variable_set('ldap_disable_user_request_password', $form_values['ldap_disable_user_request_password']); variable_set('ldap_alter_reset_form', $form_values['ldap_alter_reset_form']); variable_set('ldap_alter_email_field', $form_values['ldap_alter_email_field']); $msg = 'System wide LDAP settings saved'; } drupal_set_message($msg); return 'admin/settings/ldapauth/options'; } function ldapauth_admin_form() { $ldap_name = arg(4); if ((arg(3) == "edit") && ($ldap_name != NULL)) { $edit = db_fetch_array(db_query("SELECT * FROM {ldapauth} WHERE name = '%s'", $ldap_name)); $form['old-name'] = array( '#type' => 'hidden', '#value' => $ldap_name, ); } $form['server-settings'] = array( '#type' => 'fieldset', '#title' => t('Server settings'), '#collapsible' => TRUE, '#collapsed' => FALSE, ); $form['server-settings']['name'] = array( '#type' => 'textfield', '#title' => t('Name'), '#default_value' => $edit['name'], '#description' => t('Choose a unique name for this server configuration.'), '#size' => 50, '#maxlength' => 255, '#required' => TRUE, ); $form['server-settings']['server'] = array( '#type' => 'textfield', '#title' => t('LDAP server'), '#default_value' => $edit['server'], '#size' => 50, '#maxlength' => 255, '#description' => t('The domain name or IP address of your LDAP Server.
'), '#required' => TRUE, ); // workaround for a db schema screwup. If port is left blank, then next time the config is edited, // it will stick a 0 in it. -- not good. $_port = ($edit['port'] == '0') ? "389" : $edit['port']; $form['server-settings']['port'] = array( '#type' => 'textfield', '#title' => t('LDAP port'), '#default_value' => $_port, '#size' => 50, '#maxlength' => 255, '#description' => t('The TCP/IP port on the above server which accepts LDAP connections. Must be an integer.
'), ); $form['server-settings']['tls'] = array( '#type' => 'checkbox', '#title' => t('Use Start-TLS'), '#return_value' => 1, '#default_value' => $edit['tls'], '#description' => t('Secure the connection between the Drupal and the LDAP servers using TLS.
Note: To use START-TLS, you must set the LDAP Port to 389.
Secure the password in LDAP by storing it MD5 encrypted (use with care, as some LDAP directories may do this automatically, what would cause logins problems).
'), ); $form['login-procedure'] = array( '#type' => 'fieldset', '#title' => 'Login procedure', '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['login-procedure']['basedn'] = array( '#type' => 'textarea', '#title' => t('Base DNs'), '#default_value' => $edit['basedn'], '#cols' => 50, '#rows' => 6, '#description' => t('Base DNs for users. Enter one per line in case you need several of them.
') ); $form['login-procedure']['user_attr'] = array( '#type' => 'textfield', '#title' => t('UserName attribute'), '#default_value' => $edit['user_attr'], '#size' => 50, '#maxlength' => 255, '#description' => t('The attribute that holds the users\' login name. (eg. cn for eDir or sAMAccountName for Active Directory).
'), ); $form['login-procedure']['mail_attr'] = array( '#type' => 'textfield', '#title' => t('Email attribute'), '#default_value' => $edit['mail_attr'], '#size' => 50, '#maxlength' => 255, '#description' => t('The attribute that holds the users\' email address. (eg. mail).
'), ); $form['advanced'] = array( '#type' => 'fieldset', '#title' => 'Advanced configuration', '#collapsible' => TRUE, '#collapsed' => TRUE ); $form['advanced']['ldap-note'] = array( '#value' => 'The process of authentication starts by establishing an anonymous connection to the LDAP directory and looking up for the user on it. Once this user is found, LDAP authentication is performed on them.
However, some LDAP configurations (specially common in Active Directory setups) restrict anonymous searches.
If your LDAP setup does not allow anonymous searches, or these are restricted in such a way that login names for users cannot be retrieved as a result of them, then you have to specify here a DN//password pair that will be used for these searches.
For security reasons, this pair should belong to an LDAP account with stripped down permissions.
' ); $form['advanced']['binddn'] = array( '#type' => 'textfield', '#title' => t('DN for non-anonymous search'), '#default_value' => $edit['binddn'], '#size' => 50, '#maxlength' => 255, ); if ($edit['bindpw_clear'] || !$edit['bindpw']) { $form['advanced']['bindpw'] = array( '#type' => 'password', '#title' => t('Password for non-anonymous search'), '#size' => 50, '#maxlength' => 255, ); } else { // give an option to clear the password $form['advanced']['bindpw_clear'] = array( '#type' => 'checkbox', '#title' => t('Clear current password'), '#default_value' => false, ); } $form['submit'] = array( '#type' => 'submit', '#value' => 'Save configuration' ); return $form; } /** * Submit the contact category page for submission **/ function ldapauth_admin_form_submit($form_id, $form_values) { // set the checking order if ((arg(3) == 'add')) { if (db_fetch_object(db_query("SELECT name FROM {ldapauth} WHERE name = '%s'", $form_values['name']))) { form_set_error( 'name', t('An LDAP config with that name already exists.')); } db_query("INSERT INTO {ldapauth} (name, status, server, port, tls, encrypted, basedn, user_attr, mail_attr, binddn, bindpw) VALUES ('%s', '%d', '%s', '%d', '%d', '%d', '%s', '%s', '%s', '%s', '%s')", $form_values['name'], 1, $form_values['server'], $form_values['port'], $form_values['tls'], $form_values['encrypted'], $form_values['basedn'], trim($form_values['user_attr']), trim($form_values['mail_attr']), $form_values['binddn'], $form_values['bindpw']); drupal_set_message(t('LDAP Configuration %config has been added.', array('%config' => $form_values['name']))); watchdog('ldap', t('ldapauth: ldap config %config added.', array('%config' => $form_values['name']))); } else { if ( !$form_values['bindpw_clear'] && $form_values['bindpw']) { db_query("UPDATE {ldapauth} SET name = '%s', server = '%s', port = '%d', tls = '%d', encrypted = '%d', basedn = '%s', user_attr = '%s', mail_attr = '%s', binddn = '%s', bindpw = '%s', bindpw_clear = '%d' WHERE name = '%s'", $form_values['name'], $form_values['server'], $form_values['port'], $form_values['tls'], $form_values['encrypted'], $form_values['basedn'], trim($form_values['user_attr']), trim($form_values['mail_attr']), $form_values['binddn'], $form_values['bindpw'], $form_values['bindpw_clear'], $form_values['old-name']); } else { // set the clear password switch db_query("UPDATE {ldapauth} SET name = '%s', server = '%s', port = '%d', tls = '%d', encrypted = '%d', basedn = '%s', user_attr = '%s', mail_attr = '%s', binddn = '%s', bindpw_clear = '%d' WHERE name = '%s'", $form_values['name'], $form_values['server'], $form_values['port'], $form_values['tls'], $form_values['encrypted'], $form_values['basedn'], trim($form_values['user_attr']), trim($form_values['mail_attr']), $form_values['binddn'], $form_values['bindpw_clear'], $form_values['old-name']); } drupal_set_message(t('LDAP Configuration %config has been updated.', array('%config' => $form_values['name']))); watchdog('ldap', t('ldapauth: ldap config %config updated.', array('%config' => $form_values['name']))); } return 'admin/settings/ldapauth'; } function ldapauth_admin_delete() { $ldap_name = arg(4); if (!$ldap_name) { drupal_goto('admin/settings/ldapauth'); } if ($result = db_fetch_object(db_query("SELECT name FROM {ldapauth} WHERE name = '%s'", $ldap_name))) { return confirm_form( array(), t('Are you sure you want to delete the ldap configration named %server?', array('%server'=>$ldap_name)), 'admin/settings/ldapauth', t('This action cannot be undone.
'), t('Delete'), t('Cancel') ); } else { drupal_set_message(t('No such LDAP config: %config', array('%config' => $ldap_name))); drupal_goto('admin/settings/ldapauth'); } } function ldapauth_admin_delete_submit($form_id, $form_values) { if ($form_values['confirm']) { db_query("DELETE FROM {ldapauth} WHERE name = '%s'", arg(4)); drupal_set_message(t('LDAP Configuration %config has been deleted.', array('%config' => $form_values['name']))); watchdog('ldap', t('ldapauth: ldap config %config deleted.', array('%config' => $form_values['name']))); } return 'admin/settings/ldapauth'; } function ldapauth_auth($name, $pass, $server) { global $ldap; $ok = false; $login_name = $server ? "$name@$server" : $name; if (function_exists('ldapauth_transform_login_name')) { $login_name = call_user_func('ldapauth_transform_login_name', $login_name); } $dn = _ldapauth_login2dn($login_name); // Not allowing empty passwords because they cause problems // on some setups. See http://drupal.org/node/87831 if ($dn && $pass) { $ok = $ldap->connect($dn, $pass); } if ($ok && function_exists('ldapauth_user_filter')) { $ok = $ok && call_user_func('ldapauth_user_filter', $ldap->retrieveAttributes($dn)); } return $ok; } function ldapauth_exit() { // We delete the login info here, instead of just not storing it at // ldapauth_auth(), so at least ldapgroups can use it at login time if (variable_get('ldap_forget_passwords', false) && isset($_SESSION['ldap_login'])) { unset($_SESSION['ldap_login']); } } function ldapauth_user($op, &$edit, &$edit_user, $category = NULL) { global $user; switch ($op) { case 'login': // This is to convert from old ldap_integration to new ldapauth if ($user->ldap_authentified) { db_query("UPDATE {authmap} SET module = 'ldapauth' WHERE uid = '%d'", $user->uid); return; } break; case 'form': if (user_access('administer users')) { $form['ldap_settings'] = array( '#type' => 'fieldset', '#title' => 'LDAP authentication settings', '#collapsible' => TRUE, ); $form['ldap_settings']['ldap_authentified'] = array( '#type' => 'checkbox', '#title' => 'Authenticate via LDAP', '#default_value' => $edit_user->ldap_authentified, ); $form['ldap_settings']['ldap_dn'] = array( '#type' => 'textfield', '#title' => 'LDAP User DN', '#default_value' => $edit_user->ldap_dn, ); return $form; } break; } } /********************************* * 3. Auxiliary functions * *********************************/ function _ldapauth_init($config) { global $ldap; $row = db_fetch_object(db_query("SELECT * FROM {ldapauth} WHERE name = '%s'", $config)); // $ldap = new LDAPInterface(); $ldap->setOption('name', $row->name); $ldap->setOption('server', $row->server); $ldap->setOption('port', $row->port); $ldap->setOption('tls', $row->tls); $ldap->setOption('encrypted', $row->encrypted); $ldap->setOption('basedn', $row->basedn); $ldap->setOption('user_attr', $row->user_attr); $ldap->setOption('mail_attr', $row->mail_attr); return; } function _ldapauth_login2dn($login) { global $ldap; $ret = ''; $user = _ldapauth_user_lookup($login); if ($user) { $ret = $user['dn']; } return $ret; } function _ldapauth_user_lookup($name) { global $ldap; $ret = null; if (! $ldap) { return; } $row = db_fetch_object(db_query("SELECT binddn, bindpw FROM {ldapauth} WHERE name = '%s'", $ldap->getOption('name'))); $dn = $row->binddn; $pass = $row->bindpw; // If there is no BINDDN and BINDPW -- the connect will be an anonymous connect $ldap->connect($dn, $pass); $possible_base_dns = explode("\r\n", $ldap->getOption('basedn')); foreach ($possible_base_dns as $base_dn) { if( ! $base_dn) { continue; } $name_attr = $ldap->getOption('user_attr') ? $ldap->getOption('user_attr') : LDAP_DEFAULT_USER_ATTRIBUTE; $filter = "$name_attr=$name"; $result = $ldap->search($base_dn, $filter); if ( ! $result) { continue; } $num_matches = $result['count']; // must find exactly one user for authentication to if ($num_matches != 1) { watchdog('user', "Error: $num_matches users found with $filter under $base_dn", WATCHDOG_ERROR); continue; } $match = $result[0]; // These lines serve to fix the attribute name in case a // naughty server (i.e.: MS Active Directory) is messing the // characters' case. // This was contributed by Dan "Gribnif" Wilga, and described // here: http://drupal.org/node/87833 if ( ! isset($match[$name_attr][0]) ) { $name_attr = strtolower($name_attr); if ( ! isset($match[$name_attr][0]) ) { continue; } } // Finally, we must filter out results with spaces added before // or after, which are considered OK by LDAP but are no good for us // We allow lettercase independence, as requested by Marc Galera // on http://drupal.org/node/97728 // // Some setups have multiple $name_attr per entry, as pointed out by // Clarence "sparr" Risher on http://drupal.org/node/102008, so we // loop through all possible options. $ok = false; foreach ($match[$name_attr] as $value) { if (strtolower($value) == strtolower($name)) { $ok = true; break; } } if ( ! $ok) { continue; } $ret = $match; } return $ret; } /********************************* * 4. Login process hacks * *********************************/ function ldapauth_form_alter($form_id, &$form) { global $user; if (isset($form['#validate']['user_login_validate'])) { $form['#validate'] = array('ldapauth_login_validate' => array()); } // Rewrite forms regarding user administration switch($form_id) { case 'user_login_block': // Since form only available when not logged in, no need to check for admin? if (variable_get('ldap_disable_request_new_password', FALSE)) { unset($form['links']); } break; case 'user_pass': $opt = variable_get('ldap_alter_reset_form', LDAP_RESET_FORM_NO); if ($opt <> LDAP_RESET_FORM_NO && variable_get('ldap_user_pass_form', FALSE)) { if ($opt == LDAP_RESET_FORM_OVERWRITE){ $form = array( '#value' => t(variable_get('ldap_user_pass_form', '