mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
s4:dsdb: add new controls
- Add a new control for getting status informations (domain informations, password change status) directly from the module - Add a new control for allowing direct hash changes - Introduce an addtional control "change_old password checked" for the password
This commit is contained in:
parent
1913e03bd4
commit
726fb35f9f
@ -61,6 +61,27 @@ struct dsdb_control_current_partition {
|
||||
* much like LDB_CONTROL_EXTENDED_DN_OID when the DB stores an
|
||||
* extended DN, and otherwise returns normal DNs */
|
||||
|
||||
#define DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID "1.3.6.1.4.1.7165.4.3.6"
|
||||
|
||||
struct dsdb_control_password_change_status {
|
||||
struct {
|
||||
uint32_t pwdProperties;
|
||||
uint32_t pwdHistoryLength;
|
||||
int64_t maxPwdAge;
|
||||
int64_t minPwdAge;
|
||||
uint32_t minPwdLength;
|
||||
bool store_cleartext;
|
||||
const char *netbios_domain;
|
||||
const char *dns_domain;
|
||||
const char *realm;
|
||||
} domain_data;
|
||||
enum samPwdChangeReason reject_reason;
|
||||
};
|
||||
|
||||
#define DSDB_CONTROL_PASSWORD_HASH_VALUES_OID "1.3.6.1.4.1.7165.4.3.7"
|
||||
|
||||
#define DSDB_CONTROL_PASSWORD_CHANGE_OLD_PW_CHECKED_OID "1.3.6.1.4.1.7165.4.3.8"
|
||||
|
||||
#define DSDB_EXTENDED_REPLICATED_OBJECTS_OID "1.3.6.1.4.1.7165.4.4.1"
|
||||
struct dsdb_extended_replicated_object {
|
||||
struct ldb_message *msg;
|
||||
|
@ -178,6 +178,9 @@
|
||||
#Allocated: DSDB_CONTROL_REPLICATED_UPDATE_OID 1.3.6.1.4.1.7165.4.3.3
|
||||
#Allocated: DSDB_CONTROL_DN_STORAGE_FORMAT_OID 1.3.6.1.4.1.7165.4.3.4
|
||||
#Allocated: LDB_CONTROL_RECALCULATE_SD_OID 1.3.6.1.4.1.7165.4.3.5
|
||||
#Allocated: DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID 1.3.6.1.4.1.7165.4.3.6
|
||||
#Allocated: DSDB_CONTROL_PASSWORD_HASH_VALUES_OID 1.3.6.1.4.1.7165.4.3.7
|
||||
#Allocated: DSDB_CONTROL_PASSWORD_CHANGE_OLD_PW_CHECKED_OID 1.3.6.1.4.1.7165.4.3.8
|
||||
|
||||
# Extended 1.3.6.1.4.1.7165.4.4.x
|
||||
#Allocated: DSDB_EXTENDED_REPLICATED_OBJECTS_OID 1.3.6.1.4.1.7165.4.4.1
|
||||
|
Loading…
Reference in New Issue
Block a user