mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
4831 lines
133 KiB
C
4831 lines
133 KiB
C
/* $OpenLDAP$ */
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
*
|
|
* Copyright 2004-2022 The OpenLDAP Foundation.
|
|
* Portions Copyright 2004-2005 Howard Chu, Symas Corporation.
|
|
* Portions Copyright 2004 Hewlett-Packard Company.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
* Public License.
|
|
*
|
|
* A copy of this license is available in the file LICENSE in the
|
|
* top-level directory of the distribution or, alternatively, at
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
*/
|
|
/* ACKNOWLEDGEMENTS:
|
|
* This work was developed by Howard Chu for inclusion in
|
|
* OpenLDAP Software, based on prior work by Neil Dunbar (HP).
|
|
* This work was sponsored by the Hewlett-Packard Company.
|
|
*/
|
|
|
|
#include "portable.h"
|
|
|
|
/* This file implements "Password Policy for LDAP Directories",
|
|
* based on draft behera-ldap-password-policy-09
|
|
*/
|
|
|
|
#ifdef SLAPD_OVER_PPOLICY
|
|
|
|
#include <ldap.h>
|
|
#include "lutil.h"
|
|
#include "slap.h"
|
|
#ifdef SLAPD_MODULES
|
|
#define LIBLTDL_DLL_IMPORT /* Win32: don't re-export libltdl's symbols */
|
|
#include <ltdl.h>
|
|
#endif
|
|
#include <ac/errno.h>
|
|
#include <ac/time.h>
|
|
#include <ac/string.h>
|
|
#include <ac/ctype.h>
|
|
#include "slap-config.h"
|
|
|
|
#ifndef PPOLICY_DEFAULT_MAXRECORDED_FAILURE
|
|
#define PPOLICY_DEFAULT_MAXRECORDED_FAILURE 5
|
|
#endif
|
|
|
|
/* External password quality checking function.
|
|
* The error message must have a preallocated buffer and size
|
|
* passed in. Module can still allocate a buffer for
|
|
* it if the provided one is too small.
|
|
*/
|
|
typedef int (check_func)( char *passwd, struct berval *errmsg, Entry *ent, struct berval *arg );
|
|
#define ERRBUFSIZ 256
|
|
|
|
typedef enum policy_action_e {
|
|
POLICY_RULE_STOP = 0, /* Default, stop if matched and policy entry exists */
|
|
POLICY_RULE_CONTINUE, /* Keep going, remember policy if exists, can be overriden by later rules */
|
|
POLICY_RULE_NO_POLICY, /* Decide that no policy should apply to this entry */
|
|
|
|
POLICY_RULE_LAST
|
|
} policy_action_t;
|
|
|
|
slap_verbmasks selections[] = {
|
|
{ BER_BVC("stop"), POLICY_RULE_STOP },
|
|
{ BER_BVC("continue"), POLICY_RULE_CONTINUE },
|
|
{ BER_BVC("no_policy"), POLICY_RULE_NO_POLICY },
|
|
{ BER_BVNULL, 0 }
|
|
};
|
|
|
|
slap_verbmasks scopes[] = {
|
|
{ BER_BVC("base"), ACL_STYLE_BASE },
|
|
{ BER_BVC("baseObject"), ACL_STYLE_BASE },
|
|
{ BER_BVC("exact"), ACL_STYLE_BASE },
|
|
{ BER_BVC("one"), ACL_STYLE_ONE },
|
|
{ BER_BVC("oneLevel"), ACL_STYLE_ONE },
|
|
{ BER_BVC("sub"), ACL_STYLE_SUBTREE },
|
|
{ BER_BVC("subtree"), ACL_STYLE_SUBTREE },
|
|
{ BER_BVC("children"), ACL_STYLE_CHILDREN },
|
|
{ BER_BVC("regex"), ACL_STYLE_REGEX },
|
|
{ BER_BVNULL, 0 }
|
|
};
|
|
|
|
typedef struct policy_rule {
|
|
struct berval object_pat, object_ndn;
|
|
slap_style_t object_style;
|
|
regex_t object_regex;
|
|
|
|
int require_password;
|
|
|
|
char *filterstr;
|
|
Filter *filter;
|
|
|
|
slap_style_t group_style;
|
|
struct berval group_pat, group_ndn;
|
|
ObjectClass *group_oc;
|
|
AttributeDescription *group_at;
|
|
|
|
/* DN/pattern of policy entry to select or BVNULL for none */
|
|
struct berval policy_dn, policy_ndn;
|
|
int policy_dn_style;
|
|
|
|
policy_action_t action;
|
|
|
|
struct policy_rule *next;
|
|
} policy_rule;
|
|
|
|
/* Per-instance configuration information */
|
|
typedef struct pp_info {
|
|
struct berval def_policy; /* DN of default policy subentry */
|
|
struct policy_rule *policy_rules;
|
|
int use_lockout; /* send AccountLocked result? */
|
|
int hash_passwords; /* transparently hash cleartext pwds */
|
|
int forward_updates; /* use frontend for policy state updates */
|
|
int disable_write;
|
|
int send_netscape_controls; /* send netscape password controls */
|
|
char *pwdCheckModule; /* name of module to dynamically
|
|
load to check password */
|
|
#ifdef SLAPD_MODULES
|
|
lt_dlhandle pwdCheckHandle; /* handle from lt_dlopen */
|
|
check_func *pwdCheckFunc;
|
|
#endif /* SLAPD_MODULES */
|
|
ldap_pvt_thread_mutex_t pwdFailureTime_mutex;
|
|
} pp_info;
|
|
|
|
/* Our per-connection info - note, it is not per-instance, it is
|
|
* used by all instances
|
|
*/
|
|
typedef struct pw_conn {
|
|
struct berval dn; /* DN of restricted user */
|
|
} pw_conn;
|
|
|
|
static pw_conn *pwcons;
|
|
static int ppolicy_cid;
|
|
static int account_usability_cid;
|
|
static int ov_count;
|
|
|
|
typedef struct pass_policy {
|
|
AttributeDescription *ad; /* attribute to which the policy applies */
|
|
int pwdMinAge; /* minimum time (seconds) until passwd can change */
|
|
int pwdMaxAge; /* time in seconds until pwd will expire after change */
|
|
int pwdMaxIdle; /* number of seconds since last successful bind before
|
|
passwd gets locked out */
|
|
int pwdInHistory; /* number of previous passwords kept */
|
|
int pwdCheckQuality; /* 0 = don't check quality, 1 = check if possible,
|
|
2 = check mandatory; fail if not possible */
|
|
int pwdMinLength; /* minimum number of chars in password */
|
|
int pwdMaxLength; /* maximum number of chars in password */
|
|
int pwdExpireWarning; /* number of seconds that warning controls are
|
|
sent before a password expires */
|
|
int pwdGraceExpiry; /* number of seconds after expiry grace logins are
|
|
valid */
|
|
int pwdGraceAuthNLimit; /* number of times you can log in with an
|
|
expired password */
|
|
int pwdLockout; /* 0 = do not lockout passwords, 1 = lock them out */
|
|
int pwdLockoutDuration; /* time in seconds a password is locked out for */
|
|
int pwdMinDelay; /* base bind delay in seconds on failure */
|
|
int pwdMaxDelay; /* maximum bind delay in seconds */
|
|
int pwdMaxFailure; /* number of failed binds allowed before lockout */
|
|
int pwdMaxRecordedFailure; /* number of failed binds to store */
|
|
int pwdFailureCountInterval; /* number of seconds before failure
|
|
counts are zeroed */
|
|
int pwdMustChange; /* 0 = users can use admin set password
|
|
1 = users must change password after admin set */
|
|
int pwdAllowUserChange; /* 0 = users cannot change their passwords
|
|
1 = users can change them */
|
|
int pwdSafeModify; /* 0 = old password doesn't need to come
|
|
with password change request
|
|
1 = password change must supply existing pwd */
|
|
int pwdUseCheckModule; /* 0 = do not use password check module, 1 = use */
|
|
struct berval pwdCheckModuleArg; /* Optional argument to the password check
|
|
module */
|
|
} PassPolicy;
|
|
|
|
typedef struct pw_hist {
|
|
time_t t; /* timestamp of history entry */
|
|
struct berval pw; /* old password hash */
|
|
struct berval bv; /* text of entire entry */
|
|
struct pw_hist *next;
|
|
} pw_hist;
|
|
|
|
/* Operational attributes */
|
|
static AttributeDescription *ad_pwdChangedTime, *ad_pwdAccountLockedTime,
|
|
*ad_pwdFailureTime, *ad_pwdHistory, *ad_pwdGraceUseTime, *ad_pwdReset,
|
|
*ad_pwdPolicySubentry, *ad_pwdStartTime, *ad_pwdEndTime,
|
|
*ad_pwdLastSuccess, *ad_pwdAccountTmpLockoutEnd;
|
|
|
|
/* Policy attributes */
|
|
static AttributeDescription *ad_pwdMinAge, *ad_pwdMaxAge, *ad_pwdMaxIdle,
|
|
*ad_pwdInHistory, *ad_pwdCheckQuality, *ad_pwdMinLength, *ad_pwdMaxLength,
|
|
*ad_pwdMaxFailure, *ad_pwdGraceExpiry, *ad_pwdGraceAuthNLimit,
|
|
*ad_pwdExpireWarning, *ad_pwdMinDelay, *ad_pwdMaxDelay,
|
|
*ad_pwdLockoutDuration, *ad_pwdFailureCountInterval,
|
|
*ad_pwdCheckModule, *ad_pwdCheckModuleArg, *ad_pwdUseCheckModule, *ad_pwdLockout,
|
|
*ad_pwdMustChange, *ad_pwdAllowUserChange, *ad_pwdSafeModify,
|
|
*ad_pwdAttribute, *ad_pwdMaxRecordedFailure;
|
|
|
|
/* Policy objectclasses */
|
|
static ObjectClass *oc_pwdPolicyChecker, *oc_pwdPolicy;
|
|
|
|
static struct schema_info {
|
|
char *def;
|
|
AttributeDescription **ad;
|
|
} pwd_OpSchema[] = {
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.16 "
|
|
"NAME ( 'pwdChangedTime' ) "
|
|
"DESC 'The time the password was last changed' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdChangedTime },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.17 "
|
|
"NAME ( 'pwdAccountLockedTime' ) "
|
|
"DESC 'The time an user account was locked' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
#if 0 /* FIXME: ITS#9671 until we introduce a separate lockout flag? */
|
|
"NO-USER-MODIFICATION "
|
|
#endif
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdAccountLockedTime },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.19 "
|
|
"NAME ( 'pwdFailureTime' ) "
|
|
"DESC 'The timestamps of the last consecutive authentication failures' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdFailureTime },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.20 "
|
|
"NAME ( 'pwdHistory' ) "
|
|
"DESC 'The history of users passwords' "
|
|
"EQUALITY octetStringMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdHistory },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.21 "
|
|
"NAME ( 'pwdGraceUseTime' ) "
|
|
"DESC 'The timestamps of the grace login once the password has expired' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdGraceUseTime },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.22 "
|
|
"NAME ( 'pwdReset' ) "
|
|
"DESC 'The indication that the password has been reset' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"SINGLE-VALUE "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdReset },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.23 "
|
|
"NAME ( 'pwdPolicySubentry' ) "
|
|
"DESC 'The pwdPolicy subentry in effect for this object' "
|
|
"EQUALITY distinguishedNameMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.12 "
|
|
"SINGLE-VALUE "
|
|
#if 0 /* ITS#9671: until we implement ITS#9343 or similar */
|
|
"NO-USER-MODIFICATION "
|
|
#endif
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdPolicySubentry },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.27 "
|
|
"NAME ( 'pwdStartTime' ) "
|
|
"DESC 'The time the password becomes enabled' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdStartTime },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.28 "
|
|
"NAME ( 'pwdEndTime' ) "
|
|
"DESC 'The time the password becomes disabled' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdEndTime },
|
|
/* Defined in schema_prep.c now
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.29 "
|
|
"NAME ( 'pwdLastSuccess' ) "
|
|
"DESC 'The timestamp of the last successful authentication' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdLastSuccess },
|
|
*/
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.33 "
|
|
"NAME ( 'pwdAccountTmpLockoutEnd' ) "
|
|
"DESC 'Temporary lockout end' "
|
|
"EQUALITY generalizedTimeMatch "
|
|
"ORDERING generalizedTimeOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.24 "
|
|
"SINGLE-VALUE "
|
|
"NO-USER-MODIFICATION "
|
|
"USAGE directoryOperation )",
|
|
&ad_pwdAccountTmpLockoutEnd },
|
|
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.1 "
|
|
"NAME ( 'pwdAttribute' ) "
|
|
"EQUALITY objectIdentifierMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.38 )",
|
|
&ad_pwdAttribute },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.2 "
|
|
"NAME ( 'pwdMinAge' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMinAge },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.3 "
|
|
"NAME ( 'pwdMaxAge' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxAge },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.4 "
|
|
"NAME ( 'pwdInHistory' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdInHistory },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.5 "
|
|
"NAME ( 'pwdCheckQuality' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdCheckQuality },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.6 "
|
|
"NAME ( 'pwdMinLength' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMinLength },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.31 "
|
|
"NAME ( 'pwdMaxLength' ) "
|
|
"EQUALITY integerMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxLength },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.7 "
|
|
"NAME ( 'pwdExpireWarning' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdExpireWarning },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.8 "
|
|
"NAME ( 'pwdGraceAuthNLimit' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdGraceAuthNLimit },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.30 "
|
|
"NAME ( 'pwdGraceExpiry' ) "
|
|
"EQUALITY integerMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdGraceExpiry },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.9 "
|
|
"NAME ( 'pwdLockout' ) "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdLockout },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.10 "
|
|
"NAME ( 'pwdLockoutDuration' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdLockoutDuration },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.11 "
|
|
"NAME ( 'pwdMaxFailure' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxFailure },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.12 "
|
|
"NAME ( 'pwdFailureCountInterval' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdFailureCountInterval },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.13 "
|
|
"NAME ( 'pwdMustChange' ) "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMustChange },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.14 "
|
|
"NAME ( 'pwdAllowUserChange' ) "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdAllowUserChange },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.15 "
|
|
"NAME ( 'pwdSafeModify' ) "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdSafeModify },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.24 "
|
|
"NAME ( 'pwdMinDelay' ) "
|
|
"EQUALITY integerMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMinDelay },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.25 "
|
|
"NAME ( 'pwdMaxDelay' ) "
|
|
"EQUALITY integerMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxDelay },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.26 "
|
|
"NAME ( 'pwdMaxIdle' ) "
|
|
"EQUALITY integerMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxIdle },
|
|
{ "( 1.3.6.1.4.1.42.2.27.8.1.32 "
|
|
"NAME ( 'pwdMaxRecordedFailure' ) "
|
|
"EQUALITY integerMatch "
|
|
"ORDERING integerOrderingMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdMaxRecordedFailure },
|
|
{ "( 1.3.6.1.4.1.4754.1.99.1 "
|
|
"NAME ( 'pwdCheckModule' ) "
|
|
"EQUALITY caseExactIA5Match "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 "
|
|
"DESC 'Obsolete, no longer used' "
|
|
"OBSOLETE "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdCheckModule },
|
|
{ "( 1.3.6.1.4.1.4754.1.99.2 "
|
|
"NAME ( 'pwdCheckModuleArg' ) "
|
|
"EQUALITY octetStringMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 "
|
|
"DESC 'Argument to pass to check_password() function' "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdCheckModuleArg },
|
|
{ "( 1.3.6.1.4.1.4754.1.99.3 "
|
|
"NAME ( 'pwdUseCheckModule' ) "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.7 "
|
|
"DESC 'Toggle use of the loaded pwdCheckModule' "
|
|
"SINGLE-VALUE )",
|
|
&ad_pwdUseCheckModule },
|
|
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static struct oc_info {
|
|
char *def;
|
|
ObjectClass **oc;
|
|
} pwd_ocs[] = {
|
|
{
|
|
"( 1.3.6.1.4.1.4754.2.99.1 "
|
|
"NAME 'pwdPolicyChecker' "
|
|
"SUP top "
|
|
"AUXILIARY "
|
|
"MAY ( pwdCheckModule $ pwdCheckModuleArg $ pwdUseCheckModule ) )" ,
|
|
&oc_pwdPolicyChecker,
|
|
},
|
|
{
|
|
"( 1.3.6.1.4.1.42.2.27.8.2.1 "
|
|
"NAME 'pwdPolicy' "
|
|
"SUP top "
|
|
"AUXILIARY "
|
|
"MUST ( pwdAttribute ) "
|
|
"MAY ( pwdMinAge $ pwdMaxAge $ pwdInHistory $ pwdCheckQuality $ "
|
|
"pwdMinLength $ pwdMaxLength $ pwdExpireWarning $ "
|
|
"pwdGraceAuthNLimit $ pwdGraceExpiry $ pwdLockout $ "
|
|
"pwdLockoutDuration $ pwdMaxFailure $ pwdFailureCountInterval $ "
|
|
"pwdMustChange $ pwdAllowUserChange $ pwdSafeModify $ "
|
|
"pwdMinDelay $ pwdMaxDelay $ pwdMaxIdle $ "
|
|
"pwdMaxRecordedFailure ) )",
|
|
&oc_pwdPolicy,
|
|
},
|
|
NULL
|
|
};
|
|
|
|
static ldap_pvt_thread_mutex_t chk_syntax_mutex;
|
|
|
|
enum {
|
|
PPOLICY_DEFAULT = 1,
|
|
PPOLICY_HASH_CLEARTEXT,
|
|
PPOLICY_USE_LOCKOUT,
|
|
PPOLICY_DISABLE_WRITE,
|
|
PPOLICY_CHECK_MODULE,
|
|
PPOLICY_DEFAULT_RULES,
|
|
PPOLICY_RULE_OBJECT,
|
|
PPOLICY_RULE_SCOPE,
|
|
PPOLICY_RULE_REQUIRE_PASS,
|
|
PPOLICY_RULE_FILTER,
|
|
PPOLICY_RULE_GROUP,
|
|
PPOLICY_RULE_GROUP_OC,
|
|
PPOLICY_RULE_GROUP_ATTR,
|
|
PPOLICY_RULE_POLICY,
|
|
PPOLICY_RULE_ACTION,
|
|
};
|
|
|
|
static ConfigDriver ppolicy_cf_default, ppolicy_cf_rule, ppolicy_cf_checkmod,
|
|
ppolicy_rule;
|
|
|
|
static ConfigTable ppolicycfg[] = {
|
|
{ "ppolicy_default", "policyDN", 2, 2, 0,
|
|
ARG_DN|ARG_QUOTE|ARG_MAGIC|PPOLICY_DEFAULT, ppolicy_cf_default,
|
|
"( OLcfgOvAt:12.1 NAME 'olcPPolicyDefault' "
|
|
"DESC 'DN of a pwdPolicy object for uncustomized objects' "
|
|
"EQUALITY distinguishedNameMatch "
|
|
"SYNTAX OMsDN SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_hash_cleartext", "on|off", 1, 2, 0,
|
|
ARG_ON_OFF|ARG_OFFSET|PPOLICY_HASH_CLEARTEXT,
|
|
(void *)offsetof(pp_info,hash_passwords),
|
|
"( OLcfgOvAt:12.2 NAME 'olcPPolicyHashCleartext' "
|
|
"DESC 'Hash passwords on add or modify' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_forward_updates", "on|off", 1, 2, 0,
|
|
ARG_ON_OFF|ARG_OFFSET,
|
|
(void *)offsetof(pp_info,forward_updates),
|
|
"( OLcfgOvAt:12.4 NAME 'olcPPolicyForwardUpdates' "
|
|
"DESC 'Allow policy state updates to be forwarded via updateref' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_use_lockout", "on|off", 1, 2, 0,
|
|
ARG_ON_OFF|ARG_OFFSET|PPOLICY_USE_LOCKOUT,
|
|
(void *)offsetof(pp_info,use_lockout),
|
|
"( OLcfgOvAt:12.3 NAME 'olcPPolicyUseLockout' "
|
|
"DESC 'Warn clients with AccountLocked' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_disable_write", "on|off", 1, 2, 0,
|
|
ARG_ON_OFF|ARG_OFFSET|PPOLICY_DISABLE_WRITE,
|
|
(void *)offsetof(pp_info,disable_write),
|
|
"( OLcfgOvAt:12.5 NAME 'olcPPolicyDisableWrite' "
|
|
"DESC 'Prevent all policy overlay writes' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_send_netscape_controls", "on|off", 1, 2, 0,
|
|
ARG_ON_OFF|ARG_OFFSET,
|
|
(void *)offsetof(pp_info,send_netscape_controls),
|
|
"( OLcfgOvAt:12.6 NAME 'olcPPolicySendNetscapeControls' "
|
|
"DESC 'Send Netscape policy controls' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
|
{ "ppolicy_check_module", "path", 2, 2, 0,
|
|
#ifdef SLAPD_MODULES
|
|
ARG_STRING|ARG_MAGIC|PPOLICY_CHECK_MODULE, ppolicy_cf_checkmod,
|
|
#else
|
|
ARG_IGNORED, NULL,
|
|
#endif /* SLAPD_MODULES */
|
|
"( OLcfgOvAt:12.7 NAME 'olcPPolicyCheckModule' "
|
|
"DESC 'Loadable module that instantiates check_password() function' "
|
|
"EQUALITY caseExactIA5Match "
|
|
"SYNTAX OMsIA5String "
|
|
"SINGLE-VALUE )", NULL, NULL },
|
|
|
|
/* slapd.conf compatibility */
|
|
{ "ppolicy_rules", "rule", 3, 0, 0,
|
|
ARG_MAGIC|PPOLICY_DEFAULT_RULES,
|
|
ppolicy_cf_rule,
|
|
NULL, NULL, NULL },
|
|
|
|
/* cn=config only attributes */
|
|
{ "", "dn/regex", 2, 2, 0,
|
|
ARG_BERVAL|ARG_MAGIC|PPOLICY_RULE_OBJECT,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.8 "
|
|
"NAME 'olcPPolicyRuleObject' "
|
|
"DESC 'DN/pattern for object' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "scope", 2, 2, 0,
|
|
ARG_BERVAL|ARG_MAGIC|PPOLICY_RULE_SCOPE,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.9 "
|
|
"NAME 'olcPPolicyRuleScope' "
|
|
"DESC 'scope for olcPPolicyRuleObject DN' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "require_password", 2, 2, 0,
|
|
ARG_ON_OFF|ARG_MAGIC|PPOLICY_RULE_REQUIRE_PASS,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.10 "
|
|
"NAME 'olcPPolicyRuleRequirePassword' "
|
|
"DESC 'Require that password attribute is present' "
|
|
"EQUALITY booleanMatch "
|
|
"SYNTAX OMsBoolean "
|
|
"SINGLE-VALUE )",
|
|
NULL, { .v_int = 1 },
|
|
},
|
|
{ "", "filter", 2, 2, 0,
|
|
ARG_STRING|ARG_MAGIC|PPOLICY_RULE_FILTER,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.11 "
|
|
"NAME 'olcPPolicyRuleFilter' "
|
|
"DESC 'Filter required for rule to match' "
|
|
"EQUALITY caseExactMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "dn/pattern", 2, 2, 0,
|
|
ARG_BERVAL|ARG_MAGIC|PPOLICY_RULE_GROUP,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.12 "
|
|
"NAME 'olcPPolicyRuleGroup' "
|
|
"DESC 'Group membership required for rule to match' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "oc", 2, 2, 0,
|
|
ARG_STRING|ARG_MAGIC|PPOLICY_RULE_GROUP_OC,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.13 "
|
|
"NAME 'olcPPolicyRuleGroupOC' "
|
|
"DESC 'What objectClass to use for group membership' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "attr", 2, 2, 0,
|
|
ARG_ATDESC|ARG_MAGIC|PPOLICY_RULE_GROUP_ATTR,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.14 "
|
|
"NAME 'olcPPolicyRuleGroupAttr' "
|
|
"DESC 'What attribute to use for group membership' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "dn/pattern", 2, 2, 0,
|
|
ARG_BERVAL|ARG_MAGIC|PPOLICY_RULE_POLICY,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.15 "
|
|
"NAME 'olcPPolicyRulePolicy' "
|
|
"DESC 'Policy to use' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ "", "action", 2, 2, 0,
|
|
ARG_BERVAL|ARG_MAGIC|PPOLICY_RULE_ACTION,
|
|
&ppolicy_rule,
|
|
"( OLcfgOvAt:12.16 "
|
|
"NAME 'olcPPolicyRuleAction' "
|
|
"DESC 'Whether to keep looking on match' "
|
|
"EQUALITY caseIgnoreMatch "
|
|
"SYNTAX OMsDirectoryString "
|
|
"SINGLE-VALUE )",
|
|
NULL, NULL
|
|
},
|
|
{ NULL, NULL, 0, 0, 0, ARG_IGNORED }
|
|
};
|
|
|
|
static ConfigCfAdd ppolicy_cfadd;
|
|
static ConfigLDAPadd ppolicy_rule_ldadd;
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
static ConfigLDAPdel ppolicy_rule_lddel;
|
|
#ifdef SLAP_CONFIG_RENAME
|
|
static ConfigLDAPmove ppolicy_rule_ldmove;
|
|
#endif /* SLAP_CONFIG_RENAME */
|
|
#endif /* SLAP_CONFIG_DELETE */
|
|
|
|
static ConfigOCs ppolicyocs[] = {
|
|
{ "( OLcfgOvOc:12.1 "
|
|
"NAME 'olcPPolicyConfig' "
|
|
"DESC 'Password Policy configuration' "
|
|
"SUP olcOverlayConfig "
|
|
"MAY ( olcPPolicyDefault $ olcPPolicyHashCleartext $ "
|
|
"olcPPolicyUseLockout $ olcPPolicyForwardUpdates $ "
|
|
"olcPPolicyDisableWrite $ olcPPolicySendNetscapeControls $ "
|
|
"olcPPolicyCheckModule ) )",
|
|
Cft_Overlay, ppolicycfg,
|
|
NULL,
|
|
ppolicy_cfadd,
|
|
},
|
|
{ "( OLcfgOvOc:12.2 "
|
|
"NAME 'olcPPolicyAbstractRule' "
|
|
"DESC 'Password policy rule definitions' "
|
|
"ABSTRACT "
|
|
"MUST ( cn ) "
|
|
"MAY ( description $ olcPPolicyRuleObject $ olcPPolicyRuleRequirePassword $ "
|
|
"olcPPolicyRuleFilter $ olcPPolicyRuleGroup $ olcPPolicyRuleGroupOC $ "
|
|
"olcPPolicyRuleGroupAttr $ olcPPolicyRulePolicy $ olcPPolicyRuleAction ) )",
|
|
Cft_Misc, ppolicycfg,
|
|
},
|
|
{ "( OLcfgOvOc:12.3 "
|
|
"NAME 'olcPPolicyScopedRule' "
|
|
"DESC 'Password policy rule scope based definition' "
|
|
"SUP olcPPolicyAbstractRule STRUCTURAL "
|
|
"MAY ( olcPPolicyRuleScope ) )",
|
|
Cft_Misc, ppolicycfg,
|
|
ppolicy_rule_ldadd,
|
|
NULL,
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
ppolicy_rule_lddel,
|
|
#ifdef SLAP_CONFIG_RENAME
|
|
ppolicy_rule_ldmove,
|
|
#endif /* SLAP_CONFIG_RENAME */
|
|
#endif /* SLAP_CONFIG_DELETE */
|
|
},
|
|
{ "( OLcfgOvOc:12.4 "
|
|
"NAME 'olcPPolicyRegexRule' "
|
|
"DESC 'Password policy rule regex-based definition' "
|
|
"SUP olcPPolicyAbstractRule STRUCTURAL "
|
|
"MUST ( olcPPolicyRuleObject ) )",
|
|
Cft_Misc, ppolicycfg,
|
|
ppolicy_rule_ldadd,
|
|
NULL,
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
ppolicy_rule_lddel,
|
|
#ifdef SLAP_CONFIG_RENAME
|
|
ppolicy_rule_ldmove,
|
|
#endif /* SLAP_CONFIG_RENAME */
|
|
#endif /* SLAP_CONFIG_DELETE */
|
|
},
|
|
{ NULL, 0, NULL }
|
|
};
|
|
|
|
static int
|
|
ppolicy_cf_default( ConfigArgs *c )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
assert ( c->type == PPOLICY_DEFAULT );
|
|
Debug(LDAP_DEBUG_TRACE, "==> ppolicy_cf_default\n" );
|
|
|
|
switch ( c->op ) {
|
|
case SLAP_CONFIG_EMIT:
|
|
Debug(LDAP_DEBUG_TRACE, "==> ppolicy_cf_default emit\n" );
|
|
rc = 0;
|
|
if ( !BER_BVISEMPTY( &pi->def_policy )) {
|
|
rc = value_add_one( &c->rvalue_vals,
|
|
&pi->def_policy );
|
|
if ( rc ) return rc;
|
|
rc = value_add_one( &c->rvalue_nvals,
|
|
&pi->def_policy );
|
|
}
|
|
break;
|
|
case LDAP_MOD_DELETE:
|
|
Debug(LDAP_DEBUG_TRACE, "==> ppolicy_cf_default delete\n" );
|
|
if ( pi->def_policy.bv_val ) {
|
|
ber_memfree ( pi->def_policy.bv_val );
|
|
pi->def_policy.bv_val = NULL;
|
|
}
|
|
pi->def_policy.bv_len = 0;
|
|
rc = 0;
|
|
break;
|
|
case SLAP_CONFIG_ADD:
|
|
/* fallthru to LDAP_MOD_ADD */
|
|
case LDAP_MOD_ADD:
|
|
Debug(LDAP_DEBUG_TRACE, "==> ppolicy_cf_default add\n" );
|
|
if ( pi->def_policy.bv_val ) {
|
|
ber_memfree ( pi->def_policy.bv_val );
|
|
}
|
|
pi->def_policy = c->value_ndn;
|
|
ber_memfree( c->value_dn.bv_val );
|
|
BER_BVZERO( &c->value_dn );
|
|
BER_BVZERO( &c->value_ndn );
|
|
rc = 0;
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
static void
|
|
ppolicy_rule_free( policy_rule *pr )
|
|
{
|
|
if ( !BER_BVISNULL( &pr->object_pat ) ) {
|
|
ch_free( pr->object_pat.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &pr->object_ndn ) ) {
|
|
ch_free( pr->object_ndn.bv_val );
|
|
}
|
|
if ( pr->object_style == ACL_STYLE_REGEX ) {
|
|
regfree( &pr->object_regex );
|
|
}
|
|
if ( pr->filterstr ) {
|
|
ch_free( pr->filterstr );
|
|
}
|
|
if ( pr->filter ) {
|
|
filter_free( pr->filter );
|
|
}
|
|
if ( !BER_BVISNULL( &pr->group_pat ) ) {
|
|
ch_free( pr->group_pat.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &pr->group_ndn ) ) {
|
|
ch_free( pr->group_ndn.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &pr->policy_dn ) ) {
|
|
ch_free( pr->policy_dn.bv_val );
|
|
}
|
|
if ( !BER_BVISNULL( &pr->policy_ndn ) ) {
|
|
ch_free( pr->policy_ndn.bv_val );
|
|
}
|
|
pr->next = NULL;
|
|
ch_free( pr );
|
|
}
|
|
|
|
static int
|
|
ppolicy_rule_parse( policy_rule **prp, ConfigArgs *c )
|
|
{
|
|
policy_rule *pr = ch_calloc( 1, sizeof(policy_rule) );
|
|
int rc = ARG_BAD_CONF, i = 1, j, have_policy = 0;
|
|
|
|
pr->action = POLICY_RULE_LAST;
|
|
pr->require_password = -1;
|
|
|
|
for ( ; i < c->argc; i++ ) {
|
|
char *p = c->argv[i], *value = NULL, *style = NULL;
|
|
|
|
value = strchr( p, '=' );
|
|
if ( value ) *value++ = '\0';
|
|
|
|
style = strchr( p, '.' );
|
|
if ( style ) *style++ = '\0';
|
|
|
|
if ( !value ) {
|
|
if ( style ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: keyword \"%s\" doesn't accept style \"%s\"",
|
|
c->argv[0], p, style );
|
|
goto done;
|
|
}
|
|
|
|
j = verb_to_mask( p, selections );
|
|
if ( BER_BVISNULL( &selections[j].word ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: keyword \"%s\" unknown or requires argument",
|
|
c->argv[0], p );
|
|
goto done;
|
|
} else if ( selections[j].mask == POLICY_RULE_NO_POLICY ) {
|
|
if ( have_policy ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" or policy_dn specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
have_policy = 1;
|
|
} else if ( pr->action != POLICY_RULE_LAST ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: more that one action specified: \"%s\"",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
pr->action = selections[j].mask;
|
|
continue;
|
|
}
|
|
|
|
if ( strcasecmp( p, "dn" ) == 0 ) {
|
|
if ( !BER_BVISNULL( &pr->object_pat ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
j = 0;
|
|
if ( style ) {
|
|
j = verb_to_mask( style, scopes );
|
|
}
|
|
|
|
if ( BER_BVISNULL( &scopes[j].word ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown dn style: %s",
|
|
c->argv[0], style );
|
|
goto done;
|
|
}
|
|
|
|
pr->object_style = scopes[j].mask;
|
|
if ( pr->object_style == ACL_STYLE_REGEX ) {
|
|
if ( *value == '\0' ) {
|
|
/* empty regex should match empty DN */
|
|
pr->object_style = ACL_STYLE_BASE;
|
|
} else {
|
|
int e = regcomp( &pr->object_regex, value,
|
|
REG_EXTENDED | REG_ICASE );
|
|
if ( e ) {
|
|
char err[SLAP_TEXT_BUFLEN];
|
|
|
|
regerror( e, &pr->object_regex, err, sizeof( err ) );
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> regular expression \"%s\" bad because of %s",
|
|
c->argv[0], value, err );
|
|
goto done;
|
|
}
|
|
|
|
pr->object_style = ACL_STYLE_REGEX;
|
|
}
|
|
}
|
|
ber_str2bv( value, 0, 1, &pr->object_pat );
|
|
} else if ( strcasecmp( p, "require_password" ) == 0 ) {
|
|
if ( pr->require_password >= 0 ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
if ( style ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" does not accept a style modifier",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
if ( !strcasecmp(c->argv[1], "true") ||
|
|
!strcasecmp(c->argv[1], "yes") ) {
|
|
pr->require_password = 1;
|
|
} else if ( !strcasecmp(c->argv[1], "false") ||
|
|
!strcasecmp(c->argv[1], "no") ) {
|
|
pr->require_password = 0;
|
|
} else {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown value for \"%s\": %s",
|
|
c->argv[0], p, value );
|
|
goto done;
|
|
}
|
|
} else if ( strcasecmp( p, "filter" ) == 0 ) {
|
|
if ( pr->filter ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
if ( style ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" does not accept a style modifier",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
pr->filter = str2filter( value );
|
|
if ( !pr->filter ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: bad filter: %s",
|
|
c->argv[0], value );
|
|
goto done;
|
|
}
|
|
pr->filterstr = ch_strdup( value );
|
|
} else if ( strncasecmp( p, "group", STRLENOF("group") ) == 0 ) {
|
|
char *name = NULL;
|
|
char *oc_name = NULL;
|
|
char *attr_name = SLAPD_GROUP_ATTR;
|
|
const char *text;
|
|
|
|
if ( p[STRLENOF("group")] != '\0' && p[STRLENOF("group")] != '/' ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: unknown option \"%s\"",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
if ( style && strcasecmp( style, "expand" ) != 0 ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown style \"%s\" for group.",
|
|
c->argv[0], c->argv[i] );
|
|
goto done;
|
|
}
|
|
if ( style ) {
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group dn expansion requires a regex scope",
|
|
c->argv[0] );
|
|
goto done;
|
|
}
|
|
pr->group_style = ACL_STYLE_EXPAND;
|
|
} else {
|
|
pr->group_style = ACL_STYLE_BASE;
|
|
}
|
|
|
|
/* format of string is
|
|
"group/objectClassValue/groupAttrName" */
|
|
if ( ( oc_name = strchr( p, '/' ) ) != NULL ) {
|
|
*oc_name++ = '\0';
|
|
if ( *oc_name && ( name = strchr( oc_name, '/' ) ) != NULL ) {
|
|
*name++ = '\0';
|
|
}
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &pr->group_pat ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
|
|
if ( oc_name && *oc_name ) {
|
|
pr->group_oc = oc_find( oc_name );
|
|
|
|
if ( pr->group_oc == NULL ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group objectclass \"%s\" unknown",
|
|
c->argv[0], oc_name );
|
|
goto done;
|
|
}
|
|
|
|
} else {
|
|
pr->group_oc = oc_find( SLAPD_GROUP_CLASS );
|
|
|
|
if ( pr->group_oc == NULL ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group default objectclass \"%s\" unknown",
|
|
c->argv[0], SLAPD_GROUP_CLASS );
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
if ( is_object_subclass( slap_schema.si_oc_referral,
|
|
pr->group_oc ) )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group objectclass \"%s\" "
|
|
"is subclass of referral.",
|
|
c->argv[0], oc_name );
|
|
goto done;
|
|
}
|
|
|
|
if ( is_object_subclass( slap_schema.si_oc_alias,
|
|
pr->group_oc ) )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group objectclass \"%s\" "
|
|
"is subclass of alias.\n",
|
|
c->argv[0], oc_name );
|
|
goto done;
|
|
}
|
|
|
|
if ( name && *name ) {
|
|
attr_name = name;
|
|
}
|
|
|
|
rc = slap_str2ad( attr_name, &pr->group_at, &text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group \"%s\": %s.\n",
|
|
c->argv[0], value, text );
|
|
goto done;
|
|
}
|
|
|
|
if ( !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_DN_SYNTAX ) /* e.g. "member" */
|
|
&& !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_NAMEUID_SYNTAX ) /* e.g. memberUID */
|
|
&& !is_at_subtype( pr->group_at->ad_type,
|
|
slap_schema.si_ad_labeledURI->ad_type ) /* e.g. memberURL */ )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group \"%s\" attr \"%s\": inappropriate syntax %s; "
|
|
"must be " SLAPD_DN_SYNTAX " (DN), " SLAPD_NAMEUID_SYNTAX
|
|
" (NameUID) or a subtype of labeledURI.",
|
|
c->argv[0], value, attr_name, at_syntax(pr->group_at->ad_type) );
|
|
goto done;
|
|
}
|
|
|
|
{
|
|
ObjectClass *ocs[2];
|
|
|
|
ocs[0] = pr->group_oc;
|
|
ocs[1] = NULL;
|
|
|
|
if ( oc_check_allowed( pr->group_at->ad_type, ocs, NULL ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group: \"%s\" not allowed by \"%s\".",
|
|
c->argv[0], pr->group_at->ad_cname.bv_val,
|
|
pr->group_oc->soc_oid );
|
|
goto done;
|
|
}
|
|
}
|
|
ber_str2bv( value, 0, 1, &pr->group_pat );
|
|
|
|
if ( pr->group_style != ACL_STYLE_EXPAND &&
|
|
dnNormalize( 0, NULL, NULL,
|
|
&pr->group_pat, &pr->group_ndn, NULL ) != LDAP_SUCCESS ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unable to normalize group DN \"%s\"",
|
|
c->argv[0], value );
|
|
goto done;
|
|
}
|
|
} else if ( strcasecmp( p, "policy_dn" ) == 0 ) {
|
|
if ( have_policy ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: \"%s\" or no_policy specified multiple times",
|
|
c->argv[0], p );
|
|
goto done;
|
|
}
|
|
have_policy = 1;
|
|
|
|
if ( style && strcasecmp( style, "expand" ) != 0 ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown style \"%s\" for policy_dn.",
|
|
c->argv[0], c->argv[i] );
|
|
goto done;
|
|
}
|
|
if ( style ) {
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> policy dn expansion requires a regex scope",
|
|
c->argv[0] );
|
|
goto done;
|
|
}
|
|
pr->policy_dn_style = ACL_STYLE_EXPAND;
|
|
} else {
|
|
pr->policy_dn_style = ACL_STYLE_BASE;
|
|
}
|
|
ber_str2bv( value, 0, 1, &pr->policy_dn );
|
|
} else {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown keyword \"%s\".",
|
|
c->argv[0], c->argv[i] );
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
if ( pr->action == POLICY_RULE_LAST ) {
|
|
pr->action = POLICY_RULE_STOP;
|
|
}
|
|
if ( pr->require_password < 0 ) {
|
|
pr->require_password = 1;
|
|
}
|
|
|
|
if ( i != c->argc ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> extra cruft after policy specification",
|
|
c->argv[0] );
|
|
goto done;
|
|
}
|
|
|
|
if ( !have_policy ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> need to specify policy_dn or no_policy",
|
|
c->argv[0] );
|
|
goto done;
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &pr->policy_dn ) &&
|
|
pr->policy_dn_style != ACL_STYLE_EXPAND &&
|
|
dnNormalize( 0, NULL, NULL,
|
|
&pr->policy_dn, &pr->policy_ndn, NULL ) != LDAP_SUCCESS ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unable to normalize policy_dn=\"%s\"",
|
|
c->argv[0], pr->object_pat.bv_val );
|
|
goto done;
|
|
}
|
|
|
|
if ( pr->object_style != ACL_STYLE_REGEX &&
|
|
!BER_BVISNULL( &pr->object_pat ) ) {
|
|
if ( dnNormalize( 0, NULL, NULL,
|
|
&pr->object_pat, &pr->object_ndn, NULL ) != LDAP_SUCCESS )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unable to normalize dn=\"%s\"",
|
|
c->argv[0], pr->object_pat.bv_val );
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
*prp = pr;
|
|
rc = LDAP_SUCCESS;
|
|
done:
|
|
if ( rc ) {
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
ppolicy_rule_free( pr );
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static int
|
|
ppolicy_cf_rule( ConfigArgs *c )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
policy_rule **prp;
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
assert( c->op == SLAP_CONFIG_ADD );
|
|
assert( c->type == PPOLICY_DEFAULT_RULES );
|
|
Debug( LDAP_DEBUG_TRACE, "==> ppolicy_cf_rule\n" );
|
|
|
|
for ( prp = &pi->policy_rules; *prp; prp = &(*prp)->next )
|
|
/* scroll to the end */ ;
|
|
|
|
if ( (rc = ppolicy_rule_parse( prp, c )) ) {
|
|
return rc;
|
|
}
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
ppolicy_group_finish( ConfigArgs *c )
|
|
{
|
|
policy_rule *pr = c->ca_private;
|
|
ObjectClass *ocs[2];
|
|
|
|
ocs[0] = pr->group_oc;
|
|
ocs[1] = NULL;
|
|
|
|
if ( oc_check_allowed( pr->group_at->ad_type, ocs, NULL ) ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group: \"%s\" not allowed by \"%s\".",
|
|
c->argv[0], pr->group_at->ad_cname.bv_val,
|
|
pr->group_oc->soc_oid );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
ppolicy_rule( ConfigArgs *c )
|
|
{
|
|
policy_rule *pr = c->ca_private;
|
|
struct berval ndn = BER_BVNULL;
|
|
const char *text;
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
if ( c->op == SLAP_CONFIG_EMIT ) {
|
|
switch ( c->type ) {
|
|
case PPOLICY_RULE_OBJECT:
|
|
c->value_bv = pr->object_pat;
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_SCOPE:
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
enum_to_verb( scopes, pr->object_style, &c->value_bv );
|
|
return LDAP_SUCCESS;
|
|
}
|
|
break;
|
|
case PPOLICY_RULE_REQUIRE_PASS:
|
|
c->value_int = pr->require_password;
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_FILTER:
|
|
if ( pr->filterstr ) {
|
|
c->value_string = ch_strdup( pr->filterstr );
|
|
}
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_GROUP:
|
|
c->value_bv = pr->group_pat;
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_GROUP_OC:
|
|
if ( pr->group_oc ) {
|
|
c->value_string = ch_strdup( pr->group_oc->soc_cname.bv_val );
|
|
return LDAP_SUCCESS;
|
|
}
|
|
break;
|
|
case PPOLICY_RULE_GROUP_ATTR:
|
|
c->value_ad = pr->group_at;
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_POLICY:
|
|
c->value_bv = pr->policy_dn;
|
|
return LDAP_SUCCESS;
|
|
case PPOLICY_RULE_ACTION:
|
|
enum_to_verb( selections, pr->action, &c->value_bv );
|
|
return LDAP_SUCCESS;
|
|
|
|
default:
|
|
assert(0);
|
|
}
|
|
return rc;
|
|
} else if ( c->op == LDAP_MOD_DELETE ) {
|
|
switch ( c->type ) {
|
|
case PPOLICY_RULE_OBJECT:
|
|
ch_free( pr->object_pat.bv_val );
|
|
BER_BVZERO( &pr->object_pat );
|
|
ch_free( pr->object_ndn.bv_val );
|
|
BER_BVZERO( &pr->object_ndn );
|
|
break;
|
|
case PPOLICY_RULE_SCOPE:
|
|
pr->object_style = ACL_STYLE_BASE;
|
|
break;
|
|
case PPOLICY_RULE_REQUIRE_PASS:
|
|
pr->require_password = c->ca_desc->arg_default.v_int;
|
|
break;
|
|
case PPOLICY_RULE_FILTER:
|
|
filter_free( pr->filter );
|
|
|
|
ch_free( pr->filterstr );
|
|
pr->filterstr = NULL;
|
|
break;
|
|
case PPOLICY_RULE_GROUP:
|
|
ch_free( pr->group_pat.bv_val );
|
|
BER_BVZERO( &pr->group_pat );
|
|
ch_free( pr->group_ndn.bv_val );
|
|
BER_BVZERO( &pr->group_ndn );
|
|
break;
|
|
case PPOLICY_RULE_GROUP_OC:
|
|
pr->group_oc = oc_find( SLAPD_GROUP_CLASS );
|
|
if ( !pr->group_oc ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"group default objectclass \"%s\" unknown",
|
|
SLAPD_GROUP_CLASS );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return rc;
|
|
}
|
|
config_push_cleanup( c, ppolicy_group_finish );
|
|
break;
|
|
case PPOLICY_RULE_GROUP_ATTR:
|
|
rc = slap_str2ad( SLAPD_GROUP_ATTR, &pr->group_at, &text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"group default attribute \"%s\" unknown: %s.\n",
|
|
SLAPD_GROUP_ATTR, text );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return rc;
|
|
}
|
|
|
|
if ( !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_DN_SYNTAX ) /* e.g. "member" */
|
|
&& !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_NAMEUID_SYNTAX ) /* e.g. memberUID */
|
|
&& !is_at_subtype( pr->group_at->ad_type,
|
|
slap_schema.si_ad_labeledURI->ad_type ) /* e.g. memberURL */ )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group attr \"%s\": inappropriate syntax %s; "
|
|
"must be " SLAPD_DN_SYNTAX " (DN), " SLAPD_NAMEUID_SYNTAX
|
|
" (NameUID) or a subtype of labeledURI.",
|
|
c->argv[0], pr->group_at->ad_cname.bv_val,
|
|
at_syntax(pr->group_at->ad_type) );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
|
|
config_push_cleanup( c, ppolicy_group_finish );
|
|
break;
|
|
case PPOLICY_RULE_POLICY:
|
|
ch_free( pr->policy_dn.bv_val );
|
|
BER_BVZERO( &pr->policy_dn );
|
|
ch_free( pr->policy_ndn.bv_val );
|
|
BER_BVZERO( &pr->policy_ndn );
|
|
break;
|
|
case PPOLICY_RULE_ACTION:
|
|
pr->action = POLICY_RULE_STOP;
|
|
break;
|
|
|
|
default:
|
|
assert(0);
|
|
}
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
switch ( c->type ) {
|
|
case PPOLICY_RULE_OBJECT:
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
rc = dnNormalize( 0, NULL, NULL, &c->value_bv, &ndn, NULL );
|
|
}
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
pr->object_pat = c->value_bv;
|
|
pr->object_ndn = ndn;
|
|
}
|
|
break;
|
|
case PPOLICY_RULE_SCOPE: {
|
|
int i = bverb_to_mask( &c->value_bv, scopes );
|
|
if ( BER_BVISNULL( &scopes[i].word ) ||
|
|
scopes[i].mask == ACL_STYLE_REGEX ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> unknown dn style: %s",
|
|
c->argv[0], c->value_bv.bv_val );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
ch_free( c->value_bv.bv_val );
|
|
pr->object_style = scopes[i].mask;
|
|
} break;
|
|
case PPOLICY_RULE_REQUIRE_PASS:
|
|
pr->require_password = c->value_int;
|
|
break;
|
|
case PPOLICY_RULE_FILTER:
|
|
pr->filter = str2filter( c->value_string );
|
|
if ( !pr->filter ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: bad filter: %s",
|
|
c->argv[0], c->value_string );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
pr->filterstr = c->value_string;
|
|
break;
|
|
case PPOLICY_RULE_GROUP:
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
rc = dnNormalize( 0, NULL, NULL, &c->value_bv, &ndn, NULL );
|
|
}
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
pr->group_pat = c->value_bv;
|
|
pr->group_ndn = ndn;
|
|
}
|
|
break;
|
|
case PPOLICY_RULE_GROUP_OC:
|
|
pr->group_oc = oc_find( c->value_string );
|
|
if ( !pr->group_oc ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group objectclass \"%s\" unknown",
|
|
c->argv[0], SLAPD_GROUP_CLASS );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
config_push_cleanup( c, ppolicy_group_finish );
|
|
break;
|
|
case PPOLICY_RULE_GROUP_ATTR:
|
|
rc = slap_str2ad( c->value_string, &pr->group_at, &text );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s>: group \"%s\": %s.\n",
|
|
c->argv[0], SLAPD_GROUP_ATTR, text );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
|
|
if ( !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_DN_SYNTAX ) /* e.g. "member" */
|
|
&& !is_at_syntax( pr->group_at->ad_type,
|
|
SLAPD_NAMEUID_SYNTAX ) /* e.g. memberUID */
|
|
&& !is_at_subtype( pr->group_at->ad_type,
|
|
slap_schema.si_ad_labeledURI->ad_type ) /* e.g. memberURL */ )
|
|
{
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ),
|
|
"<%s> group attr \"%s\": inappropriate syntax %s; "
|
|
"must be " SLAPD_DN_SYNTAX " (DN), " SLAPD_NAMEUID_SYNTAX
|
|
" (NameUID) or a subtype of labeledURI.",
|
|
c->argv[0], pr->group_at->ad_cname.bv_val,
|
|
at_syntax(pr->group_at->ad_type) );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
|
|
config_push_cleanup( c, ppolicy_group_finish );
|
|
break;
|
|
case PPOLICY_RULE_POLICY:
|
|
if ( pr->object_style != ACL_STYLE_REGEX ) {
|
|
rc = dnNormalize( 0, NULL, NULL, &c->value_bv, &ndn, NULL );
|
|
}
|
|
if ( rc == LDAP_SUCCESS ) {
|
|
pr->policy_dn = c->value_bv;
|
|
pr->policy_ndn = ndn;
|
|
}
|
|
break;
|
|
case PPOLICY_RULE_ACTION: {
|
|
int i = bverb_to_mask( &c->value_bv, selections );
|
|
if ( BER_BVISNULL( &selections[i].word ) ) {
|
|
snprintf( c->cr_msg, sizeof(c->cr_msg),
|
|
"<%s>: invalid selection configuration \"%s\"",
|
|
c->argv[0], c->value_bv.bv_val );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
return ARG_BAD_CONF;
|
|
}
|
|
} break;
|
|
|
|
default:
|
|
assert(0);
|
|
}
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
ppolicy_rule_finish( ConfigArgs *c )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
policy_rule *pr = c->ca_private, **prp;
|
|
struct berval bv;
|
|
Attribute *a;
|
|
char *p, *next;
|
|
int i;
|
|
|
|
if ( c->reply.err != LDAP_SUCCESS ) {
|
|
ppolicy_rule_free( pr );
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
/*
|
|
* TODO: It would be nice if we didn't have to extract it manually,
|
|
* relying on something like c->valx.
|
|
*/
|
|
a = attr_find( c->ca_entry->e_attrs, slap_schema.si_ad_cn );
|
|
assert( a && a->a_numvals == 1 );
|
|
bv = a->a_nvals[0];
|
|
|
|
p = strchr( bv.bv_val, '}' );
|
|
assert( p && bv.bv_val[0] == '{' );
|
|
|
|
c->valx = strtol( &bv.bv_val[1], &next, 0 );
|
|
assert( next == p && c->valx >= -1 );
|
|
|
|
for ( i = 0, prp = &pi->policy_rules;
|
|
*prp && ( c->valx < 0 || i < c->valx );
|
|
prp = &(*prp)->next, i++ )
|
|
/* advance to the desired position */ ;
|
|
pr->next = *prp;
|
|
*prp = pr;
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "%s ppolicy_rule_finish: "
|
|
"added a new rule at index %d\n",
|
|
c->ca_op->o_log_prefix, i );
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
ppolicy_rule_ldadd( CfEntryInfo *p, Entry *e, ConfigArgs *ca )
|
|
{
|
|
AttributeDescription *ad = NULL;
|
|
ObjectClass *regex_oc = oc_find( "olcPPolicyRegexRule" );
|
|
Attribute *a;
|
|
policy_rule *pr;
|
|
struct berval bv, type, rdn;
|
|
const char *text;
|
|
char *name;
|
|
|
|
Debug( LDAP_DEBUG_TRACE, "%s ppolicy_rule_ldadd: "
|
|
"a new rule is being added e=\"%s\"\n",
|
|
ca->ca_op->o_log_prefix, e->e_name.bv_val );
|
|
|
|
if ( p->ce_type != Cft_Overlay || !p->ce_bi ||
|
|
p->ce_bi->bi_cf_ocs != ppolicyocs )
|
|
return LDAP_CONSTRAINT_VIOLATION;
|
|
|
|
dnRdn( &e->e_name, &rdn );
|
|
type.bv_len = strchr( rdn.bv_val, '=' ) - rdn.bv_val;
|
|
type.bv_val = rdn.bv_val;
|
|
|
|
/* Find attr */
|
|
slap_bv2ad( &type, &ad, &text );
|
|
if ( ad != slap_schema.si_ad_cn ) return LDAP_NAMING_VIOLATION;
|
|
|
|
a = attr_find( e->e_attrs, ad );
|
|
if ( !a || a->a_numvals != 1 ) return LDAP_NAMING_VIOLATION;
|
|
bv = a->a_vals[0];
|
|
|
|
if ( bv.bv_val[0] == '{' && ( name = strchr( bv.bv_val, '}' ) ) ) {
|
|
name++;
|
|
bv.bv_len -= name - bv.bv_val;
|
|
bv.bv_val = name;
|
|
}
|
|
|
|
pr = ch_calloc( 1, sizeof(policy_rule) );
|
|
|
|
/* Set defaults based on whether this is a plain/regex rule, would be nice
|
|
* if the caller gave us the ConfigOCs pointer though */
|
|
if ( is_entry_objectclass( e, regex_oc, 0 ) ) {
|
|
pr->object_style = ACL_STYLE_REGEX;
|
|
} else {
|
|
pr->object_style = ACL_STYLE_BASE;
|
|
}
|
|
|
|
pr->group_oc = oc_find( SLAPD_GROUP_CLASS );
|
|
if ( pr->group_oc == NULL ) {
|
|
snprintf( ca->cr_msg, sizeof( ca->cr_msg ),
|
|
"<%s>: group default objectclass \"%s\" unknown",
|
|
ca->argv[0], SLAPD_GROUP_CLASS );
|
|
ch_free( pr );
|
|
return LDAP_OTHER;
|
|
}
|
|
|
|
if ( slap_str2ad( SLAPD_GROUP_ATTR, &pr->group_at, &text ) ) {
|
|
snprintf( ca->cr_msg, sizeof( ca->cr_msg ),
|
|
"group default attribute \"%s\" unknown: %s.\n",
|
|
SLAPD_GROUP_ATTR, text );
|
|
Debug( LDAP_DEBUG_ANY, "%s: %s\n", ca->log, ca->cr_msg );
|
|
ch_free( pr );
|
|
return LDAP_OTHER;
|
|
}
|
|
|
|
ca->bi = p->ce_bi;
|
|
ca->ca_entry = e;
|
|
ca->ca_private = pr;
|
|
config_push_cleanup( ca, ppolicy_rule_finish );
|
|
|
|
/* ca cleanups are only run in the case of online config but we use it to
|
|
* save the new config when done with the entry */
|
|
ca->lineno = 0;
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
static int
|
|
ppolicy_rule_lddel( CfEntryInfo *ce, Operation *op )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)ce->ce_bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
policy_rule *pr = ce->ce_private, **prp;
|
|
|
|
for ( prp = &pi->policy_rules; *prp != pr; prp = &(*prp)->next )
|
|
/* Find it */;
|
|
|
|
*prp = pr->next;
|
|
ppolicy_rule_free( pr );
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
#ifdef SLAP_CONFIG_RENAME
|
|
static int
|
|
ppolicy_rule_ldmove( CfEntryInfo *ce, Operation *op, SlapReply *rs,
|
|
int ixold, int ixnew )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)ce->ce_bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
policy_rule *pr = ce->ce_private, **prp;
|
|
int i;
|
|
|
|
for ( prp = &pi->policy_rules; *prp != pr; prp = &(*prp)->next, i++ )
|
|
/* Find removal point */;
|
|
|
|
assert( i == ixold );
|
|
|
|
*prp = pr->next;
|
|
i = 0;
|
|
|
|
for ( prp = &pi->policy_rules, i=0; i < ixnew; prp = &(*prp)->next, i++ )
|
|
/* Find insertion point */;
|
|
|
|
pr->next = *prp;
|
|
*prp = pr;
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
#endif /* SLAP_CONFIG_RENAME */
|
|
#endif /* SLAP_CONFIG_DELETE */
|
|
|
|
static int
|
|
ppolicy_cfadd( Operation *op, SlapReply *rs, Entry *p, ConfigArgs *c )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
policy_rule *pr;
|
|
struct berval bv;
|
|
int i = 0;
|
|
|
|
bv.bv_val = c->cr_msg;
|
|
|
|
for ( pr = pi->policy_rules; pr; pr = pr->next, i++ ) {
|
|
ObjectClass *oc = oc_find( "olcPPolicyScopedRule" );
|
|
ConfigOCs *coc;
|
|
Entry *e;
|
|
|
|
bv.bv_len = snprintf( c->cr_msg, sizeof(c->cr_msg),
|
|
"cn=" SLAP_X_ORDERED_FMT "rule %d", i, i );
|
|
|
|
if ( pr->object_style == ACL_STYLE_REGEX ) {
|
|
oc = oc_find( "olcPPolicyRegexRule" );
|
|
}
|
|
assert( oc );
|
|
|
|
c->ca_private = pr;
|
|
c->valx = i;
|
|
|
|
for ( coc = ppolicyocs; coc->co_type; coc++ ) {
|
|
if ( coc->co_oc == oc ) {
|
|
break;
|
|
}
|
|
}
|
|
assert( coc->co_type );
|
|
|
|
e = config_build_entry( op, rs, p->e_private, c, &bv, coc, NULL );
|
|
if ( !e ) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
#ifdef SLAPD_MODULES
|
|
static int
|
|
ppolicy_cf_checkmod( ConfigArgs *c )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)c->bi;
|
|
pp_info *pi = (pp_info *)on->on_bi.bi_private;
|
|
int rc = ARG_BAD_CONF;
|
|
|
|
assert ( c->type == PPOLICY_CHECK_MODULE );
|
|
Debug(LDAP_DEBUG_TRACE, "==> ppolicy_cf_checkmod\n" );
|
|
|
|
switch ( c->op ) {
|
|
case SLAP_CONFIG_EMIT:
|
|
if ( pi->pwdCheckModule ) {
|
|
c->value_string = ch_strdup( pi->pwdCheckModule );
|
|
rc = 0;
|
|
}
|
|
break;
|
|
case LDAP_MOD_DELETE:
|
|
if ( pi->pwdCheckHandle ) {
|
|
lt_dlclose( pi->pwdCheckHandle );
|
|
pi->pwdCheckHandle = NULL;
|
|
pi->pwdCheckFunc = NULL;
|
|
}
|
|
ch_free( pi->pwdCheckModule );
|
|
pi->pwdCheckModule = NULL;
|
|
rc = 0;
|
|
break;
|
|
case SLAP_CONFIG_ADD:
|
|
/* fallthru to LDAP_MOD_ADD */
|
|
case LDAP_MOD_ADD:
|
|
pi->pwdCheckHandle = lt_dlopen( c->value_string );
|
|
if ( pi->pwdCheckHandle == NULL ) {
|
|
const char *dlerr = lt_dlerror();
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> lt_dlopen(%s) failed: %s",
|
|
c->argv[0], c->value_string, dlerr );
|
|
Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
} else {
|
|
if (( pi->pwdCheckFunc = lt_dlsym( pi->pwdCheckHandle, "check_password" )) == NULL) {
|
|
const char *dlerr = lt_dlerror();
|
|
snprintf( c->cr_msg, sizeof( c->cr_msg ), "<%s> lt_dlsym(%s) failed: %s",
|
|
c->argv[0], c->value_string, dlerr );
|
|
Debug(LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg );
|
|
} else {
|
|
pi->pwdCheckModule = c->value_string;
|
|
rc = 0;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
abort ();
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
#endif /* SLAPD_MODULES */
|
|
|
|
static time_t
|
|
parse_time( char *atm )
|
|
{
|
|
struct lutil_tm tm;
|
|
struct lutil_timet tt;
|
|
time_t ret = (time_t)-1;
|
|
|
|
if ( lutil_parsetime( atm, &tm ) == 0) {
|
|
lutil_tm2time( &tm, &tt );
|
|
ret = tt.tt_sec;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static int
|
|
account_locked( Operation *op, Entry *e,
|
|
PassPolicy *pp, Modifications **mod )
|
|
{
|
|
Attribute *la;
|
|
|
|
if ( (la = attr_find( e->e_attrs, ad_pwdStartTime )) != NULL ) {
|
|
BerVarray vals = la->a_nvals;
|
|
time_t then, now = op->o_time;
|
|
|
|
/*
|
|
* Password has a defined start of validity
|
|
*/
|
|
if ( vals[0].bv_val != NULL ) {
|
|
if ( (then = parse_time( vals[0].bv_val )) == (time_t)-1 ) {
|
|
return 1;
|
|
}
|
|
if ( now < then ) {
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( (la = attr_find( e->e_attrs, ad_pwdEndTime )) != NULL ) {
|
|
BerVarray vals = la->a_nvals;
|
|
time_t then, now = op->o_time;
|
|
|
|
/*
|
|
* Password has a defined end of validity
|
|
*/
|
|
if ( vals[0].bv_val != NULL ) {
|
|
if ( (then = parse_time( vals[0].bv_val )) == (time_t)-1 ) {
|
|
return 1;
|
|
}
|
|
if ( then <= now ) {
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( !pp->pwdLockout )
|
|
return 0;
|
|
|
|
if ( (la = attr_find( e->e_attrs, ad_pwdAccountTmpLockoutEnd )) != NULL ) {
|
|
BerVarray vals = la->a_nvals;
|
|
time_t then, now = op->o_time;
|
|
|
|
/*
|
|
* We have temporarily locked the account after a failure
|
|
*/
|
|
if ( vals[0].bv_val != NULL ) {
|
|
if ( (then = parse_time( vals[0].bv_val )) == (time_t)-1 ) {
|
|
return 1;
|
|
}
|
|
if ( now < then ) {
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Only check if database maintains lastbind */
|
|
if ( pp->pwdMaxIdle && SLAP_LASTBIND( op->o_bd ) ) {
|
|
time_t lastbindtime = (time_t)-1;
|
|
|
|
la = attr_find( e->e_attrs, ad_pwdLastSuccess );
|
|
if ( la == NULL ) {
|
|
la = attr_find( e->e_attrs, ad_pwdChangedTime );
|
|
}
|
|
if ( la != NULL ) {
|
|
lastbindtime = parse_time( la->a_nvals[0].bv_val );
|
|
}
|
|
|
|
if ( lastbindtime != (time_t)-1 &&
|
|
op->o_time > lastbindtime + pp->pwdMaxIdle ) {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
if ( (la = attr_find( e->e_attrs, ad_pwdAccountLockedTime )) != NULL ) {
|
|
BerVarray vals = la->a_nvals;
|
|
|
|
/*
|
|
* there is a lockout stamp - we now need to know if it's
|
|
* a valid one.
|
|
*/
|
|
if (vals[0].bv_val != NULL) {
|
|
time_t then, now;
|
|
Modifications *m;
|
|
|
|
if ((then = parse_time( vals[0].bv_val )) == (time_t)0)
|
|
return 1;
|
|
|
|
now = slap_get_time();
|
|
|
|
/* Still in the future? not yet in effect */
|
|
if (now < then)
|
|
return 0;
|
|
|
|
if (!pp->pwdLockoutDuration)
|
|
return 1;
|
|
|
|
if (now < then + pp->pwdLockoutDuration)
|
|
return 1;
|
|
|
|
if ( mod != NULL ) {
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_DELETE;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdAccountLockedTime->ad_cname;
|
|
m->sml_desc = ad_pwdAccountLockedTime;
|
|
m->sml_next = *mod;
|
|
*mod = m;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* IMPLICIT TAGS, all context-specific */
|
|
#define PPOLICY_WARNING 0xa0L /* constructed + 0 */
|
|
#define PPOLICY_ERROR 0x81L /* primitive + 1 */
|
|
|
|
#define PPOLICY_EXPIRE 0x80L /* primitive + 0 */
|
|
#define PPOLICY_GRACE 0x81L /* primitive + 1 */
|
|
|
|
static const char ppolicy_ctrl_oid[] = LDAP_CONTROL_PASSWORDPOLICYRESPONSE;
|
|
static const char ppolicy_account_ctrl_oid[] = LDAP_CONTROL_X_ACCOUNT_USABILITY;
|
|
static const char ppolicy_pwd_expired_oid[] = LDAP_CONTROL_X_PASSWORD_EXPIRED;
|
|
static const char ppolicy_pwd_expiring_oid[] = LDAP_CONTROL_X_PASSWORD_EXPIRING;
|
|
|
|
static LDAPControl *
|
|
create_passcontrol( Operation *op, int exptime, int grace, LDAPPasswordPolicyError err )
|
|
{
|
|
BerElementBuffer berbuf, bb2;
|
|
BerElement *ber = (BerElement *) &berbuf, *b2 = (BerElement *) &bb2;
|
|
LDAPControl c = { 0 }, *cp;
|
|
struct berval bv;
|
|
int rc;
|
|
|
|
BER_BVZERO( &c.ldctl_value );
|
|
|
|
ber_init2( ber, NULL, LBER_USE_DER );
|
|
ber_printf( ber, "{" /*}*/ );
|
|
|
|
if ( exptime >= 0 ) {
|
|
ber_init2( b2, NULL, LBER_USE_DER );
|
|
ber_printf( b2, "ti", PPOLICY_EXPIRE, exptime );
|
|
rc = ber_flatten2( b2, &bv, 1 );
|
|
(void)ber_free_buf(b2);
|
|
if (rc == -1) {
|
|
cp = NULL;
|
|
goto fail;
|
|
}
|
|
ber_printf( ber, "tO", PPOLICY_WARNING, &bv );
|
|
ch_free( bv.bv_val );
|
|
} else if ( grace >= 0 ) {
|
|
ber_init2( b2, NULL, LBER_USE_DER );
|
|
ber_printf( b2, "ti", PPOLICY_GRACE, grace );
|
|
rc = ber_flatten2( b2, &bv, 1 );
|
|
(void)ber_free_buf(b2);
|
|
if (rc == -1) {
|
|
cp = NULL;
|
|
goto fail;
|
|
}
|
|
ber_printf( ber, "tO", PPOLICY_WARNING, &bv );
|
|
ch_free( bv.bv_val );
|
|
}
|
|
|
|
if (err != PP_noError ) {
|
|
ber_printf( ber, "te", PPOLICY_ERROR, err );
|
|
}
|
|
ber_printf( ber, /*{*/ "N}" );
|
|
|
|
if (ber_flatten2( ber, &c.ldctl_value, 0 ) == -1) {
|
|
return NULL;
|
|
}
|
|
cp = op->o_tmpalloc( sizeof( LDAPControl ) + c.ldctl_value.bv_len, op->o_tmpmemctx );
|
|
cp->ldctl_oid = (char *)ppolicy_ctrl_oid;
|
|
cp->ldctl_iscritical = 0;
|
|
cp->ldctl_value.bv_val = (char *)&cp[1];
|
|
cp->ldctl_value.bv_len = c.ldctl_value.bv_len;
|
|
AC_MEMCPY( cp->ldctl_value.bv_val, c.ldctl_value.bv_val, c.ldctl_value.bv_len );
|
|
fail:
|
|
(void)ber_free_buf(ber);
|
|
|
|
return cp;
|
|
}
|
|
|
|
static LDAPControl *
|
|
create_passexpiry( Operation *op, int expired, int warn )
|
|
{
|
|
LDAPControl *cp;
|
|
char buf[sizeof("-2147483648")];
|
|
struct berval bv = { .bv_val = buf, .bv_len = sizeof(buf) };
|
|
|
|
bv.bv_len = snprintf( bv.bv_val, bv.bv_len, "%d", warn );
|
|
|
|
cp = op->o_tmpalloc( sizeof( LDAPControl ) + bv.bv_len, op->o_tmpmemctx );
|
|
if ( expired ) {
|
|
cp->ldctl_oid = (char *)ppolicy_pwd_expired_oid;
|
|
} else {
|
|
cp->ldctl_oid = (char *)ppolicy_pwd_expiring_oid;
|
|
}
|
|
cp->ldctl_iscritical = 0;
|
|
cp->ldctl_value.bv_val = (char *)&cp[1];
|
|
cp->ldctl_value.bv_len = bv.bv_len;
|
|
AC_MEMCPY( cp->ldctl_value.bv_val, bv.bv_val, bv.bv_len );
|
|
return cp;
|
|
}
|
|
|
|
static int
|
|
add_account_control(
|
|
Operation *op,
|
|
SlapReply *rs,
|
|
int available,
|
|
int remaining,
|
|
LDAPAccountUsabilityMoreInfo *more_info )
|
|
{
|
|
BerElementBuffer berbuf;
|
|
BerElement *ber = (BerElement *) &berbuf;
|
|
LDAPControl c = { 0 }, *ctrl;
|
|
int rc = -1;
|
|
|
|
BER_BVZERO( &c.ldctl_value );
|
|
|
|
ber_init2( ber, NULL, LBER_USE_DER );
|
|
|
|
if ( available ) {
|
|
ber_put_int( ber, remaining, LDAP_TAG_X_ACCOUNT_USABILITY_AVAILABLE );
|
|
} else {
|
|
assert( more_info != NULL );
|
|
|
|
ber_start_seq( ber, LDAP_TAG_X_ACCOUNT_USABILITY_NOT_AVAILABLE );
|
|
ber_put_boolean( ber, more_info->inactive, LDAP_TAG_X_ACCOUNT_USABILITY_INACTIVE );
|
|
ber_put_boolean( ber, more_info->reset, LDAP_TAG_X_ACCOUNT_USABILITY_RESET );
|
|
ber_put_boolean( ber, more_info->expired, LDAP_TAG_X_ACCOUNT_USABILITY_EXPIRED );
|
|
ber_put_int( ber, more_info->remaining_grace, LDAP_TAG_X_ACCOUNT_USABILITY_REMAINING_GRACE );
|
|
ber_put_int( ber, more_info->seconds_before_unlock, LDAP_TAG_X_ACCOUNT_USABILITY_UNTIL_UNLOCK );
|
|
ber_put_seq( ber );
|
|
}
|
|
|
|
if (ber_flatten2( ber, &c.ldctl_value, 0 ) == -1) {
|
|
goto fail;
|
|
}
|
|
|
|
ctrl = op->o_tmpalloc( sizeof( LDAPControl ) + c.ldctl_value.bv_len, op->o_tmpmemctx );
|
|
if ( !ctrl ) {
|
|
goto fail;
|
|
}
|
|
|
|
ctrl->ldctl_oid = (char *)ppolicy_account_ctrl_oid;
|
|
ctrl->ldctl_iscritical = 0;
|
|
ctrl->ldctl_value.bv_val = (char *)&ctrl[1];
|
|
ctrl->ldctl_value.bv_len = c.ldctl_value.bv_len;
|
|
AC_MEMCPY( ctrl->ldctl_value.bv_val, c.ldctl_value.bv_val, c.ldctl_value.bv_len );
|
|
|
|
slap_add_ctrl( op, rs, ctrl );
|
|
|
|
rc = LDAP_SUCCESS;
|
|
fail:
|
|
(void)ber_free_buf(ber);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static int
|
|
ppolicy_operational( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
pp_info *pi = on->on_bi.bi_private;
|
|
Entry *e = rs->sr_entry;
|
|
int have_password = 0;
|
|
|
|
/* This allows clients to find out if there's a value stored directly in
|
|
* the DB (and syncrepl clients not to commit our generated copy), callers
|
|
* need to make sure they don't copy the control from their op if they need
|
|
* it resolved anyway */
|
|
if ( op->o_managedsait != SLAP_CONTROL_NONE )
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
/* No entry or attribute already set? Nothing to do */
|
|
if ( !e || attr_find( e->e_attrs, ad_pwdPolicySubentry ) )
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
/* TODO: When we support different pwdAttribute values, move this into the
|
|
* loop */
|
|
if ( attr_find( e->e_attrs, slap_schema.si_ad_userPassword ) )
|
|
have_password = 1;
|
|
|
|
if ( SLAP_OPATTRS( rs->sr_attr_flags ) ||
|
|
ad_inlist( ad_pwdPolicySubentry, rs->sr_attrs )) {
|
|
struct berval value = BER_BVNULL;
|
|
Attribute *a, **ap = NULL;
|
|
policy_rule *pr;
|
|
int freeval = 0, matched = 0;
|
|
AclRegexMatches *matches = op->o_tmpalloc(
|
|
sizeof(AclRegexMatches), op->o_tmpmemctx );
|
|
|
|
for ( pr = pi->policy_rules; pr; pr = pr->next ) {
|
|
int freendn = 0;
|
|
struct berval policy_ndn = BER_BVNULL;
|
|
|
|
if ( pr->require_password && !have_password ) {
|
|
goto skip;
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &pr->object_pat ) ) {
|
|
if ( pr->object_style == ACL_STYLE_REGEX ) {
|
|
Debug( LDAP_DEBUG_TRACE, "ppolicy_operational: %s nsub: %d\n",
|
|
pr->object_pat.bv_val, (int)pr->object_regex.re_nsub );
|
|
|
|
memset( matches, 0, sizeof(AclRegexMatches) );
|
|
matches->dn_count = sizeof(matches->dn_data) / sizeof(matches->dn_data[0]);
|
|
|
|
if ( regexec( &pr->object_regex, e->e_ndn,
|
|
matches->dn_count, matches->dn_data, 0 ) != 0 ) {
|
|
goto skip;
|
|
}
|
|
} else {
|
|
int scope = LDAP_SCOPE_BASE;
|
|
|
|
switch ( pr->object_style ) {
|
|
case ACL_STYLE_BASE:
|
|
scope = LDAP_SCOPE_BASE;
|
|
break;
|
|
case ACL_STYLE_SUBTREE:
|
|
scope = LDAP_SCOPE_SUBTREE;
|
|
break;
|
|
case ACL_STYLE_ONE:
|
|
scope = LDAP_SCOPE_ONE;
|
|
break;
|
|
case ACL_STYLE_CHILDREN:
|
|
scope = LDAP_SCOPE_CHILDREN;
|
|
break;
|
|
default:
|
|
assert(0);
|
|
}
|
|
if ( !dnIsSuffixScope( &e->e_nname, &pr->object_ndn, scope ) ) {
|
|
goto skip;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( !BER_BVISNULL( &pr->group_pat ) ) {
|
|
char buffer[1024];
|
|
struct berval ndn, dn = BER_BVC(buffer);
|
|
|
|
if ( pr->group_style == ACL_STYLE_EXPAND ) {
|
|
if ( acl_string_expand( &dn, &pr->group_pat,
|
|
&e->e_nname, NULL, matches ) ) {
|
|
goto skip;
|
|
} else if ( dnNormalize( 0, NULL, NULL, &dn, &ndn,
|
|
op->o_tmpmemctx ) != LDAP_SUCCESS )
|
|
{
|
|
/* did not expand to a valid dn */
|
|
BER_BVZERO( &ndn );
|
|
goto skip;
|
|
}
|
|
} else {
|
|
ndn = pr->group_ndn;
|
|
}
|
|
|
|
if ( backend_group( op, e, &ndn, &e->e_nname, pr->group_oc,
|
|
pr->group_at ) ) {
|
|
goto skip;
|
|
}
|
|
if ( pr->group_style == ACL_STYLE_EXPAND &&
|
|
!BER_BVISNULL( &ndn ) ) {
|
|
op->o_tmpfree( ndn.bv_val, op->o_tmpmemctx );
|
|
}
|
|
}
|
|
|
|
if ( pr->filter &&
|
|
test_filter( NULL, e, pr->filter ) != LDAP_COMPARE_TRUE ) {
|
|
goto skip;
|
|
}
|
|
|
|
/* entry matches criteria, construct policy dn if necessary */
|
|
if ( pr->policy_dn_style == ACL_STYLE_EXPAND ) {
|
|
char buffer[1024];
|
|
struct berval dn = BER_BVC(buffer);
|
|
|
|
if ( acl_string_expand( &dn, &pr->policy_dn,
|
|
&e->e_nname, NULL, matches ) ) {
|
|
goto skip;
|
|
} else if ( dnNormalize( 0, NULL, NULL, &dn, &policy_ndn,
|
|
op->o_tmpmemctx ) != LDAP_SUCCESS )
|
|
{
|
|
/* did not expand to a valid dn */
|
|
goto skip;
|
|
} else {
|
|
freendn = 1;
|
|
}
|
|
} else {
|
|
policy_ndn = pr->policy_ndn;
|
|
}
|
|
|
|
/* Check such a policy entry actually exists */
|
|
if ( !BER_BVISNULL( &policy_ndn ) ) {
|
|
BackendDB *bd, *bd_orig = op->o_bd;
|
|
Entry *pe = NULL;
|
|
|
|
op->o_bd = bd = select_backend( &policy_ndn, 0 );
|
|
if ( op->o_bd && be_entry_get_rw( op, &policy_ndn,
|
|
oc_pwdPolicy, NULL, 0, &pe ) == LDAP_SUCCESS ) {
|
|
ber_bvreplace( &value, &pe->e_nname );
|
|
be_entry_release_r( op, pe );
|
|
} else {
|
|
op->o_bd = bd_orig;
|
|
goto skip;
|
|
}
|
|
op->o_bd = bd_orig;
|
|
}
|
|
|
|
matched = 1;
|
|
if ( pr->action == POLICY_RULE_STOP ) {
|
|
pr = NULL;
|
|
}
|
|
skip:
|
|
if ( freendn ) {
|
|
op->o_tmpfree( policy_ndn.bv_val, op->o_tmpmemctx );
|
|
}
|
|
if ( !pr ) break;
|
|
}
|
|
|
|
op->o_tmpfree( matches, op->o_tmpmemctx );
|
|
if ( matched ) {
|
|
freeval = 1;
|
|
} else if ( have_password ) {
|
|
value = pi->def_policy;
|
|
}
|
|
|
|
if ( BER_BVISNULL( &value ) ) {
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
a = attr_alloc( ad_pwdPolicySubentry );
|
|
attr_valadd( a, &value, &value, 1 );
|
|
|
|
for ( ap = &rs->sr_operational_attrs; *ap; ap=&(*ap)->a_next );
|
|
*ap = a;
|
|
|
|
if ( freeval ) {
|
|
ch_free( value.bv_val );
|
|
}
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static void
|
|
ppolicy_get_default( PassPolicy *pp )
|
|
{
|
|
memset( pp, 0, sizeof(PassPolicy) );
|
|
|
|
pp->ad = slap_schema.si_ad_userPassword;
|
|
|
|
/* Users can change their own password by default */
|
|
pp->pwdAllowUserChange = 1;
|
|
}
|
|
|
|
|
|
static int
|
|
ppolicy_get( Operation *op, Entry *e, PassPolicy *pp )
|
|
{
|
|
BackendDB *bd, *bd_orig = op->o_bd;
|
|
AttributeDescription *ad = NULL;
|
|
Attribute *a;
|
|
BerVarray vals = NULL;
|
|
int freeval = 0, rc = LDAP_SUCCESS;
|
|
Entry *pe = NULL;
|
|
|
|
ppolicy_get_default( pp );
|
|
|
|
ad = ad_pwdPolicySubentry;
|
|
if ( (a = attr_find( e->e_attrs, ad )) == NULL ) {
|
|
/* This could be an Add, make sure we pass the entry in */
|
|
rc = backend_attribute( op, e, &op->o_req_ndn,
|
|
ad_pwdPolicySubentry, &vals, ACL_NONE );
|
|
if ( rc || vals == NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "ppolicy_get: "
|
|
"got rc=%d getting value for policySubEntry\n", rc );
|
|
goto defaultpol;
|
|
}
|
|
freeval = 1;
|
|
} else {
|
|
vals = a->a_nvals;
|
|
if (vals[0].bv_val == NULL) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"ppolicy_get: NULL value for policySubEntry\n" );
|
|
goto defaultpol;
|
|
}
|
|
}
|
|
|
|
op->o_bd = bd = select_backend( vals, 0 );
|
|
if ( op->o_bd == NULL ) {
|
|
op->o_bd = bd_orig;
|
|
goto defaultpol;
|
|
}
|
|
|
|
rc = be_entry_get_rw( op, vals, oc_pwdPolicy, NULL, 0, &pe );
|
|
op->o_bd = bd_orig;
|
|
|
|
if ( rc ) goto defaultpol;
|
|
|
|
#if 0 /* Only worry about userPassword for now */
|
|
if ((a = attr_find( pe->e_attrs, ad_pwdAttribute )))
|
|
slap_bv2ad( &a->a_vals[0], &pp->ad, &text );
|
|
#endif
|
|
|
|
ad = ad_pwdMinAge;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMinAge, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxAge;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxAge, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxIdle;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxIdle, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdInHistory;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdInHistory, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdCheckQuality;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdCheckQuality, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMinLength;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMinLength, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxLength;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxLength, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxFailure;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxFailure, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxRecordedFailure;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxRecordedFailure, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdGraceExpiry;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdGraceExpiry, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdGraceAuthNLimit;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdGraceAuthNLimit, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdExpireWarning;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdExpireWarning, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdFailureCountInterval;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdFailureCountInterval, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdLockoutDuration;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdLockoutDuration, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMinDelay;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMinDelay, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
ad = ad_pwdMaxDelay;
|
|
if ( (a = attr_find( pe->e_attrs, ad ))
|
|
&& lutil_atoi( &pp->pwdMaxDelay, a->a_vals[0].bv_val ) != 0 ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
goto defaultpol;
|
|
}
|
|
|
|
if ( is_entry_objectclass_or_sub( pe, oc_pwdPolicyChecker ) ) {
|
|
ad = ad_pwdCheckModule;
|
|
if ( attr_find( pe->e_attrs, ad )) {
|
|
Debug( LDAP_DEBUG_ANY, "ppolicy_get: "
|
|
"WARNING: Ignoring OBSOLETE attribute %s in policy %s.\n",
|
|
ad->ad_cname.bv_val, pe->e_name.bv_val );
|
|
}
|
|
|
|
ad = ad_pwdUseCheckModule;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) )
|
|
pp->pwdUseCheckModule = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
|
|
|
ad = ad_pwdCheckModuleArg;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) ) {
|
|
ber_dupbv_x( &pp->pwdCheckModuleArg, &a->a_vals[0], op->o_tmpmemctx );
|
|
}
|
|
}
|
|
|
|
ad = ad_pwdLockout;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) )
|
|
pp->pwdLockout = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
|
|
|
ad = ad_pwdMustChange;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) )
|
|
pp->pwdMustChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
|
|
|
ad = ad_pwdAllowUserChange;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) )
|
|
pp->pwdAllowUserChange = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
|
|
|
ad = ad_pwdSafeModify;
|
|
if ( (a = attr_find( pe->e_attrs, ad )) )
|
|
pp->pwdSafeModify = bvmatch( &a->a_nvals[0], &slap_true_bv );
|
|
|
|
if ( pp->pwdMaxRecordedFailure < pp->pwdMaxFailure )
|
|
pp->pwdMaxRecordedFailure = pp->pwdMaxFailure;
|
|
|
|
if ( !pp->pwdMaxRecordedFailure && pp->pwdMinDelay )
|
|
pp->pwdMaxRecordedFailure = PPOLICY_DEFAULT_MAXRECORDED_FAILURE;
|
|
|
|
if ( pp->pwdMinDelay && !pp->pwdMaxDelay ) {
|
|
Debug( LDAP_DEBUG_ANY, "ppolicy_get: "
|
|
"pwdMinDelay was set but pwdMaxDelay wasn't, assuming they "
|
|
"are equal\n" );
|
|
pp->pwdMaxDelay = pp->pwdMinDelay;
|
|
}
|
|
|
|
op->o_bd = bd;
|
|
be_entry_release_r( op, pe );
|
|
op->o_bd = bd_orig;
|
|
|
|
if ( freeval )
|
|
ber_bvarray_free_x( vals, op->o_tmpmemctx );
|
|
return LDAP_SUCCESS;
|
|
|
|
defaultpol:
|
|
if ( pe ) {
|
|
op->o_bd = bd;
|
|
be_entry_release_r( op, pe );
|
|
op->o_bd = bd_orig;
|
|
}
|
|
|
|
if ( rc && vals && !BER_BVISNULL( vals ) ) {
|
|
Debug( LDAP_DEBUG_ANY, "ppolicy_get: "
|
|
"policy subentry %s missing or invalid at '%s', "
|
|
"no policy will be applied!\n",
|
|
vals->bv_val, ad ? ad->ad_cname.bv_val : "" );
|
|
} else {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ppolicy_get: using empty policy\n" );
|
|
}
|
|
|
|
if ( freeval )
|
|
ber_bvarray_free_x( vals, op->o_tmpmemctx );
|
|
ppolicy_get_default( pp );
|
|
|
|
return -1;
|
|
}
|
|
|
|
static int
|
|
password_scheme( struct berval *cred, struct berval *sch )
|
|
{
|
|
int e;
|
|
|
|
assert( cred != NULL );
|
|
|
|
if (sch) {
|
|
sch->bv_val = NULL;
|
|
sch->bv_len = 0;
|
|
}
|
|
|
|
if ((cred->bv_len == 0) || (cred->bv_val == NULL) ||
|
|
(cred->bv_val[0] != '{')) return LDAP_OTHER;
|
|
|
|
for(e = 1; cred->bv_val[e] && cred->bv_val[e] != '}'; e++);
|
|
if (cred->bv_val[e]) {
|
|
int rc;
|
|
rc = lutil_passwd_scheme( cred->bv_val );
|
|
if (rc) {
|
|
if (sch) {
|
|
sch->bv_val = cred->bv_val;
|
|
sch->bv_len = e;
|
|
}
|
|
return LDAP_SUCCESS;
|
|
}
|
|
}
|
|
return LDAP_OTHER;
|
|
}
|
|
|
|
static int
|
|
check_password_quality( struct berval *cred, pp_info *pi, PassPolicy *pp, LDAPPasswordPolicyError *err,
|
|
Entry *e, struct berval *errmsg )
|
|
{
|
|
int rc = LDAP_SUCCESS, ok = LDAP_SUCCESS;
|
|
char *ptr;
|
|
struct berval sch;
|
|
|
|
assert( cred != NULL );
|
|
assert( pp != NULL );
|
|
assert( errmsg != NULL );
|
|
|
|
ptr = errmsg->bv_val;
|
|
*ptr = '\0';
|
|
|
|
ptr = cred->bv_val;
|
|
|
|
if ((cred->bv_len == 0) || (pp->pwdMinLength > cred->bv_len)) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
if ( err ) *err = PP_passwordTooShort;
|
|
return rc;
|
|
}
|
|
|
|
if ( pp->pwdMaxLength && cred->bv_len > pp->pwdMaxLength ) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
if ( err ) *err = PP_passwordTooLong;
|
|
return rc;
|
|
}
|
|
|
|
/*
|
|
* We need to know if the password is already hashed - if so
|
|
* what scheme is it. The reason being that the "hash" of
|
|
* {cleartext} still allows us to check the password.
|
|
*/
|
|
rc = password_scheme( cred, &sch );
|
|
if (rc == LDAP_SUCCESS) {
|
|
if ((sch.bv_val) && (strncasecmp( sch.bv_val, "{cleartext}",
|
|
sch.bv_len ) == 0)) {
|
|
/*
|
|
* We can check the cleartext "hash"
|
|
*/
|
|
ptr = cred->bv_val + sch.bv_len;
|
|
} else {
|
|
/* everything else, we can't check */
|
|
if (pp->pwdCheckQuality == 2) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
if (err) *err = PP_insufficientPasswordQuality;
|
|
return rc;
|
|
}
|
|
/*
|
|
* We can't check the syntax of the password, but it's not
|
|
* mandatory (according to the policy), so we return success.
|
|
*/
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
}
|
|
|
|
rc = LDAP_SUCCESS;
|
|
|
|
if (pp->pwdUseCheckModule) {
|
|
#ifdef SLAPD_MODULES
|
|
check_func *prog;
|
|
|
|
if ( !pi->pwdCheckFunc ) {
|
|
Debug(LDAP_DEBUG_ANY,
|
|
"check_password_quality: no CheckModule loaded\n" );
|
|
ok = LDAP_OTHER;
|
|
} else {
|
|
struct berval *arg = NULL;
|
|
if ( !BER_BVISNULL( &pp->pwdCheckModuleArg ) ) {
|
|
arg = &pp->pwdCheckModuleArg;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_lock( &chk_syntax_mutex );
|
|
ok = pi->pwdCheckFunc( ptr, errmsg, e, arg );
|
|
ldap_pvt_thread_mutex_unlock( &chk_syntax_mutex );
|
|
if (ok != LDAP_SUCCESS) {
|
|
Debug(LDAP_DEBUG_ANY,
|
|
"check_password_quality: module error: (%s) %s.[%d]\n",
|
|
pi->pwdCheckModule, errmsg->bv_val ? errmsg->bv_val : "", ok );
|
|
}
|
|
}
|
|
#else
|
|
Debug(LDAP_DEBUG_ANY, "check_password_quality: external modules not "
|
|
"supported. pwdCheckModule ignored.\n" );
|
|
#endif /* SLAPD_MODULES */
|
|
}
|
|
|
|
if (ok != LDAP_SUCCESS) {
|
|
rc = LDAP_CONSTRAINT_VIOLATION;
|
|
if (err) *err = PP_insufficientPasswordQuality;
|
|
}
|
|
|
|
return rc;
|
|
}
|
|
|
|
static int
|
|
parse_pwdhistory( struct berval *bv, char **oid, time_t *oldtime, struct berval *oldpw )
|
|
{
|
|
char *ptr;
|
|
struct berval nv, npw;
|
|
ber_len_t i, j;
|
|
|
|
assert (bv && (bv->bv_len > 0) && (bv->bv_val) && oldtime && oldpw );
|
|
|
|
if ( oid ) {
|
|
*oid = 0;
|
|
}
|
|
*oldtime = (time_t)-1;
|
|
BER_BVZERO( oldpw );
|
|
|
|
ber_dupbv( &nv, bv );
|
|
|
|
/* first get the time field */
|
|
for ( i = 0; (i < nv.bv_len) && (nv.bv_val[i] != '#'); i++ )
|
|
;
|
|
if ( i == nv.bv_len ) {
|
|
goto exit_failure; /* couldn't locate the '#' separator */
|
|
}
|
|
nv.bv_val[i++] = '\0'; /* terminate the string & move to next field */
|
|
ptr = nv.bv_val;
|
|
*oldtime = parse_time( ptr );
|
|
if (*oldtime == (time_t)-1) {
|
|
goto exit_failure;
|
|
}
|
|
|
|
/* get the OID field */
|
|
for (ptr = &(nv.bv_val[i]); (i < nv.bv_len) && (nv.bv_val[i] != '#'); i++ )
|
|
;
|
|
if ( i == nv.bv_len ) {
|
|
goto exit_failure; /* couldn't locate the '#' separator */
|
|
}
|
|
nv.bv_val[i++] = '\0'; /* terminate the string & move to next field */
|
|
if ( oid ) {
|
|
*oid = ber_strdup( ptr );
|
|
}
|
|
|
|
/* get the length field */
|
|
for ( ptr = &(nv.bv_val[i]); (i < nv.bv_len) && (nv.bv_val[i] != '#'); i++ )
|
|
;
|
|
if ( i == nv.bv_len ) {
|
|
goto exit_failure; /* couldn't locate the '#' separator */
|
|
}
|
|
nv.bv_val[i++] = '\0'; /* terminate the string & move to next field */
|
|
oldpw->bv_len = strtol( ptr, NULL, 10 );
|
|
if (errno == ERANGE) {
|
|
goto exit_failure;
|
|
}
|
|
|
|
/* lastly, get the octets of the string */
|
|
for ( j = i, ptr = &(nv.bv_val[i]); i < nv.bv_len; i++ )
|
|
;
|
|
if ( i - j != oldpw->bv_len) {
|
|
goto exit_failure; /* length is wrong */
|
|
}
|
|
|
|
npw.bv_val = ptr;
|
|
npw.bv_len = oldpw->bv_len;
|
|
ber_dupbv( oldpw, &npw );
|
|
ber_memfree( nv.bv_val );
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
exit_failure:;
|
|
if ( oid && *oid ) {
|
|
ber_memfree(*oid);
|
|
*oid = NULL;
|
|
}
|
|
if ( oldpw->bv_val ) {
|
|
ber_memfree( oldpw->bv_val);
|
|
BER_BVZERO( oldpw );
|
|
}
|
|
ber_memfree( nv.bv_val );
|
|
|
|
return LDAP_OTHER;
|
|
}
|
|
|
|
static void
|
|
add_to_pwd_history( pw_hist **l, time_t t,
|
|
struct berval *oldpw, struct berval *bv )
|
|
{
|
|
pw_hist *p, *p1, *p2;
|
|
|
|
if (!l) return;
|
|
|
|
p = ch_malloc( sizeof( pw_hist ));
|
|
p->pw = *oldpw;
|
|
ber_dupbv( &p->bv, bv );
|
|
p->t = t;
|
|
p->next = NULL;
|
|
|
|
if (*l == NULL) {
|
|
/* degenerate case */
|
|
*l = p;
|
|
return;
|
|
}
|
|
/*
|
|
* advance p1 and p2 such that p1 is the node before the
|
|
* new one, and p2 is the node after it
|
|
*/
|
|
for (p1 = NULL, p2 = *l; p2 && p2->t <= t; p1 = p2, p2=p2->next );
|
|
p->next = p2;
|
|
if (p1 == NULL) { *l = p; return; }
|
|
p1->next = p;
|
|
}
|
|
|
|
#ifndef MAX_PWD_HISTORY_SZ
|
|
#define MAX_PWD_HISTORY_SZ 1024
|
|
#endif /* MAX_PWD_HISTORY_SZ */
|
|
|
|
static void
|
|
make_pwd_history_value( char *timebuf, struct berval *bv, Attribute *pa )
|
|
{
|
|
char str[ MAX_PWD_HISTORY_SZ ];
|
|
int nlen;
|
|
|
|
snprintf( str, MAX_PWD_HISTORY_SZ,
|
|
"%s#%s#%lu#", timebuf,
|
|
pa->a_desc->ad_type->sat_syntax->ssyn_oid,
|
|
(unsigned long) pa->a_nvals[0].bv_len );
|
|
str[MAX_PWD_HISTORY_SZ-1] = 0;
|
|
nlen = strlen(str);
|
|
|
|
/*
|
|
* We have to assume that the string is a string of octets,
|
|
* not readable characters. In reality, yes, it probably is
|
|
* a readable (ie, base64) string, but we can't count on that
|
|
* Hence, while the first 3 fields of the password history
|
|
* are definitely readable (a timestamp, an OID and an integer
|
|
* length), the remaining octets of the actual password
|
|
* are deemed to be binary data.
|
|
*/
|
|
AC_MEMCPY( str + nlen, pa->a_nvals[0].bv_val, pa->a_nvals[0].bv_len );
|
|
nlen += pa->a_nvals[0].bv_len;
|
|
bv->bv_val = ch_malloc( nlen + 1 );
|
|
AC_MEMCPY( bv->bv_val, str, nlen );
|
|
bv->bv_val[nlen] = '\0';
|
|
bv->bv_len = nlen;
|
|
}
|
|
|
|
static void
|
|
free_pwd_history_list( pw_hist **l )
|
|
{
|
|
pw_hist *p;
|
|
|
|
if (!l) return;
|
|
p = *l;
|
|
while (p) {
|
|
pw_hist *pp = p->next;
|
|
|
|
free(p->pw.bv_val);
|
|
free(p->bv.bv_val);
|
|
free(p);
|
|
p = pp;
|
|
}
|
|
*l = NULL;
|
|
}
|
|
|
|
typedef struct ppbind {
|
|
pp_info *pi;
|
|
BackendDB *be;
|
|
int send_ctrl;
|
|
int set_restrict;
|
|
Modifications *mod;
|
|
LDAPPasswordPolicyError pErr;
|
|
PassPolicy pp;
|
|
} ppbind;
|
|
|
|
static int ppolicy_account_usability_entry_cb( Operation *op, SlapReply *rs );
|
|
|
|
static int
|
|
ppolicy_ctrls_cleanup( Operation *op, SlapReply *rs )
|
|
{
|
|
int n;
|
|
|
|
assert( rs->sr_ctrls != NULL );
|
|
assert( rs->sr_ctrls[0] != NULL );
|
|
|
|
for ( n = 0; rs->sr_ctrls[n]; n++ ) {
|
|
/* We only add one control */
|
|
if ( rs->sr_ctrls[n]->ldctl_oid == ppolicy_ctrl_oid ||
|
|
rs->sr_ctrls[n]->ldctl_oid == ppolicy_pwd_expired_oid ||
|
|
rs->sr_ctrls[n]->ldctl_oid == ppolicy_pwd_expiring_oid ) {
|
|
op->o_tmpfree( rs->sr_ctrls[n], op->o_tmpmemctx );
|
|
break;
|
|
}
|
|
}
|
|
|
|
for ( ; rs->sr_ctrls[n]; n++ ) {
|
|
rs->sr_ctrls[n] = rs->sr_ctrls[n+1];
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_bind_response( Operation *op, SlapReply *rs )
|
|
{
|
|
ppbind *ppb = op->o_callback->sc_private;
|
|
pp_info *pi = ppb->pi;
|
|
Modifications *mod = ppb->mod, *m;
|
|
int pwExpired = 0;
|
|
int ngut = -1, warn = -1, fc = 0, age, rc;
|
|
Attribute *a;
|
|
time_t now, pwtime = (time_t)-1;
|
|
struct lutil_tm now_tm;
|
|
struct lutil_timet now_usec;
|
|
char nowstr[ LDAP_LUTIL_GENTIME_BUFSIZE ];
|
|
char nowstr_usec[ LDAP_LUTIL_GENTIME_BUFSIZE+8 ];
|
|
struct berval timestamp, timestamp_usec;
|
|
BackendDB *be = op->o_bd;
|
|
LDAPControl *ctrl = NULL;
|
|
Entry *e;
|
|
|
|
ldap_pvt_thread_mutex_lock( &pi->pwdFailureTime_mutex );
|
|
/* If we already know it's locked, just get on with it */
|
|
if ( ppb->pErr != PP_noError ) {
|
|
goto locked;
|
|
}
|
|
|
|
op->o_bd = ppb->be;
|
|
rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
|
|
op->o_bd = be;
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
goto out;
|
|
}
|
|
|
|
/* ITS#7089 Skip lockout checks/modifications if password attribute missing */
|
|
if ( attr_find( e->e_attrs, ppb->pp.ad ) == NULL ) {
|
|
goto done;
|
|
}
|
|
|
|
ldap_pvt_gettime(&now_tm); /* stored for later consideration */
|
|
lutil_tm2time(&now_tm, &now_usec);
|
|
now = now_usec.tt_sec;
|
|
timestamp.bv_val = nowstr;
|
|
timestamp.bv_len = sizeof(nowstr);
|
|
slap_timestamp( &now, ×tamp );
|
|
|
|
/* Separate timestamp for pwdFailureTime with microsecond granularity */
|
|
strcpy(nowstr_usec, nowstr);
|
|
timestamp_usec.bv_val = nowstr_usec;
|
|
timestamp_usec.bv_len = timestamp.bv_len;
|
|
snprintf( timestamp_usec.bv_val + timestamp_usec.bv_len-1, sizeof(".123456Z"), ".%06dZ", now_usec.tt_nsec / 1000 );
|
|
timestamp_usec.bv_len += STRLENOF(".123456");
|
|
|
|
if ( rs->sr_err == LDAP_INVALID_CREDENTIALS && ppb->pp.pwdMaxRecordedFailure ) {
|
|
int i = 0;
|
|
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_ADD;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdFailureTime->ad_cname;
|
|
m->sml_desc = ad_pwdFailureTime;
|
|
m->sml_numvals = 1;
|
|
m->sml_values = ch_calloc( sizeof(struct berval), 2 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), 2 );
|
|
|
|
ber_dupbv( &m->sml_values[0], ×tamp_usec );
|
|
ber_dupbv( &m->sml_nvalues[0], ×tamp_usec );
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
|
|
/*
|
|
* Count the pwdFailureTimes - if it's
|
|
* greater than the policy pwdMaxFailure,
|
|
* then lock the account.
|
|
*/
|
|
if ((a = attr_find( e->e_attrs, ad_pwdFailureTime )) != NULL) {
|
|
for(i=0; a->a_nvals[i].bv_val; i++) {
|
|
|
|
/*
|
|
* If the interval is 0, then failures
|
|
* stay on the record until explicitly
|
|
* reset by successful authentication.
|
|
*/
|
|
if (ppb->pp.pwdFailureCountInterval == 0) {
|
|
fc++;
|
|
} else if (now <=
|
|
parse_time(a->a_nvals[i].bv_val) +
|
|
ppb->pp.pwdFailureCountInterval) {
|
|
|
|
fc++;
|
|
}
|
|
/*
|
|
* We only count those failures
|
|
* which are not due to expire.
|
|
*/
|
|
}
|
|
/* Do we have too many timestamps? If so, delete some values.
|
|
* We don't bother to sort the values here. OpenLDAP keeps the
|
|
* values in order by default. Fundamentally, relying on the
|
|
* information here is wrong anyway; monitoring systems should
|
|
* be tracking Bind failures in syslog, not here.
|
|
*/
|
|
if (a->a_numvals >= ppb->pp.pwdMaxRecordedFailure) {
|
|
int j = ppb->pp.pwdMaxRecordedFailure-1;
|
|
/* If more than 2x, cheaper to perform a Replace */
|
|
if (a->a_numvals >= 2 * ppb->pp.pwdMaxRecordedFailure) {
|
|
struct berval v, nv;
|
|
|
|
/* Change the mod we constructed above */
|
|
m->sml_op = LDAP_MOD_REPLACE;
|
|
m->sml_numvals = ppb->pp.pwdMaxRecordedFailure;
|
|
v = m->sml_values[0];
|
|
nv = m->sml_nvalues[0];
|
|
ch_free(m->sml_values);
|
|
ch_free(m->sml_nvalues);
|
|
m->sml_values = ch_calloc( sizeof(struct berval), ppb->pp.pwdMaxRecordedFailure+1 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), ppb->pp.pwdMaxRecordedFailure+1 );
|
|
for (i=0; i<j; i++) {
|
|
ber_dupbv(&m->sml_values[i], &a->a_vals[a->a_numvals-j+i]);
|
|
ber_dupbv(&m->sml_nvalues[i], &a->a_nvals[a->a_numvals-j+i]);
|
|
}
|
|
m->sml_values[i] = v;
|
|
m->sml_nvalues[i] = nv;
|
|
} else {
|
|
/* else just delete some */
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_DELETE;
|
|
m->sml_type = ad_pwdFailureTime->ad_cname;
|
|
m->sml_desc = ad_pwdFailureTime;
|
|
m->sml_numvals = a->a_numvals - j;
|
|
m->sml_values = ch_calloc( sizeof(struct berval), m->sml_numvals+1 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), m->sml_numvals+1 );
|
|
for (i=0; i<m->sml_numvals; i++) {
|
|
ber_dupbv(&m->sml_values[i], &a->a_vals[i]);
|
|
ber_dupbv(&m->sml_nvalues[i], &a->a_nvals[i]);
|
|
}
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ((ppb->pp.pwdMaxFailure > 0) &&
|
|
(fc >= ppb->pp.pwdMaxFailure - 1)) {
|
|
|
|
/*
|
|
* We subtract 1 from the failure max
|
|
* because the new failure entry hasn't
|
|
* made it to the entry yet.
|
|
*/
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_REPLACE;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdAccountLockedTime->ad_cname;
|
|
m->sml_desc = ad_pwdAccountLockedTime;
|
|
m->sml_numvals = 1;
|
|
m->sml_values = ch_calloc( sizeof(struct berval), 2 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), 2 );
|
|
ber_dupbv( &m->sml_values[0], ×tamp );
|
|
ber_dupbv( &m->sml_nvalues[0], ×tamp );
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
} else if ( ppb->pp.pwdMinDelay ) {
|
|
int waittime = ppb->pp.pwdMinDelay << fc;
|
|
time_t wait_end;
|
|
char lockout_stamp_buf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
|
|
struct berval lockout_stamp = BER_BVC(lockout_stamp_buf);
|
|
|
|
if ( waittime > ppb->pp.pwdMaxDelay ) {
|
|
waittime = ppb->pp.pwdMaxDelay;
|
|
}
|
|
wait_end = now + waittime;
|
|
|
|
slap_timestamp( &wait_end, &lockout_stamp );
|
|
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_REPLACE;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdAccountTmpLockoutEnd->ad_cname;
|
|
m->sml_desc = ad_pwdAccountTmpLockoutEnd;
|
|
m->sml_numvals = 1;
|
|
m->sml_values = ch_calloc( sizeof(struct berval), 2 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), 2 );
|
|
ber_dupbv( &m->sml_values[0], &lockout_stamp );
|
|
ber_dupbv( &m->sml_nvalues[0], &lockout_stamp );
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
}
|
|
} else if ( rs->sr_err == LDAP_SUCCESS ) {
|
|
if ((a = attr_find( e->e_attrs, ad_pwdChangedTime )) != NULL)
|
|
pwtime = parse_time( a->a_nvals[0].bv_val );
|
|
|
|
/* delete all pwdFailureTimes */
|
|
if ( attr_find( e->e_attrs, ad_pwdFailureTime )) {
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_DELETE;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdFailureTime->ad_cname;
|
|
m->sml_desc = ad_pwdFailureTime;
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
}
|
|
|
|
/*
|
|
* check to see if the password must be changed
|
|
*/
|
|
if ( ppb->pp.pwdMustChange &&
|
|
(a = attr_find( e->e_attrs, ad_pwdReset )) &&
|
|
bvmatch( &a->a_nvals[0], &slap_true_bv ) )
|
|
{
|
|
/*
|
|
* need to inject client controls here to give
|
|
* more information. For the moment, we ensure
|
|
* that we are disallowed from doing anything
|
|
* other than change password.
|
|
*/
|
|
if ( ppb->set_restrict ) {
|
|
ber_dupbv( &pwcons[op->o_conn->c_conn_idx].dn,
|
|
&op->o_conn->c_ndn );
|
|
}
|
|
|
|
ppb->pErr = PP_changeAfterReset;
|
|
|
|
} else {
|
|
/*
|
|
* the password does not need to be changed, so
|
|
* we now check whether the password has expired.
|
|
*
|
|
* We can skip this bit if passwords don't age in
|
|
* the policy. Also, if there was no pwdChangedTime
|
|
* attribute in the entry, the password never expires.
|
|
*/
|
|
if (ppb->pp.pwdMaxAge == 0) goto grace;
|
|
|
|
if (pwtime != (time_t)-1) {
|
|
/*
|
|
* Check: was the last change time of
|
|
* the password older than the maximum age
|
|
* allowed. (Ignore case 2 from I-D, it's just silly.)
|
|
*/
|
|
if (now - pwtime > ppb->pp.pwdMaxAge ) pwExpired = 1;
|
|
}
|
|
}
|
|
|
|
grace:
|
|
if (!pwExpired) goto check_expiring_password;
|
|
|
|
if ( ppb->pp.pwdGraceExpiry &&
|
|
now - pwtime > ppb->pp.pwdMaxAge + ppb->pp.pwdGraceExpiry ) {
|
|
/* Grace logins have expired now */
|
|
ngut = 0;
|
|
} else if ((a = attr_find( e->e_attrs, ad_pwdGraceUseTime )) == NULL) {
|
|
ngut = ppb->pp.pwdGraceAuthNLimit;
|
|
} else {
|
|
for(ngut=0; a->a_nvals[ngut].bv_val; ngut++);
|
|
ngut = ppb->pp.pwdGraceAuthNLimit - ngut;
|
|
}
|
|
|
|
/*
|
|
* ngut is the number of remaining grace logins
|
|
*/
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"ppolicy_bind: Entry %s has an expired password: %d grace logins\n",
|
|
e->e_name.bv_val, ngut );
|
|
|
|
ngut--;
|
|
|
|
if (ngut < 0) {
|
|
ppb->pErr = PP_passwordExpired;
|
|
rs->sr_err = LDAP_INVALID_CREDENTIALS;
|
|
goto done;
|
|
}
|
|
|
|
/*
|
|
* Add a grace user time to the entry
|
|
*/
|
|
m = ch_calloc( sizeof(Modifications), 1 );
|
|
m->sml_op = LDAP_MOD_ADD;
|
|
m->sml_flags = 0;
|
|
m->sml_type = ad_pwdGraceUseTime->ad_cname;
|
|
m->sml_desc = ad_pwdGraceUseTime;
|
|
m->sml_numvals = 1;
|
|
m->sml_values = ch_calloc( sizeof(struct berval), 2 );
|
|
m->sml_nvalues = ch_calloc( sizeof(struct berval), 2 );
|
|
ber_dupbv( &m->sml_values[0], ×tamp_usec );
|
|
ber_dupbv( &m->sml_nvalues[0], ×tamp_usec );
|
|
m->sml_next = mod;
|
|
mod = m;
|
|
|
|
check_expiring_password:
|
|
/*
|
|
* Now we need to check to see
|
|
* if it is about to expire, and if so, should the user
|
|
* be warned about it in the password policy control.
|
|
*
|
|
* If the password has expired, and we're in the grace period, then
|
|
* we don't need to do this bit. Similarly, if we don't have password
|
|
* aging, then there's no need to do this bit either.
|
|
*
|
|
* If pwdtime is -1 there is no password Change Time attribute on the
|
|
* entry so we skip the expiry check.
|
|
*
|
|
*/
|
|
if ((ppb->pp.pwdMaxAge < 1) || (pwExpired) || (ppb->pp.pwdExpireWarning < 1) ||
|
|
(pwtime == -1))
|
|
goto done;
|
|
|
|
age = (int)(now - pwtime);
|
|
|
|
/*
|
|
* We know that there is a password Change Time attribute - if
|
|
* there wasn't, then the pwdExpired value would be true, unless
|
|
* there is no password aging - and if there is no password aging,
|
|
* then this section isn't called anyway - you can't have an
|
|
* expiring password if there's no limit to expire.
|
|
*/
|
|
if (ppb->pp.pwdMaxAge - age < ppb->pp.pwdExpireWarning ) {
|
|
/*
|
|
* Set the warning value.
|
|
*/
|
|
warn = ppb->pp.pwdMaxAge - age; /* seconds left until expiry */
|
|
if (warn < 0) warn = 0; /* something weird here - why is pwExpired not set? */
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ppolicy_bind: Setting warning for password expiry for %s = %d seconds\n",
|
|
op->o_req_dn.bv_val, warn );
|
|
}
|
|
}
|
|
|
|
done:
|
|
op->o_bd = ppb->be;
|
|
be_entry_release_r( op, e );
|
|
op->o_bd = be;
|
|
|
|
locked:
|
|
if ( mod && !pi->disable_write ) {
|
|
Operation op2 = *op;
|
|
SlapReply r2 = { REP_RESULT };
|
|
slap_callback cb = { NULL, slap_null_cb, NULL, NULL };
|
|
LDAPControl c, *ca[2];
|
|
|
|
op2.o_tag = LDAP_REQ_MODIFY;
|
|
op2.o_callback = &cb;
|
|
op2.orm_modlist = mod;
|
|
op2.orm_no_opattrs = 0;
|
|
op2.o_dn = op->o_bd->be_rootdn;
|
|
op2.o_ndn = op->o_bd->be_rootndn;
|
|
|
|
/* If this server is a shadow and forward_updates is true,
|
|
* use the frontend to perform this modify. That will trigger
|
|
* the update referral, which can then be forwarded by the
|
|
* chain overlay. Obviously the updateref and chain overlay
|
|
* must be configured appropriately for this to be useful.
|
|
*/
|
|
if ( SLAP_SHADOW( op->o_bd ) && pi->forward_updates ) {
|
|
op2.o_bd = frontendDB;
|
|
|
|
/* Must use Relax control since these are no-user-mod */
|
|
op2.o_relax = SLAP_CONTROL_CRITICAL;
|
|
op2.o_ctrls = ca;
|
|
ca[0] = &c;
|
|
ca[1] = NULL;
|
|
BER_BVZERO( &c.ldctl_value );
|
|
c.ldctl_iscritical = 1;
|
|
c.ldctl_oid = LDAP_CONTROL_RELAX;
|
|
} else {
|
|
/* If not forwarding, don't update opattrs and don't replicate */
|
|
if ( SLAP_SINGLE_SHADOW( op->o_bd )) {
|
|
op2.orm_no_opattrs = 1;
|
|
op2.o_dont_replicate = 1;
|
|
}
|
|
op2.o_bd = ppb->be;
|
|
}
|
|
rc = op2.o_bd->be_modify( &op2, &r2 );
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "%s ppolicy_bind_response: "
|
|
"ppolicy state change failed with rc=%d text=%s\n",
|
|
op->o_log_prefix, rc, r2.sr_text );
|
|
}
|
|
}
|
|
if ( mod ) {
|
|
slap_mods_free( mod, 1 );
|
|
}
|
|
|
|
if ( ppb->send_ctrl ) {
|
|
|
|
/* Do we really want to tell that the account is locked? */
|
|
if ( ppb->pErr == PP_accountLocked && !pi->use_lockout ) {
|
|
ppb->pErr = PP_noError;
|
|
}
|
|
ctrl = create_passcontrol( op, warn, ngut, ppb->pErr );
|
|
} else if ( pi->send_netscape_controls ) {
|
|
if ( ppb->pErr != PP_noError || pwExpired ) {
|
|
ctrl = create_passexpiry( op, 1, 0 );
|
|
} else if ( warn > 0 ) {
|
|
ctrl = create_passexpiry( op, 0, warn );
|
|
}
|
|
}
|
|
if ( ctrl ) {
|
|
slap_add_ctrl( op, rs, ctrl );
|
|
op->o_callback->sc_cleanup = ppolicy_ctrls_cleanup;
|
|
}
|
|
out:
|
|
op->o_tmpfree( op->o_callback, op->o_tmpmemctx );
|
|
op->o_callback = NULL;
|
|
ldap_pvt_thread_mutex_unlock( &pi->pwdFailureTime_mutex );
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_bind( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
/* Reset lockout status on all Bind requests */
|
|
if ( !BER_BVISEMPTY( &pwcons[op->o_conn->c_conn_idx].dn )) {
|
|
ch_free( pwcons[op->o_conn->c_conn_idx].dn.bv_val );
|
|
BER_BVZERO( &pwcons[op->o_conn->c_conn_idx].dn );
|
|
}
|
|
|
|
/* Root bypasses policy */
|
|
if ( !be_isroot_dn( op->o_bd, &op->o_req_ndn )) {
|
|
Entry *e;
|
|
int rc;
|
|
ppbind *ppb;
|
|
slap_callback *cb;
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
cb = op->o_tmpcalloc( sizeof(ppbind)+sizeof(slap_callback),
|
|
1, op->o_tmpmemctx );
|
|
ppb = (ppbind *)(cb+1);
|
|
ppb->pi = on->on_bi.bi_private;
|
|
ppb->be = op->o_bd->bd_self;
|
|
ppb->pErr = PP_noError;
|
|
ppb->set_restrict = 1;
|
|
|
|
/* Setup a callback so we can munge the result */
|
|
|
|
cb->sc_response = ppolicy_bind_response;
|
|
cb->sc_private = ppb;
|
|
overlay_callback_after_backover( op, cb, 1 );
|
|
|
|
/* Did we receive a password policy request control? */
|
|
if ( op->o_ctrlflag[ppolicy_cid] ) {
|
|
ppb->send_ctrl = 1;
|
|
}
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on;
|
|
|
|
if ( ppolicy_get( op, e, &ppb->pp ) == LDAP_SUCCESS ) {
|
|
rc = account_locked( op, e, &ppb->pp, &ppb->mod );
|
|
}
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
be_entry_release_r( op, e );
|
|
|
|
if ( rc ) {
|
|
ppb->pErr = PP_accountLocked;
|
|
send_ldap_error( op, rs, LDAP_INVALID_CREDENTIALS, NULL );
|
|
return rs->sr_err;
|
|
}
|
|
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
/* Reset the restricted info for the next session on this connection */
|
|
static int
|
|
ppolicy_connection_destroy( BackendDB *bd, Connection *conn )
|
|
{
|
|
if ( pwcons && !BER_BVISEMPTY( &pwcons[conn->c_conn_idx].dn )) {
|
|
ch_free( pwcons[conn->c_conn_idx].dn.bv_val );
|
|
BER_BVZERO( &pwcons[conn->c_conn_idx].dn );
|
|
}
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
/* Check if this connection is restricted */
|
|
static int
|
|
ppolicy_restrict(
|
|
Operation *op,
|
|
SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
int send_ctrl = 0;
|
|
|
|
/* Did we receive a password policy request control? */
|
|
if ( op->o_ctrlflag[ppolicy_cid] ) {
|
|
send_ctrl = 1;
|
|
}
|
|
|
|
if ( op->o_conn && !BER_BVISEMPTY( &pwcons[op->o_conn->c_conn_idx].dn )) {
|
|
/* if the current authcDN doesn't match the one we recorded,
|
|
* then an intervening Bind has succeeded and the restriction
|
|
* no longer applies. (ITS#4516)
|
|
*/
|
|
if ( !dn_match( &op->o_conn->c_ndn,
|
|
&pwcons[op->o_conn->c_conn_idx].dn )) {
|
|
ch_free( pwcons[op->o_conn->c_conn_idx].dn.bv_val );
|
|
BER_BVZERO( &pwcons[op->o_conn->c_conn_idx].dn );
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"connection restricted to password changing only\n" );
|
|
if ( send_ctrl ) {
|
|
LDAPControl *ctrl;
|
|
ctrl = create_passcontrol( op, -1, -1, PP_changeAfterReset );
|
|
slap_add_ctrl( op, rs, ctrl );
|
|
}
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS,
|
|
"Operations are restricted to bind/unbind/abandon/StartTLS/modify password" );
|
|
if ( send_ctrl ) {
|
|
ppolicy_ctrls_cleanup( op, rs );
|
|
}
|
|
return rs->sr_err;
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_account_usability_cb_cleanup( Operation *op, SlapReply *rs )
|
|
{
|
|
if ( rs->sr_type == REP_RESULT || op->o_abandon ||
|
|
rs->sr_err == SLAPD_ABANDON ) {
|
|
op->o_tmpfree( op->o_callback, op->o_tmpmemctx );
|
|
op->o_callback = NULL;
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
if ( rs->sr_ctrls && rs->sr_ctrls[0] ) {
|
|
ppolicy_ctrls_cleanup( op, rs );
|
|
}
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_account_usability_entry_cb( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_overinst *on = op->o_callback->sc_private;
|
|
BackendInfo *bi = op->o_bd->bd_info;
|
|
PassPolicy pp;
|
|
Attribute *a;
|
|
Entry *e = NULL;
|
|
time_t pwtime = 0, seconds_until_expiry = -1, now = op->o_time;
|
|
int isExpired = 0, grace = -1;
|
|
|
|
if ( rs->sr_type != REP_SEARCH ) {
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
if ( be_entry_get_rw( op, &rs->sr_entry->e_nname, NULL, NULL, 0, &e ) != LDAP_SUCCESS ) {
|
|
goto done;
|
|
}
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on;
|
|
|
|
if ( ppolicy_get( op, e, &pp ) != LDAP_SUCCESS ) {
|
|
/* TODO: If there is no policy, should we check if */
|
|
goto done;
|
|
}
|
|
|
|
if ( !access_allowed( op, e, pp.ad, NULL, ACL_COMPARE, NULL ) ) {
|
|
goto done;
|
|
}
|
|
|
|
if ( attr_find( e->e_attrs, pp.ad ) == NULL ) {
|
|
goto done;
|
|
}
|
|
|
|
if ((a = attr_find( e->e_attrs, ad_pwdChangedTime )) != NULL) {
|
|
pwtime = parse_time( a->a_nvals[0].bv_val );
|
|
}
|
|
|
|
if ( pp.pwdMaxAge && pwtime ) {
|
|
seconds_until_expiry = pwtime + pp.pwdMaxAge - now;
|
|
if ( seconds_until_expiry <= 0 ) isExpired = 1;
|
|
if ( pp.pwdGraceAuthNLimit ) {
|
|
if ( !pp.pwdGraceExpiry || seconds_until_expiry + pp.pwdGraceExpiry > 0 ) {
|
|
grace = pp.pwdGraceAuthNLimit;
|
|
if ( attr_find( e->e_attrs, ad_pwdGraceUseTime ) ) {
|
|
grace -= a->a_numvals;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if ( !isExpired && pp.pwdMaxIdle && (a = attr_find( e->e_attrs, ad_pwdLastSuccess )) ) {
|
|
time_t lastbindtime = pwtime;
|
|
|
|
if ( (a = attr_find( e->e_attrs, ad_pwdLastSuccess )) != NULL ) {
|
|
lastbindtime = parse_time( a->a_nvals[0].bv_val );
|
|
}
|
|
|
|
if ( lastbindtime ) {
|
|
int remaining_idle = lastbindtime + pp.pwdMaxIdle - now;
|
|
if ( remaining_idle <= 0 ) {
|
|
isExpired = 1;
|
|
} else if ( seconds_until_expiry == -1 || remaining_idle < seconds_until_expiry ) {
|
|
seconds_until_expiry = remaining_idle;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ( isExpired || account_locked( op, e, &pp, NULL ) ) {
|
|
LDAPAccountUsabilityMoreInfo more_info = { 0, 0, 0, -1, -1 };
|
|
time_t then, lockoutEnd = 0;
|
|
|
|
if ( isExpired ) more_info.remaining_grace = grace;
|
|
|
|
if ( (a = attr_find( e->e_attrs, ad_pwdAccountLockedTime )) != NULL ) {
|
|
then = parse_time( a->a_vals[0].bv_val );
|
|
if ( then == 0 )
|
|
lockoutEnd = -1;
|
|
|
|
/* Still in the future? not yet in effect */
|
|
if ( now < then )
|
|
then = 0;
|
|
|
|
if ( !pp.pwdLockoutDuration )
|
|
lockoutEnd = -1;
|
|
|
|
if ( now < then + pp.pwdLockoutDuration )
|
|
lockoutEnd = then + pp.pwdLockoutDuration;
|
|
}
|
|
|
|
if ( (a = attr_find( e->e_attrs, ad_pwdAccountTmpLockoutEnd )) != NULL ) {
|
|
then = parse_time( a->a_vals[0].bv_val );
|
|
if ( lockoutEnd != -1 && then > lockoutEnd )
|
|
lockoutEnd = then;
|
|
}
|
|
|
|
if ( lockoutEnd > now ) {
|
|
more_info.inactive = 1;
|
|
more_info.seconds_before_unlock = lockoutEnd - now;
|
|
}
|
|
|
|
if ( pp.pwdMustChange &&
|
|
(a = attr_find( e->e_attrs, ad_pwdReset )) &&
|
|
bvmatch( &a->a_nvals[0], &slap_true_bv ) )
|
|
{
|
|
more_info.reset = 1;
|
|
}
|
|
|
|
add_account_control( op, rs, 0, -1, &more_info );
|
|
} else {
|
|
add_account_control( op, rs, 1, seconds_until_expiry, NULL );
|
|
}
|
|
|
|
done:
|
|
op->o_bd->bd_info = bi;
|
|
if ( e ) {
|
|
be_entry_release_r( op, e );
|
|
}
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_search(
|
|
Operation *op,
|
|
SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
int rc = ppolicy_restrict( op, rs );
|
|
|
|
if ( rc != SLAP_CB_CONTINUE ) {
|
|
return rc;
|
|
}
|
|
|
|
if ( op->o_ctrlflag[account_usability_cid] ) {
|
|
slap_callback *cb;
|
|
|
|
cb = op->o_tmpcalloc( sizeof(slap_callback), 1, op->o_tmpmemctx );
|
|
|
|
cb->sc_response = ppolicy_account_usability_entry_cb;
|
|
cb->sc_cleanup = ppolicy_account_usability_cb_cleanup;
|
|
cb->sc_private = on;
|
|
overlay_callback_after_backover( op, cb, 1 );
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_compare_response(
|
|
Operation *op,
|
|
SlapReply *rs )
|
|
{
|
|
/* map compare responses to bind responses */
|
|
if ( rs->sr_err == LDAP_COMPARE_TRUE )
|
|
rs->sr_err = LDAP_SUCCESS;
|
|
else if ( rs->sr_err == LDAP_COMPARE_FALSE )
|
|
rs->sr_err = LDAP_INVALID_CREDENTIALS;
|
|
|
|
ppolicy_bind_response( op, rs );
|
|
|
|
/* map back to compare */
|
|
if ( rs->sr_err == LDAP_SUCCESS )
|
|
rs->sr_err = LDAP_COMPARE_TRUE;
|
|
else if ( rs->sr_err == LDAP_INVALID_CREDENTIALS )
|
|
rs->sr_err = LDAP_COMPARE_FALSE;
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_compare(
|
|
Operation *op,
|
|
SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
if ( ppolicy_restrict( op, rs ) != SLAP_CB_CONTINUE )
|
|
return rs->sr_err;
|
|
|
|
/* Did we receive a password policy request control?
|
|
* Are we testing the userPassword?
|
|
*/
|
|
if ( op->o_ctrlflag[ppolicy_cid] &&
|
|
op->orc_ava->aa_desc == slap_schema.si_ad_userPassword ) {
|
|
Entry *e;
|
|
int rc;
|
|
ppbind *ppb;
|
|
slap_callback *cb;
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
cb = op->o_tmpcalloc( sizeof(ppbind)+sizeof(slap_callback),
|
|
1, op->o_tmpmemctx );
|
|
ppb = (ppbind *)(cb+1);
|
|
ppb->pi = on->on_bi.bi_private;
|
|
ppb->be = op->o_bd->bd_self;
|
|
ppb->pErr = PP_noError;
|
|
ppb->send_ctrl = 1;
|
|
/* failures here don't lockout the connection */
|
|
ppb->set_restrict = 0;
|
|
|
|
/* Setup a callback so we can munge the result */
|
|
|
|
cb->sc_response = ppolicy_compare_response;
|
|
cb->sc_private = ppb;
|
|
overlay_callback_after_backover( op, cb, 1 );
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on;
|
|
|
|
if ( ppolicy_get( op, e, &ppb->pp ) == LDAP_SUCCESS ) {
|
|
rc = account_locked( op, e, &ppb->pp, &ppb->mod );
|
|
}
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
be_entry_release_r( op, e );
|
|
|
|
if ( rc ) {
|
|
ppb->pErr = PP_accountLocked;
|
|
send_ldap_error( op, rs, LDAP_COMPARE_FALSE, NULL );
|
|
return rs->sr_err;
|
|
}
|
|
}
|
|
|
|
if ( op->orc_ava->aa_desc == ad_pwdPolicySubentry ) {
|
|
BerVarray vals = NULL;
|
|
int rc;
|
|
|
|
rc = backend_attribute( op, NULL, &op->o_req_ndn,
|
|
ad_pwdPolicySubentry, &vals, ACL_COMPARE );
|
|
|
|
if ( rc != LDAP_SUCCESS ) {
|
|
/* Defer to the DB */
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
if ( value_find_ex( ad_pwdPolicySubentry,
|
|
SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
|
|
SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH,
|
|
vals, &op->orc_ava->aa_value, op->o_tmpmemctx ) == 0 )
|
|
{
|
|
rc = LDAP_COMPARE_TRUE;
|
|
} else {
|
|
rc = LDAP_COMPARE_FALSE;
|
|
}
|
|
|
|
if ( vals ) {
|
|
ber_bvarray_free_x( vals, op->o_tmpmemctx );
|
|
}
|
|
send_ldap_error( op, rs, rc, NULL );
|
|
return rs->sr_err;
|
|
}
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_add(
|
|
Operation *op,
|
|
SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
pp_info *pi = on->on_bi.bi_private;
|
|
PassPolicy pp;
|
|
Attribute *pa;
|
|
const char *txt;
|
|
int is_pwdadmin = 0;
|
|
|
|
if ( ppolicy_restrict( op, rs ) != SLAP_CB_CONTINUE )
|
|
return rs->sr_err;
|
|
|
|
/* If this is a replica, assume the provider checked everything */
|
|
if ( be_shadow_update( op ) )
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
ppolicy_get( op, op->ora_e, &pp );
|
|
|
|
if ( access_allowed( op, op->ora_e, pp.ad, NULL, ACL_MANAGE, NULL ) ) {
|
|
is_pwdadmin = 1;
|
|
}
|
|
|
|
/* Check for password in entry */
|
|
if ( (pa = attr_find( op->oq_add.rs_e->e_attrs, pp.ad )) ) {
|
|
assert( pa->a_vals != NULL );
|
|
assert( !BER_BVISNULL( &pa->a_vals[ 0 ] ) );
|
|
|
|
if ( !BER_BVISNULL( &pa->a_vals[ 1 ] ) ) {
|
|
send_ldap_error( op, rs, LDAP_CONSTRAINT_VIOLATION, "Password policy only allows one password value" );
|
|
return rs->sr_err;
|
|
}
|
|
|
|
/*
|
|
* new entry contains a password - if we're not the password admin
|
|
* then we need to check that the password fits in with the
|
|
* security policy for the new entry.
|
|
*/
|
|
|
|
if ( pp.pwdCheckQuality > 0 && !is_pwdadmin ) {
|
|
struct berval *bv = &(pa->a_vals[0]);
|
|
int rc, send_ctrl = 0;
|
|
LDAPPasswordPolicyError pErr = PP_noError;
|
|
char errbuf[ERRBUFSIZ];
|
|
struct berval errmsg = BER_BVC( errbuf );
|
|
|
|
/* Did we receive a password policy request control? */
|
|
if ( op->o_ctrlflag[ppolicy_cid] ) {
|
|
send_ctrl = 1;
|
|
}
|
|
rc = check_password_quality( bv, pi, &pp, &pErr, op->ora_e, &errmsg );
|
|
if (rc != LDAP_SUCCESS) {
|
|
char *txt = errmsg.bv_val;
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
if ( send_ctrl ) {
|
|
LDAPControl *ctrl;
|
|
ctrl = create_passcontrol( op, -1, -1, pErr );
|
|
slap_add_ctrl( op, rs, ctrl );
|
|
}
|
|
send_ldap_error( op, rs, rc, txt && txt[0] ? txt : "Password fails quality checking policy" );
|
|
if ( txt != errbuf ) {
|
|
free( txt );
|
|
}
|
|
if ( send_ctrl ) {
|
|
ppolicy_ctrls_cleanup( op, rs );
|
|
}
|
|
return rs->sr_err;
|
|
}
|
|
}
|
|
/*
|
|
* A controversial bit. We hash cleartext
|
|
* passwords provided via add and modify operations
|
|
* You're not really supposed to do this, since
|
|
* the X.500 model says "store attributes" as they
|
|
* get provided. By default, this is what we do
|
|
*
|
|
* But if the hash_passwords flag is set, we hash
|
|
* any cleartext password attribute values via the
|
|
* default password hashing scheme.
|
|
*/
|
|
if ((pi->hash_passwords) &&
|
|
(password_scheme( &(pa->a_vals[0]), NULL ) != LDAP_SUCCESS)) {
|
|
struct berval hpw;
|
|
|
|
slap_passwd_hash( &(pa->a_vals[0]), &hpw, &txt );
|
|
if (hpw.bv_val == NULL) {
|
|
/*
|
|
* hashing didn't work. Emit an error.
|
|
*/
|
|
rs->sr_err = LDAP_OTHER;
|
|
rs->sr_text = txt;
|
|
send_ldap_error( op, rs, LDAP_OTHER, "Password hashing failed" );
|
|
return rs->sr_err;
|
|
}
|
|
|
|
memset( pa->a_vals[0].bv_val, 0, pa->a_vals[0].bv_len);
|
|
ber_memfree( pa->a_vals[0].bv_val );
|
|
pa->a_vals[0].bv_val = hpw.bv_val;
|
|
pa->a_vals[0].bv_len = hpw.bv_len;
|
|
}
|
|
|
|
/* If password aging is in effect, set the pwdChangedTime */
|
|
if ( ( pp.pwdMaxAge || pp.pwdMinAge ) &&
|
|
!attr_find( op->ora_e->e_attrs, ad_pwdChangedTime ) ) {
|
|
struct berval timestamp;
|
|
char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
|
|
time_t now = slap_get_time();
|
|
|
|
timestamp.bv_val = timebuf;
|
|
timestamp.bv_len = sizeof(timebuf);
|
|
slap_timestamp( &now, ×tamp );
|
|
|
|
attr_merge_one( op->ora_e, ad_pwdChangedTime, ×tamp, ×tamp );
|
|
}
|
|
}
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_mod_cb( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_callback *sc = op->o_callback;
|
|
op->o_callback = sc->sc_next;
|
|
if ( rs->sr_err == LDAP_SUCCESS ) {
|
|
ch_free( pwcons[op->o_conn->c_conn_idx].dn.bv_val );
|
|
BER_BVZERO( &pwcons[op->o_conn->c_conn_idx].dn );
|
|
}
|
|
op->o_tmpfree( sc, op->o_tmpmemctx );
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_text_cleanup( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_callback *sc = op->o_callback;
|
|
|
|
if ( rs->sr_text == sc->sc_private ) {
|
|
rs->sr_text = NULL;
|
|
}
|
|
free( sc->sc_private );
|
|
|
|
op->o_callback = sc->sc_next;
|
|
op->o_tmpfree( sc, op->o_tmpmemctx );
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
static int
|
|
ppolicy_modify( Operation *op, SlapReply *rs )
|
|
{
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
pp_info *pi = on->on_bi.bi_private;
|
|
int i, rc, mod_pw_only, pwmod = 0, pwmop = -1, deladd,
|
|
hsize = 0, hskip;
|
|
PassPolicy pp;
|
|
Modifications *mods = NULL, *modtail = NULL,
|
|
*ml, *delmod, *addmod;
|
|
Attribute *pa, *ha, at;
|
|
const char *txt;
|
|
char errbuf[ERRBUFSIZ];
|
|
pw_hist *tl = NULL, *p;
|
|
int zapReset, send_ctrl = 0, free_txt = 0;
|
|
Entry *e;
|
|
struct berval newpw = BER_BVNULL, oldpw = BER_BVNULL,
|
|
*bv, cr[2];
|
|
LDAPPasswordPolicyError pErr = PP_noError;
|
|
LDAPControl *ctrl = NULL;
|
|
int is_pwdexop = 0, is_pwdadmin = 0;
|
|
int got_del_grace = 0, got_del_lock = 0, got_pw = 0, got_del_fail = 0,
|
|
got_del_success = 0;
|
|
int got_changed = 0, got_history = 0;
|
|
int have_policy = 0;
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
rc = be_entry_get_rw( op, &op->o_req_ndn, NULL, NULL, 0, &e );
|
|
op->o_bd->bd_info = (BackendInfo *)on;
|
|
|
|
if ( rc != LDAP_SUCCESS ) return SLAP_CB_CONTINUE;
|
|
if ( pi->disable_write ) return SLAP_CB_CONTINUE;
|
|
|
|
/* If this is a replica, we may need to tweak some of the
|
|
* provider's modifications. Otherwise, just pass it through.
|
|
*/
|
|
if ( be_shadow_update( op ) ) {
|
|
Modifications **prev;
|
|
Attribute *a_grace, *a_lock, *a_fail, *a_success;
|
|
|
|
a_grace = attr_find( e->e_attrs, ad_pwdGraceUseTime );
|
|
a_lock = attr_find( e->e_attrs, ad_pwdAccountLockedTime );
|
|
a_fail = attr_find( e->e_attrs, ad_pwdFailureTime );
|
|
a_success = attr_find( e->e_attrs, ad_pwdLastSuccess );
|
|
|
|
for( prev = &op->orm_modlist, ml = *prev; ml; ml = *prev ) {
|
|
|
|
if ( ml->sml_desc == slap_schema.si_ad_userPassword )
|
|
got_pw = 1;
|
|
|
|
/* If we're deleting an attr that didn't exist,
|
|
* drop this delete op
|
|
*/
|
|
if ( ml->sml_op == LDAP_MOD_DELETE ||
|
|
ml->sml_op == SLAP_MOD_SOFTDEL ) {
|
|
int drop = 0;
|
|
|
|
if ( ml->sml_desc == ad_pwdGraceUseTime ) {
|
|
if ( !a_grace || got_del_grace ) {
|
|
drop = ml->sml_op == LDAP_MOD_DELETE;
|
|
} else {
|
|
got_del_grace = 1;
|
|
}
|
|
} else
|
|
if ( ml->sml_desc == ad_pwdAccountLockedTime ) {
|
|
if ( !a_lock || got_del_lock ) {
|
|
drop = ml->sml_op == LDAP_MOD_DELETE;
|
|
} else {
|
|
got_del_lock = 1;
|
|
}
|
|
} else
|
|
if ( ml->sml_desc == ad_pwdFailureTime ) {
|
|
if ( !a_fail || got_del_fail ) {
|
|
drop = ml->sml_op == LDAP_MOD_DELETE;
|
|
} else {
|
|
got_del_fail = 1;
|
|
}
|
|
}
|
|
if ( ml->sml_desc == ad_pwdLastSuccess ) {
|
|
if ( !a_success || got_del_success ) {
|
|
drop = ml->sml_op == LDAP_MOD_DELETE;
|
|
} else {
|
|
got_del_success = 1;
|
|
}
|
|
}
|
|
if ( drop ) {
|
|
*prev = ml->sml_next;
|
|
ml->sml_next = NULL;
|
|
slap_mods_free( ml, 1 );
|
|
continue;
|
|
}
|
|
}
|
|
prev = &ml->sml_next;
|
|
}
|
|
|
|
/* If we're resetting the password, make sure grace, accountlock,
|
|
* success, and failure also get removed.
|
|
*/
|
|
if ( got_pw ) {
|
|
if ( a_grace && !got_del_grace ) {
|
|
ml = (Modifications *) ch_malloc( sizeof( Modifications ) );
|
|
ml->sml_op = LDAP_MOD_DELETE;
|
|
ml->sml_flags = SLAP_MOD_INTERNAL;
|
|
ml->sml_type.bv_val = NULL;
|
|
ml->sml_desc = ad_pwdGraceUseTime;
|
|
ml->sml_numvals = 0;
|
|
ml->sml_values = NULL;
|
|
ml->sml_nvalues = NULL;
|
|
ml->sml_next = NULL;
|
|
*prev = ml;
|
|
prev = &ml->sml_next;
|
|
}
|
|
if ( a_lock && !got_del_lock ) {
|
|
ml = (Modifications *) ch_malloc( sizeof( Modifications ) );
|
|
ml->sml_op = LDAP_MOD_DELETE;
|
|
ml->sml_flags = SLAP_MOD_INTERNAL;
|
|
ml->sml_type.bv_val = NULL;
|
|
ml->sml_desc = ad_pwdAccountLockedTime;
|
|
ml->sml_numvals = 0;
|
|
ml->sml_values = NULL;
|
|
ml->sml_nvalues = NULL;
|
|
ml->sml_next = NULL;
|
|
*prev = ml;
|
|
}
|
|
if ( a_fail && !got_del_fail ) {
|
|
ml = (Modifications *) ch_malloc( sizeof( Modifications ) );
|
|
ml->sml_op = LDAP_MOD_DELETE;
|
|
ml->sml_flags = SLAP_MOD_INTERNAL;
|
|
ml->sml_type.bv_val = NULL;
|
|
ml->sml_desc = ad_pwdFailureTime;
|
|
ml->sml_numvals = 0;
|
|
ml->sml_values = NULL;
|
|
ml->sml_nvalues = NULL;
|
|
ml->sml_next = NULL;
|
|
*prev = ml;
|
|
}
|
|
if ( a_success && !got_del_success ) {
|
|
ml = (Modifications *) ch_malloc( sizeof( Modifications ) );
|
|
ml->sml_op = LDAP_MOD_DELETE;
|
|
ml->sml_flags = SLAP_MOD_INTERNAL;
|
|
ml->sml_type.bv_val = NULL;
|
|
ml->sml_desc = ad_pwdLastSuccess;
|
|
ml->sml_numvals = 0;
|
|
ml->sml_values = NULL;
|
|
ml->sml_nvalues = NULL;
|
|
ml->sml_next = NULL;
|
|
*prev = ml;
|
|
}
|
|
}
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
be_entry_release_r( op, e );
|
|
return SLAP_CB_CONTINUE;
|
|
}
|
|
|
|
/* Did we receive a password policy request control? */
|
|
if ( op->o_ctrlflag[ppolicy_cid] ) {
|
|
send_ctrl = 1;
|
|
}
|
|
|
|
/* See if this is a pwdModify exop. If so, we can
|
|
* access the plaintext passwords from that request.
|
|
*/
|
|
{
|
|
slap_callback *sc;
|
|
|
|
for ( sc = op->o_callback; sc; sc=sc->sc_next ) {
|
|
if ( sc->sc_response == slap_null_cb &&
|
|
sc->sc_private ) {
|
|
req_pwdexop_s *qpw = sc->sc_private;
|
|
newpw = qpw->rs_new;
|
|
oldpw = qpw->rs_old;
|
|
is_pwdexop = 1;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* ppolicy_hash_cleartext depends on pwmod being determined first */
|
|
if ( ppolicy_get( op, e, &pp ) == LDAP_SUCCESS ) {
|
|
have_policy = 1;
|
|
}
|
|
|
|
if ( access_allowed( op, e, pp.ad, NULL, ACL_MANAGE, NULL ) ) {
|
|
is_pwdadmin = 1;
|
|
}
|
|
|
|
for ( ml = op->orm_modlist,
|
|
pwmod = 0, mod_pw_only = 1,
|
|
deladd = 0, delmod = NULL,
|
|
addmod = NULL,
|
|
zapReset = 1;
|
|
ml != NULL; modtail = ml, ml = ml->sml_next )
|
|
{
|
|
if ( ml->sml_desc == pp.ad ) {
|
|
pwmod = 1;
|
|
pwmop = ml->sml_op;
|
|
if ((deladd == 0) && (ml->sml_op == LDAP_MOD_DELETE) &&
|
|
(ml->sml_values) && !BER_BVISNULL( &ml->sml_values[0] ))
|
|
{
|
|
deladd = 1;
|
|
delmod = ml;
|
|
}
|
|
|
|
if ((ml->sml_op == LDAP_MOD_ADD) ||
|
|
(ml->sml_op == LDAP_MOD_REPLACE))
|
|
{
|
|
if ( ml->sml_values && !BER_BVISNULL( &ml->sml_values[0] )) {
|
|
if ( deladd == 1 )
|
|
deladd = 2;
|
|
|
|
/* FIXME: there's no easy way to ensure
|
|
* that add does not cause multiple
|
|
* userPassword values; one way (that
|
|
* would be consistent with the single
|
|
* password constraint) would be to turn
|
|
* add into replace); another would be
|
|
* to disallow add.
|
|
*
|
|
* Let's check at least that a single value
|
|
* is being added
|
|
*/
|
|
if ( addmod || !BER_BVISNULL( &ml->sml_values[ 1 ] ) ) {
|
|
rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
|
|
rs->sr_text = "Password policy only allows one password value";
|
|
goto return_results;
|
|
}
|
|
|
|
addmod = ml;
|
|
} else {
|
|
/* replace can have no values, add cannot */
|
|
assert( ml->sml_op == LDAP_MOD_REPLACE );
|
|
}
|
|
}
|
|
|
|
} else if ( !(ml->sml_flags & SLAP_MOD_INTERNAL) && !is_at_operational( ml->sml_desc->ad_type ) ) {
|
|
mod_pw_only = 0;
|
|
/* modifying something other than password */
|
|
}
|
|
|
|
/*
|
|
* If there is a request to explicitly add a pwdReset
|
|
* attribute, then we suppress the normal behaviour on
|
|
* password change, which is to remove the pwdReset
|
|
* attribute.
|
|
*
|
|
* This enables an administrator to assign a new password
|
|
* and place a "must reset" flag on the entry, which will
|
|
* stay until the user explicitly changes his/her password.
|
|
*/
|
|
if (ml->sml_desc == ad_pwdReset ) {
|
|
if ((ml->sml_op == LDAP_MOD_ADD) ||
|
|
(ml->sml_op == LDAP_MOD_REPLACE))
|
|
zapReset = 0;
|
|
}
|
|
if ( ml->sml_op == LDAP_MOD_DELETE ) {
|
|
if ( ml->sml_desc == ad_pwdGraceUseTime ) {
|
|
got_del_grace = 1;
|
|
} else if ( ml->sml_desc == ad_pwdAccountLockedTime ) {
|
|
got_del_lock = 1;
|
|
} else if ( ml->sml_desc == ad_pwdFailureTime ) {
|
|
got_del_fail = 1;
|
|
} else if ( ml->sml_desc == ad_pwdLastSuccess ) {
|
|
got_del_success = 1;
|
|
}
|
|
}
|
|
if ( ml->sml_desc == ad_pwdChangedTime ) {
|
|
got_changed = 1;
|
|
} else if (ml->sml_desc == ad_pwdHistory ) {
|
|
got_history = 1;
|
|
}
|
|
}
|
|
|
|
if (!BER_BVISEMPTY( &pwcons[op->o_conn->c_conn_idx].dn ) && !mod_pw_only ) {
|
|
if ( dn_match( &op->o_conn->c_ndn,
|
|
&pwcons[op->o_conn->c_conn_idx].dn )) {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"connection restricted to password changing only\n" );
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
rs->sr_text = "Operations are restricted to bind/unbind/abandon/StartTLS/modify password";
|
|
pErr = PP_changeAfterReset;
|
|
goto return_results;
|
|
} else {
|
|
ch_free( pwcons[op->o_conn->c_conn_idx].dn.bv_val );
|
|
BER_BVZERO( &pwcons[op->o_conn->c_conn_idx].dn );
|
|
}
|
|
}
|
|
|
|
/*
|
|
* if we have a "safe password modify policy", then we need to check if we're doing
|
|
* a delete (with the old password), followed by an add (with the new password).
|
|
*
|
|
* If we got just a delete with nothing else, just let it go. We also skip all the checks if
|
|
* the root user is bound. Root can do anything, including avoid the policies.
|
|
*/
|
|
|
|
if (!have_policy || !pwmod) goto do_modify;
|
|
|
|
/*
|
|
* Build the password history list in ascending time order
|
|
* We need this, even if the user is root, in order to maintain
|
|
* the pwdHistory operational attributes properly.
|
|
*/
|
|
if (addmod && pp.pwdInHistory > 0 && (ha = attr_find( e->e_attrs, ad_pwdHistory ))) {
|
|
struct berval oldpw;
|
|
time_t oldtime;
|
|
|
|
for(i=0; ha->a_nvals[i].bv_val; i++) {
|
|
rc = parse_pwdhistory( &(ha->a_nvals[i]), NULL,
|
|
&oldtime, &oldpw );
|
|
|
|
if (rc != LDAP_SUCCESS) continue; /* invalid history entry */
|
|
|
|
if (oldpw.bv_val) {
|
|
add_to_pwd_history( &tl, oldtime, &oldpw,
|
|
&(ha->a_nvals[i]) );
|
|
oldpw.bv_val = NULL;
|
|
oldpw.bv_len = 0;
|
|
}
|
|
}
|
|
for(p=tl; p; p=p->next, hsize++); /* count history size */
|
|
}
|
|
|
|
if (is_pwdadmin) goto do_modify;
|
|
|
|
/* NOTE: according to draft-behera-ldap-password-policy
|
|
* pwdAllowUserChange == FALSE must only prevent pwd changes
|
|
* by the user the pwd belongs to (ITS#7021) */
|
|
if (!pp.pwdAllowUserChange && dn_match(&op->o_req_ndn, &op->o_ndn)) {
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
rs->sr_text = "User alteration of password is not allowed";
|
|
pErr = PP_passwordModNotAllowed;
|
|
goto return_results;
|
|
}
|
|
|
|
/* Just deleting? */
|
|
if (!addmod) {
|
|
/* skip everything else */
|
|
pwmod = 0;
|
|
goto do_modify;
|
|
}
|
|
|
|
/* This is a pwdModify exop that provided the old pw.
|
|
* We need to create a Delete mod for this old pw and
|
|
* let the matching value get found later
|
|
*/
|
|
if (pp.pwdSafeModify && oldpw.bv_val ) {
|
|
ml = (Modifications *)ch_calloc( sizeof( Modifications ), 1 );
|
|
ml->sml_op = LDAP_MOD_DELETE;
|
|
ml->sml_flags = SLAP_MOD_INTERNAL;
|
|
ml->sml_desc = pp.ad;
|
|
ml->sml_type = pp.ad->ad_cname;
|
|
ml->sml_numvals = 1;
|
|
ml->sml_values = (BerVarray) ch_malloc( 2 * sizeof( struct berval ) );
|
|
ber_dupbv( &ml->sml_values[0], &oldpw );
|
|
BER_BVZERO( &ml->sml_values[1] );
|
|
ml->sml_next = op->orm_modlist;
|
|
op->orm_modlist = ml;
|
|
delmod = ml;
|
|
deladd = 2;
|
|
}
|
|
|
|
if (pp.pwdSafeModify && deladd != 2) {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"change password must use DELETE followed by ADD/REPLACE\n" );
|
|
rs->sr_err = LDAP_INSUFFICIENT_ACCESS;
|
|
rs->sr_text = "Must supply old password to be changed as well as new one";
|
|
pErr = PP_mustSupplyOldPassword;
|
|
goto return_results;
|
|
}
|
|
|
|
/* Check age, but only if pwdReset is not TRUE */
|
|
pa = attr_find( e->e_attrs, ad_pwdReset );
|
|
if ((!pa || !bvmatch( &pa->a_nvals[0], &slap_true_bv )) &&
|
|
pp.pwdMinAge > 0) {
|
|
time_t pwtime = (time_t)-1, now;
|
|
int age;
|
|
|
|
if ((pa = attr_find( e->e_attrs, ad_pwdChangedTime )) != NULL)
|
|
pwtime = parse_time( pa->a_nvals[0].bv_val );
|
|
now = slap_get_time();
|
|
age = (int)(now - pwtime);
|
|
if ((pwtime != (time_t)-1) && (age < pp.pwdMinAge)) {
|
|
rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
|
|
rs->sr_text = "Password is too young to change";
|
|
pErr = PP_passwordTooYoung;
|
|
goto return_results;
|
|
}
|
|
}
|
|
|
|
/* pa is used in password history check below, be sure it's set */
|
|
if ((pa = attr_find( e->e_attrs, pp.ad )) != NULL && delmod) {
|
|
/*
|
|
* we have a password to check
|
|
*/
|
|
bv = oldpw.bv_val ? &oldpw : delmod->sml_values;
|
|
/* FIXME: no access checking? */
|
|
rc = slap_passwd_check( op, NULL, pa, bv, &txt );
|
|
if (rc != LDAP_SUCCESS) {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"old password check failed: %s\n", txt );
|
|
|
|
rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
|
|
rs->sr_text = "Must supply correct old password to change to new one";
|
|
pErr = PP_mustSupplyOldPassword;
|
|
goto return_results;
|
|
|
|
} else {
|
|
int i;
|
|
|
|
/*
|
|
* replace the delete value with the (possibly hashed)
|
|
* value which is currently in the password.
|
|
*/
|
|
for ( i = 0; !BER_BVISNULL( &delmod->sml_values[i] ); i++ ) {
|
|
free( delmod->sml_values[i].bv_val );
|
|
BER_BVZERO( &delmod->sml_values[i] );
|
|
}
|
|
free( delmod->sml_values );
|
|
delmod->sml_values = ch_calloc( sizeof(struct berval), 2 );
|
|
BER_BVZERO( &delmod->sml_values[1] );
|
|
ber_dupbv( &(delmod->sml_values[0]), &(pa->a_nvals[0]) );
|
|
}
|
|
}
|
|
|
|
bv = newpw.bv_val ? &newpw : &addmod->sml_values[0];
|
|
if (pp.pwdCheckQuality > 0) {
|
|
struct berval errmsg = BER_BVC( errbuf );
|
|
|
|
rc = check_password_quality( bv, pi, &pp, &pErr, e, &errmsg );
|
|
if (rc != LDAP_SUCCESS) {
|
|
rs->sr_err = rc;
|
|
txt = errmsg.bv_val;
|
|
if ( txt && txt[0] ) {
|
|
rs->sr_text = txt;
|
|
if ( txt != errbuf )
|
|
free_txt = 1;
|
|
} else {
|
|
rs->sr_text = "Password fails quality checking policy";
|
|
}
|
|
goto return_results;
|
|
}
|
|
}
|
|
|
|
/* If pwdInHistory is zero, passwords may be reused */
|
|
if (pa && pp.pwdInHistory > 0) {
|
|
/*
|
|
* Last check - the password history.
|
|
*/
|
|
/* FIXME: no access checking? */
|
|
if (slap_passwd_check( op, NULL, pa, bv, &txt ) == LDAP_SUCCESS) {
|
|
/*
|
|
* This is bad - it means that the user is attempting
|
|
* to set the password to the same as the old one.
|
|
*/
|
|
rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
|
|
rs->sr_text = "Password is not being changed from existing value";
|
|
pErr = PP_passwordInHistory;
|
|
goto return_results;
|
|
}
|
|
|
|
/* We need this when reduce pwdInHistory */
|
|
hskip = hsize - pp.pwdInHistory;
|
|
|
|
/*
|
|
* Iterate through the password history, and fail on any
|
|
* password matches.
|
|
*/
|
|
at = *pa;
|
|
at.a_vals = cr;
|
|
cr[1].bv_val = NULL;
|
|
for(p=tl; p; p=p->next) {
|
|
if(hskip > 0){
|
|
hskip--;
|
|
continue;
|
|
}
|
|
cr[0] = p->pw;
|
|
/* FIXME: no access checking? */
|
|
rc = slap_passwd_check( op, NULL, &at, bv, &txt );
|
|
|
|
if (rc != LDAP_SUCCESS) continue;
|
|
|
|
rs->sr_err = LDAP_CONSTRAINT_VIOLATION;
|
|
rs->sr_text = "Password is in history of old passwords";
|
|
pErr = PP_passwordInHistory;
|
|
goto return_results;
|
|
}
|
|
}
|
|
|
|
do_modify:
|
|
if (pwmod) {
|
|
struct berval timestamp;
|
|
char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
|
|
time_t now = slap_get_time();
|
|
|
|
/* If the conn is restricted, set a callback to clear it
|
|
* if the pwmod succeeds
|
|
*/
|
|
if (!BER_BVISEMPTY( &pwcons[op->o_conn->c_conn_idx].dn )) {
|
|
slap_callback *sc = op->o_tmpcalloc( 1, sizeof( slap_callback ),
|
|
op->o_tmpmemctx );
|
|
sc->sc_next = op->o_callback;
|
|
/* Must use sc_response to insure we reset on success, before
|
|
* the client sees the response. Must use sc_cleanup to insure
|
|
* that it gets cleaned up if sc_response is not called.
|
|
*/
|
|
sc->sc_response = ppolicy_mod_cb;
|
|
sc->sc_cleanup = ppolicy_mod_cb;
|
|
op->o_callback = sc;
|
|
}
|
|
|
|
/*
|
|
* keep the necessary pwd.. operational attributes
|
|
* up to date.
|
|
*/
|
|
|
|
if (!got_changed) {
|
|
timestamp.bv_val = timebuf;
|
|
timestamp.bv_len = sizeof(timebuf);
|
|
slap_timestamp( &now, ×tamp );
|
|
|
|
mods = NULL;
|
|
if (pwmop != LDAP_MOD_DELETE) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_REPLACE;
|
|
mods->sml_numvals = 1;
|
|
mods->sml_values = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
|
|
mods->sml_nvalues = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
|
|
|
|
ber_dupbv( &mods->sml_values[0], ×tamp );
|
|
ber_dupbv( &mods->sml_nvalues[0], ×tamp );
|
|
} else if (attr_find(e->e_attrs, ad_pwdChangedTime )) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
}
|
|
if (mods) {
|
|
mods->sml_desc = ad_pwdChangedTime;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
}
|
|
|
|
if (!got_del_grace && attr_find(e->e_attrs, ad_pwdGraceUseTime )) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_desc = ad_pwdGraceUseTime;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
|
|
if (!got_del_lock && attr_find(e->e_attrs, ad_pwdAccountLockedTime )) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_desc = ad_pwdAccountLockedTime;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
|
|
if (!got_del_fail && attr_find(e->e_attrs, ad_pwdFailureTime )) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_desc = ad_pwdFailureTime;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
|
|
if ( zapReset ) {
|
|
/*
|
|
* ITS#7084 Is this a modification by the password
|
|
* administrator? Then force a reset if configured.
|
|
* Otherwise clear it.
|
|
*/
|
|
if ( pp.pwdMustChange && is_pwdadmin ) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_REPLACE;
|
|
mods->sml_desc = ad_pwdReset;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_numvals = 1;
|
|
mods->sml_values = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
|
|
mods->sml_nvalues = (BerVarray) ch_calloc( sizeof( struct berval ), 2 );
|
|
|
|
ber_dupbv( &mods->sml_values[0], (struct berval *)&slap_true_bv );
|
|
ber_dupbv( &mods->sml_nvalues[0], (struct berval *)&slap_true_bv );
|
|
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
} else if ( attr_find( e->e_attrs, ad_pwdReset ) ) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_desc = ad_pwdReset;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
}
|
|
|
|
/* TODO: do we remove pwdLastSuccess or set it to 'now'? */
|
|
if (!got_del_success && attr_find(e->e_attrs, ad_pwdLastSuccess )){
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_desc = ad_pwdLastSuccess;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
|
|
/* Delete all pwdInHistory attribute */
|
|
if (!got_history && pp.pwdInHistory == 0 &&
|
|
attr_find(e->e_attrs, ad_pwdHistory )){
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_desc = ad_pwdHistory;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
|
|
if (!got_history && pp.pwdInHistory > 0){
|
|
if (hsize >= pp.pwdInHistory) {
|
|
/*
|
|
* We use the >= operator, since we are going to add
|
|
* the existing password attribute value into the
|
|
* history - thus the cardinality of history values is
|
|
* about to rise by one.
|
|
*
|
|
* If this would push it over the limit of history
|
|
* values (remembering - the password policy could have
|
|
* changed since the password was last altered), we must
|
|
* delete at least 1 value from the pwdHistory list.
|
|
*
|
|
* In fact, we delete '(#pwdHistory attrs - max pwd
|
|
* history length) + 1' values, starting with the oldest.
|
|
* This is easily evaluated, since the linked list is
|
|
* created in ascending time order.
|
|
*/
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_desc = ad_pwdHistory;
|
|
mods->sml_numvals = hsize - pp.pwdInHistory + 1;
|
|
mods->sml_values = ch_calloc( sizeof( struct berval ),
|
|
hsize - pp.pwdInHistory + 2 );
|
|
BER_BVZERO( &mods->sml_values[ hsize - pp.pwdInHistory + 1 ] );
|
|
for(i=0,p=tl; i < (hsize - pp.pwdInHistory + 1); i++, p=p->next) {
|
|
BER_BVZERO( &mods->sml_values[i] );
|
|
ber_dupbv( &(mods->sml_values[i]), &p->bv );
|
|
}
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
free_pwd_history_list( &tl );
|
|
|
|
/*
|
|
* Now add the existing password into the history list.
|
|
* This will be executed even if the operation is to delete
|
|
* the password entirely.
|
|
*
|
|
* This isn't in the spec explicitly, but it seems to make
|
|
* sense that the password history list is the list of all
|
|
* previous passwords - even if they were deleted. Thus, if
|
|
* someone tries to add a historical password at some future
|
|
* point, it will fail.
|
|
*/
|
|
if ((pa = attr_find( e->e_attrs, pp.ad )) != NULL) {
|
|
mods = (Modifications *) ch_malloc( sizeof( Modifications ) );
|
|
mods->sml_op = LDAP_MOD_ADD;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_type.bv_val = NULL;
|
|
mods->sml_desc = ad_pwdHistory;
|
|
mods->sml_nvalues = NULL;
|
|
mods->sml_numvals = 1;
|
|
mods->sml_values = ch_calloc( sizeof( struct berval ), 2 );
|
|
mods->sml_values[ 1 ].bv_val = NULL;
|
|
mods->sml_values[ 1 ].bv_len = 0;
|
|
make_pwd_history_value( timebuf, &mods->sml_values[0], pa );
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
|
|
} else {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ppolicy_modify: password attr lookup failed\n" );
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Controversial bit here. If the new password isn't hashed
|
|
* (ie, is cleartext), we probably should hash it according
|
|
* to the default hash. The reason for this is that we want
|
|
* to use the policy if possible, but if we hash the password
|
|
* before, then we're going to run into trouble when it
|
|
* comes time to check the password.
|
|
*
|
|
* Now, the right thing to do is to use the extended password
|
|
* modify operation, but not all software can do this,
|
|
* therefore it makes sense to hash the new password, now
|
|
* we know it passes the policy requirements.
|
|
*
|
|
* Of course, if the password is already hashed, then we
|
|
* leave it alone.
|
|
*/
|
|
|
|
if ((pi->hash_passwords) && (addmod) && !newpw.bv_val &&
|
|
(password_scheme( &(addmod->sml_values[0]), NULL ) != LDAP_SUCCESS))
|
|
{
|
|
struct berval hpw, bv;
|
|
|
|
slap_passwd_hash( &(addmod->sml_values[0]), &hpw, &txt );
|
|
if (hpw.bv_val == NULL) {
|
|
/*
|
|
* hashing didn't work. Emit an error.
|
|
*/
|
|
rs->sr_err = LDAP_OTHER;
|
|
rs->sr_text = txt;
|
|
goto return_results;
|
|
}
|
|
bv = addmod->sml_values[0];
|
|
/* clear and discard the clear password */
|
|
memset(bv.bv_val, 0, bv.bv_len);
|
|
ber_memfree(bv.bv_val);
|
|
addmod->sml_values[0] = hpw;
|
|
}
|
|
} else {
|
|
/* ITS#8762 Make sure we drop pwdFailureTime if unlocking */
|
|
if (got_del_lock && !got_del_fail && attr_find(e->e_attrs, ad_pwdFailureTime )) {
|
|
mods = (Modifications *) ch_calloc( sizeof( Modifications ), 1 );
|
|
mods->sml_op = LDAP_MOD_DELETE;
|
|
mods->sml_desc = ad_pwdFailureTime;
|
|
mods->sml_flags = SLAP_MOD_INTERNAL;
|
|
mods->sml_next = NULL;
|
|
modtail->sml_next = mods;
|
|
modtail = mods;
|
|
}
|
|
}
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
be_entry_release_r( op, e );
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
return_results:
|
|
free_pwd_history_list( &tl );
|
|
op->o_bd->bd_info = (BackendInfo *)on->on_info;
|
|
be_entry_release_r( op, e );
|
|
if ( send_ctrl ) {
|
|
ctrl = create_passcontrol( op, -1, -1, pErr );
|
|
slap_add_ctrl( op, rs, ctrl );
|
|
if ( is_pwdexop ) {
|
|
/* Retain controls for the actual response */
|
|
rs->sr_flags &= ~REP_CTRLS_MUSTBEFREED;
|
|
}
|
|
}
|
|
send_ldap_result( op, rs );
|
|
if ( free_txt ) {
|
|
if ( is_pwdexop ) {
|
|
slap_callback *cb;
|
|
cb = op->o_tmpcalloc( sizeof(ppbind)+sizeof(slap_callback),
|
|
1, op->o_tmpmemctx );
|
|
|
|
/* Setup a callback so we can free the text when sent */
|
|
cb->sc_cleanup = ppolicy_text_cleanup;
|
|
cb->sc_private = (void *)txt;
|
|
overlay_callback_after_backover( op, cb, 1 );
|
|
} else {
|
|
if ( rs->sr_text == txt ) {
|
|
rs->sr_text = NULL;
|
|
}
|
|
free( (char *)txt );
|
|
}
|
|
}
|
|
if ( send_ctrl ) {
|
|
if ( is_pwdexop ) {
|
|
/* if this is a pwdModify exop. we need to add the
|
|
* control later */
|
|
slap_callback *cb = op->o_tmpcalloc( sizeof(slap_callback),
|
|
1, op->o_tmpmemctx );
|
|
|
|
cb->sc_cleanup = ppolicy_ctrls_cleanup;
|
|
|
|
assert( !(rs->sr_flags & REP_CTRLS_MUSTBEFREED) );
|
|
rs->sr_flags |= REP_CTRLS_MUSTBEFREED;
|
|
} else {
|
|
ppolicy_ctrls_cleanup( op, rs );
|
|
}
|
|
}
|
|
return rs->sr_err;
|
|
}
|
|
|
|
static int
|
|
ppolicy_parseCtrl(
|
|
Operation *op,
|
|
SlapReply *rs,
|
|
LDAPControl *ctrl )
|
|
{
|
|
if ( !BER_BVISNULL( &ctrl->ldctl_value ) ) {
|
|
rs->sr_text = "passwordPolicyRequest control value not absent";
|
|
return LDAP_PROTOCOL_ERROR;
|
|
}
|
|
op->o_ctrlflag[ppolicy_cid] = ctrl->ldctl_iscritical
|
|
? SLAP_CONTROL_CRITICAL
|
|
: SLAP_CONTROL_NONCRITICAL;
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
ppolicy_au_parseCtrl(
|
|
Operation *op,
|
|
SlapReply *rs,
|
|
LDAPControl *ctrl )
|
|
{
|
|
if ( !BER_BVISNULL( &ctrl->ldctl_value ) ) {
|
|
rs->sr_text = "account usability control value not absent";
|
|
return LDAP_PROTOCOL_ERROR;
|
|
}
|
|
op->o_ctrlflag[account_usability_cid] = ctrl->ldctl_iscritical
|
|
? SLAP_CONTROL_CRITICAL
|
|
: SLAP_CONTROL_NONCRITICAL;
|
|
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
static int
|
|
attrPretty(
|
|
Syntax *syntax,
|
|
struct berval *val,
|
|
struct berval *out,
|
|
void *ctx )
|
|
{
|
|
AttributeDescription *ad = NULL;
|
|
const char *err;
|
|
int code;
|
|
|
|
code = slap_bv2ad( val, &ad, &err );
|
|
if ( !code ) {
|
|
ber_dupbv_x( out, &ad->ad_type->sat_cname, ctx );
|
|
}
|
|
return code;
|
|
}
|
|
|
|
static int
|
|
attrNormalize(
|
|
slap_mask_t use,
|
|
Syntax *syntax,
|
|
MatchingRule *mr,
|
|
struct berval *val,
|
|
struct berval *out,
|
|
void *ctx )
|
|
{
|
|
AttributeDescription *ad = NULL;
|
|
const char *err;
|
|
int code;
|
|
|
|
code = slap_bv2ad( val, &ad, &err );
|
|
if ( !code ) {
|
|
ber_str2bv_x( ad->ad_type->sat_oid, 0, 1, out, ctx );
|
|
}
|
|
return code;
|
|
}
|
|
|
|
static int
|
|
ppolicy_db_init(
|
|
BackendDB *be,
|
|
ConfigReply *cr
|
|
)
|
|
{
|
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
|
pp_info *pi;
|
|
|
|
if ( SLAP_ISGLOBALOVERLAY( be ) ) {
|
|
/* do not allow slapo-ppolicy to be global by now (ITS#5858) */
|
|
if ( cr ){
|
|
snprintf( cr->msg, sizeof(cr->msg),
|
|
"slapo-ppolicy cannot be global" );
|
|
Debug( LDAP_DEBUG_ANY, "%s\n", cr->msg );
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
pi = on->on_bi.bi_private = ch_calloc( sizeof(pp_info), 1 );
|
|
|
|
if ( !pwcons ) {
|
|
/* accommodate for c_conn_idx == -1 */
|
|
pwcons = ch_calloc( sizeof(pw_conn), dtblsize + 1 );
|
|
pwcons++;
|
|
}
|
|
|
|
ov_count++;
|
|
|
|
ldap_pvt_thread_mutex_init( &pi->pwdFailureTime_mutex );
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
ppolicy_db_open(
|
|
BackendDB *be,
|
|
ConfigReply *cr
|
|
)
|
|
{
|
|
int rc;
|
|
|
|
if ( (rc = overlay_register_control( be, LDAP_CONTROL_X_ACCOUNT_USABILITY )) != LDAP_SUCCESS ) {
|
|
return rc;
|
|
}
|
|
return overlay_register_control( be, LDAP_CONTROL_PASSWORDPOLICYREQUEST );
|
|
}
|
|
|
|
static int
|
|
ppolicy_db_close(
|
|
BackendDB *be,
|
|
ConfigReply *cr
|
|
)
|
|
{
|
|
#ifdef SLAP_CONFIG_DELETE
|
|
overlay_unregister_control( be, LDAP_CONTROL_PASSWORDPOLICYREQUEST );
|
|
overlay_unregister_control( be, LDAP_CONTROL_X_ACCOUNT_USABILITY );
|
|
#endif /* SLAP_CONFIG_DELETE */
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
ppolicy_db_destroy(
|
|
BackendDB *be,
|
|
ConfigReply *cr
|
|
)
|
|
{
|
|
slap_overinst *on = (slap_overinst *) be->bd_info;
|
|
pp_info *pi = on->on_bi.bi_private;
|
|
policy_rule *pr = pi->policy_rules, *next;
|
|
|
|
on->on_bi.bi_private = NULL;
|
|
ldap_pvt_thread_mutex_destroy( &pi->pwdFailureTime_mutex );
|
|
free( pi->def_policy.bv_val );
|
|
while ( pr ) {
|
|
next = pr->next;
|
|
ppolicy_rule_free( pr );
|
|
pr = next;
|
|
}
|
|
free( pi );
|
|
|
|
ov_count--;
|
|
if ( ov_count <=0 && pwcons ) {
|
|
pw_conn *pwc = pwcons;
|
|
pwcons = NULL;
|
|
pwc--;
|
|
ch_free( pwc );
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static char *extops[] = {
|
|
LDAP_EXOP_MODIFY_PASSWD,
|
|
NULL
|
|
};
|
|
|
|
static slap_overinst ppolicy;
|
|
|
|
int ppolicy_initialize()
|
|
{
|
|
int i, code;
|
|
|
|
for (i=0; pwd_OpSchema[i].def; i++) {
|
|
code = register_at( pwd_OpSchema[i].def, pwd_OpSchema[i].ad, 0 );
|
|
if ( code ) {
|
|
Debug( LDAP_DEBUG_ANY,
|
|
"ppolicy_initialize: register_at failed\n" );
|
|
return code;
|
|
}
|
|
/* Allow Manager to set these as needed */
|
|
if ( is_at_no_user_mod( (*pwd_OpSchema[i].ad)->ad_type )) {
|
|
(*pwd_OpSchema[i].ad)->ad_type->sat_flags |=
|
|
SLAP_AT_MANAGEABLE;
|
|
}
|
|
}
|
|
ad_pwdLastSuccess = slap_schema.si_ad_pwdLastSuccess;
|
|
{
|
|
Syntax *syn;
|
|
MatchingRule *mr;
|
|
|
|
syn = ch_malloc( sizeof( Syntax ));
|
|
*syn = *ad_pwdAttribute->ad_type->sat_syntax;
|
|
syn->ssyn_pretty = attrPretty;
|
|
ad_pwdAttribute->ad_type->sat_syntax = syn;
|
|
|
|
mr = ch_malloc( sizeof( MatchingRule ));
|
|
*mr = *ad_pwdAttribute->ad_type->sat_equality;
|
|
mr->smr_normalize = attrNormalize;
|
|
ad_pwdAttribute->ad_type->sat_equality = mr;
|
|
}
|
|
|
|
for (i=0; pwd_ocs[i].def; i++) {
|
|
code = register_oc( pwd_ocs[i].def, pwd_ocs[i].oc, 0 );
|
|
if ( code ) {
|
|
Debug( LDAP_DEBUG_ANY, "ppolicy_initialize: "
|
|
"register_oc failed\n" );
|
|
return code;
|
|
}
|
|
}
|
|
|
|
code = register_supported_control( LDAP_CONTROL_PASSWORDPOLICYREQUEST,
|
|
SLAP_CTRL_ADD|SLAP_CTRL_BIND|SLAP_CTRL_MODIFY, extops,
|
|
ppolicy_parseCtrl, &ppolicy_cid );
|
|
if ( code != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "Failed to register control %d\n", code );
|
|
return code;
|
|
}
|
|
|
|
code = register_supported_control( LDAP_CONTROL_X_ACCOUNT_USABILITY,
|
|
SLAP_CTRL_SEARCH, NULL,
|
|
ppolicy_au_parseCtrl, &account_usability_cid );
|
|
if ( code != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "Failed to register control %d\n", code );
|
|
return code;
|
|
}
|
|
|
|
/* We don't expect to receive these controls, only send them */
|
|
code = register_supported_control( LDAP_CONTROL_X_PASSWORD_EXPIRED,
|
|
0, NULL, NULL, NULL );
|
|
if ( code != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "Failed to register control %d\n", code );
|
|
return code;
|
|
}
|
|
|
|
code = register_supported_control( LDAP_CONTROL_X_PASSWORD_EXPIRING,
|
|
0, NULL, NULL, NULL );
|
|
if ( code != LDAP_SUCCESS ) {
|
|
Debug( LDAP_DEBUG_ANY, "Failed to register control %d\n", code );
|
|
return code;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_init( &chk_syntax_mutex );
|
|
|
|
ppolicy.on_bi.bi_type = "ppolicy";
|
|
ppolicy.on_bi.bi_flags = SLAPO_BFLAG_SINGLE;
|
|
ppolicy.on_bi.bi_db_init = ppolicy_db_init;
|
|
ppolicy.on_bi.bi_db_open = ppolicy_db_open;
|
|
ppolicy.on_bi.bi_db_close = ppolicy_db_close;
|
|
ppolicy.on_bi.bi_db_destroy = ppolicy_db_destroy;
|
|
|
|
ppolicy.on_bi.bi_op_add = ppolicy_add;
|
|
ppolicy.on_bi.bi_op_bind = ppolicy_bind;
|
|
ppolicy.on_bi.bi_op_compare = ppolicy_compare;
|
|
ppolicy.on_bi.bi_op_delete = ppolicy_restrict;
|
|
ppolicy.on_bi.bi_op_modify = ppolicy_modify;
|
|
ppolicy.on_bi.bi_op_search = ppolicy_search;
|
|
ppolicy.on_bi.bi_operational = ppolicy_operational;
|
|
ppolicy.on_bi.bi_connection_destroy = ppolicy_connection_destroy;
|
|
|
|
ppolicy.on_bi.bi_cf_ocs = ppolicyocs;
|
|
code = config_register_schema( ppolicycfg, ppolicyocs );
|
|
if ( code ) return code;
|
|
|
|
return overlay_register( &ppolicy );
|
|
}
|
|
|
|
#if SLAPD_OVER_PPOLICY == SLAPD_MOD_DYNAMIC
|
|
int init_module(int argc, char *argv[]) {
|
|
return ppolicy_initialize();
|
|
}
|
|
#endif
|
|
|
|
#endif /* defined(SLAPD_OVER_PPOLICY) */
|