Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-11-13 | s4:password_hash LDB module - return "ERR_CONSTRAINT_VIOLATION" on password ↵ | Matthias Dieter Wallnöfer | 1 | -6/+9 | |
conversion errors This errors can happen also on a regular basis - then we shouldn't return ERR_OPERATIONS_ERROR (this error code is reserved for very serious failures). Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sat Nov 13 12:37:36 UTC 2010 on sn-devel-104 | |||||
2010-11-13 | s4:objectclass LDB module - multiple "objectClass" change elements are ↵ | Matthias Dieter Wallnöfer | 2 | -173/+178 | |
unfortunately still allowed The test message has been compressed - therefore I've now used "modify_ldif". | |||||
2010-11-12 | samldb: relax groupType modification checks | Matthieu Patou | 1 | -27/+32 | |
Allow programs with the PROVISION control to bypass groupType checks. This is needed by upgradeprovision for older alpha (11, 10 ...) | |||||
2010-11-12 | s4:objectclass LDB module - we should not simply ignore additional ↵ | Matthias Dieter Wallnöfer | 2 | -2/+29 | |
"objectClass" attribute changes There first one we perform all other tentatives are terminated with ERR_ATTRIBUTE_OR_VALUE_EXISTS (tested against Windows). Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Nov 12 19:39:07 UTC 2010 on sn-devel-104 | |||||
2010-11-12 | s4:repl_meta_data LDB module - convert two debug messages into error messages | Matthias Dieter Wallnöfer | 1 | -4/+4 | |
These regarding "objectGUID". | |||||
2010-11-12 | s4:samldb/objectclass_attrs LDB modules - move "description" logic from ↵ | Matthias Dieter Wallnöfer | 4 | -198/+245 | |
"objectclass_attrs" into "samldb" This according to an answer from dochelp is SAM specific behaviour. | |||||
2010-11-12 | Lowercase DNS_UPDATE_SRV name. | Jelmer Vernooij | 1 | -1/+1 | |
2010-11-11 | s4-repl: Propagate remote prefixMap in DRSUAPI data conversion functions | Kamen Mazdrashki | 2 | -3/+21 | |
2010-11-11 | s4-dsdb_syntax: Warning message that we can't find requested ATTID in Schema ↵ | Kamen Mazdrashki | 1 | -0/+1 | |
Cache | |||||
2010-11-11 | s4-prefixMap: dsdb_schema_pfm_oid_from_attid() to use const prefixMap | Kamen Mazdrashki | 1 | -1/+2 | |
It is not supposed to change supplied prefixMap | |||||
2010-11-11 | s4-dsdb_syntax: Use remote prefixMap to handle generic cases in ↵ | Kamen Mazdrashki | 1 | -2/+7 | |
drsuapi_to_ldb conversions | |||||
2010-11-11 | s4-dsdb_syntax: Add remote prefixMap member for dsdb_syntax conversions | Kamen Mazdrashki | 2 | -0/+5 | |
2010-11-11 | s4-repl: dsdb_extended_replicated_objects_convert -> ↵ | Kamen Mazdrashki | 2 | -23/+23 | |
dsdb_replicated_objects_convert/ It is part of dsdb_replicated_* family of functions | |||||
2010-11-11 | s4-repl: dsdb_extended_replicated_objects_commit -> ↵ | Kamen Mazdrashki | 2 | -6/+6 | |
dsdb_replicated_objects_commit It is part of dsdb_replicated_* family of functions | |||||
2010-11-11 | s4-repl: dsdb_convert_object -> dsdb_origin_object_convert | Kamen Mazdrashki | 1 | -7/+7 | |
It is used in dsdb_origin_objects_commit() func, hence the dsdb_origin_ prefix | |||||
2010-11-11 | s4-dsdb Remove incorrectly declared ** variable used as *. | Andrew Bartlett | 1 | -6/+3 | |
The cleartext_utf16_str variable was declared char **, but due to the cast on convert_string_talloc() and the lack of type checking here and on data_blob_const (due to void *) it was able to be used as if it was a char *. The simple solution seems to be to fill in cleartext_utf16 blob directly. Andrew Bartlett | |||||
2010-11-11 | s4-dsdb Convert new krbtgt_xxx password into UTF16 | Andrew Bartlett | 1 | -1/+12 | |
The new stricter test on clearTextPassword values caught out that we did not provide a utf16 password here. Andrew Bartlett | |||||
2010-11-11 | s4-dsdb Return an error if we can't convert UTF16MUNGED -> UTF8 | Andrew Bartlett | 1 | -1/+5 | |
The UTF16MUNGED helper will map all invalid sequences (except odd input length) to valid input sequences, per the rules. Therefore if it fails, we need to bail out, somehing serious is wrong. Andrew Bartlett | |||||
2010-11-11 | s4:dsdb - proof against empty RDN values where expected | Matthias Dieter Wallnöfer | 4 | -2/+28 | |
This should prevent crashes as pointed out on the mailing list. | |||||
2010-11-11 | Cannot create OU using custom Schema class | Zahari Zahariev | 1 | -0/+56 | |
If we define our own child class 'subClassOf' system Schema class e.g. organizationalUnit then we cannot create OU in the Dafualt Naming Context that has this custom Schama class in the objectClass attribute. | |||||
2010-11-11 | s4:objectclass LDB module - allow RDNs also to come from superclasses | Matthias Dieter Wallnöfer | 1 | -11/+39 | |
Detected by a testcase written by Zahari Zahariev. | |||||
2010-11-11 | s4:passwords.py - add a test for the normal "userPassword" behaviour | Matthias Dieter Wallnöfer | 1 | -1/+97 | |
Just to make sure that this works now too | |||||
2010-11-11 | s4:password_hash and acl LDB modules - handle the "userPassword" attribute ↵ | Matthias Dieter Wallnöfer | 4 | -12/+59 | |
according to the "dSHeuristics" | |||||
2010-11-11 | s4:password_hash LDB module - move "samdb_msg_find_old_and_new_ldb_val" into ↵ | Matthias Dieter Wallnöfer | 2 | -78/+77 | |
the password_hash LDB module It's only used there and so I think it doesn't really belong in "dsdb/common/util.c" (I first thought that it could be useful for ACL checking but obviously it wasn't). | |||||
2010-11-11 | s4:local_password LDB module - remove schema checking code and fix some typos | Matthias Dieter Wallnöfer | 1 | -12/+6 | |
This is now done by the "objectclass_attrs" LDB module. | |||||
2010-11-11 | s4:ldb_modules/util.c - "dsHeuristics" -> "dSHeuristics" | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2010-11-11 | s4:acl.py - two password change tests are expected to fails on Windows 2000 ↵ | Matthias Dieter Wallnöfer | 1 | -3/+14 | |
function level | |||||
2010-11-11 | s4:python tests - fix script names in the help text | Matthias Dieter Wallnöfer | 5 | -5/+5 | |
2010-11-10 | s4-pydsdb: py_dsdb_am_rodc() may call samdb_rodc() only once to get the job ↵ | Kamen Mazdrashki | 1 | -1/+1 | |
done :) | |||||
2010-11-10 | s4-pydsdb: py_dsdb_load_partition_usn() - simplify error handling in | Kamen Mazdrashki | 1 | -2/+4 | |
and print on which partition error has occured | |||||
2010-11-10 | s4-pydsdb-py_samdb_ntds_objectGUID(): Avoid potential memory leak | Kamen Mazdrashki | 1 | -7/+6 | |
in case py_ldb is not a valid LDB | |||||
2010-11-10 | s4-pydsdb-py_dsdb_get_oid_from_attid(): Avoid potential memory leak | Kamen Mazdrashki | 1 | -2/+2 | |
in case py_ldb is not a valid LDB | |||||
2010-11-10 | s4-pydsdb.c: Fix small memory leak in py_samdb_set_domain_sid() | Kamen Mazdrashki | 1 | -0/+1 | |
2010-11-10 | s4/syntax: Add tests for DN+String and DN+Binary | Anatoliy Atanasov | 1 | -0/+420 | |
These tests aim to verify the behavior for 2.5.5.7 and 2.5.5.14 syntaxes. Autobuild-User: Anatoliy Atanasov <anatoliy@samba.org> Autobuild-Date: Wed Nov 10 06:57:04 UTC 2010 on sn-devel-104 | |||||
2010-11-09 | s4:dsdb/operational.c: use DSDB_SECRET_ATTRIBUTES_EX() | Stefan Metzmacher | 1 | -5/+2 | |
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Nov 9 22:43:44 UTC 2010 on sn-devel-104 | |||||
2010-11-09 | s4:dsdb/common: add DSDB_SECRET_ATTRIBUTES_EX() | Stefan Metzmacher | 1 | -11/+14 | |
metze | |||||
2010-11-09 | s4:dsdb/local_password: use DSDB_SECRET_ATTRIBUTES | Stefan Metzmacher | 1 | -7/+3 | |
metze | |||||
2010-11-09 | s4:dsdb/schema/schema_filtered.c: make never_in_filtered_attrs static const | Stefan Metzmacher | 1 | -1/+2 | |
metze | |||||
2010-11-09 | s4:dsdb/schema/schema_filtered.c: use DSDB_SECRET_ATTRIBUTES | Stefan Metzmacher | 1 | -11/+1 | |
metze | |||||
2010-11-09 | s4:dsdb/common: create a DSDB_SECRET_ATTRIBUTES define with all secret ↵ | Stefan Metzmacher | 2 | -12/+15 | |
attributes We should have them just in one place, so that we don't forget some of them. metze | |||||
2010-11-08 | s4-drs: reduce verbosity of dreplsrv_out_connection_attach | Andrew Tridgell | 1 | -2/+2 | |
2010-11-08 | s4-attid: Uppercase ATTID type constants | Kamen Mazdrashki | 3 | -10/+10 | |
Thanks Metze for noting this! Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Mon Nov 8 23:06:41 UTC 2010 on sn-devel-104 | |||||
2010-11-08 | s4:password_hash LDB module - introduce a "userPassword" flag which ↵ | Matthias Dieter Wallnöfer | 1 | -15/+37 | |
enables/disables the two "userPassword" behaviours - Enabled: "userPassword" password change behaviour (will later be linked to the "dSHeuristics") - Disabled: "userPassword" plain attribute behaviour (default) Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Mon Nov 8 15:28:06 UTC 2010 on sn-devel-104 | |||||
2010-11-08 | s4:passwords.py - test empty password attributes behaviour | Matthias Dieter Wallnöfer | 1 | -1/+154 | |
Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Mon Nov 8 12:09:56 UTC 2010 on sn-devel-104 | |||||
2010-11-08 | s4:password_hash LDB module - deleting password attributes is a little more ↵ | Matthias Dieter Wallnöfer | 1 | -6/+6 | |
complicated | |||||
2010-11-08 | s4:samdb_msg_find_old_and_new_ldb_val - rework | Matthias Dieter Wallnöfer | 2 | -10/+38 | |
- don't crash when no values where specified - return ERR_CONSTRAINT_VIOLATION on malformed messages - only check for flags when we are involved in a LDB modify operation | |||||
2010-11-08 | s4:password_hash LDB module - clear the fact that a delete of password ↵ | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
attributes isn't possible | |||||
2010-11-08 | s4:acl LDB module - define the delete passwords special case a bit better | Matthias Dieter Wallnöfer | 1 | -3/+4 | |
2010-11-08 | s4:passwords.py - add another two failure cases | Matthias Dieter Wallnöfer | 1 | -0/+21 | |
2010-11-08 | s4:pydsdb.c - use "Py_ssize_t" for Python list counters | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
Seems to be the most appropriate type |