summaryrefslogtreecommitdiffstats
path: root/source4/lib/ldb
Commit message (Collapse)AuthorAgeFilesLines
* s4:ldb_msg_check_string_attribute - add a comment about the result valuesMatthias Dieter Wallnöfer2009-10-182-1/+14
|
* Revert "s4:ldb_msg - Use LDB constants on results"Matthias Dieter Wallnöfer2009-10-181-3/+4
| | | | | This reverts commit 56a8baff3df6a5120b6c7bbca771dfb7c6934fd5. Simo pointed out that I was wrong here.
* s4:ldb_msg - Use LDB constants on resultsMatthias Dieter Wallnöfer2009-10-181-5/+7
|
* s4:ldb_ldap - Fix intendationMatthias Dieter Wallnöfer2009-10-181-8/+8
|
* s4:ldb - fixed dangling pointer in ldb_request_add_control()Endi S. Dewata2009-10-161-2/+7
|
* s4-ldaptest: "testgroup" is a bit too commonAndrew Tridgell2009-10-151-2/+2
| | | | | This failed on one of my test boxes that has a group called "testgroup". using "testgroupXX" should be a bit better.
* s4-ldap: test the rDN size limitAndrew Tridgell2009-10-151-0/+25
|
* s4-ldb: removed bugus RDN length checkAndrew Tridgell2009-10-151-5/+0
| | | | This isn't the rDN !
* s4:ldb_tdb - Revert some introduced "trivial gotos"Matthias Dieter Wallnöfer2009-10-121-21/+11
| | | | I hope that this makes abartlet & simo happy again (consider mailing list).
* Revert "s4:ldb - add a check which has to be done on beginning of a "modify" ↵Matthias Dieter Wallnöfer2009-10-121-8/+0
| | | | | | | | | | | | operation" This reverts commit f9990e9b391f330a8e6c5c158ee4e4eaa50f6176. abartlet claims that this behaviour is too AD specific to put here. Btw I had also some doubts if this is clean enough. I put it only here to make "ldap.py" pass. I'll try to find a new solution soon.
* s4:ldb Allow a NULL module listAndrew Bartlett2009-10-121-1/+1
|
* Allow (and ignore) distinguishedName on special recordsAndrew Bartlett2009-10-121-0/+2
| | | | | | | They are not stored, so we can ignore them (makes copying records much easier) Andrew Bartlett
* s4:ldb Reload the 'ltdb_cache' when @OPTIONS changesAndrew Bartlett2009-10-121-0/+7
| | | | | | | (Otherwise setting the check base on search option is not applied until after a reload). Andrew Bartlett
* s4:ldb Allow a module string of ""Andrew Bartlett2009-10-121-0/+6
| | | | | | (We may have no modules set) Andrew Bartlett
* s4:ldb - SQLite: port some constraints from the TDB backend also to the ↵Matthias Dieter Wallnöfer2009-10-081-0/+49
| | | | SQLITE one
* s4:ldap.py - Further enhancementsMatthias Dieter Wallnöfer2009-10-081-6/+236
| | | | | | | | - Enhance test for "distinguishedName" - Add a test for single-valued attributes - Add a test for multi-valued attributes - Add a test for empty messages - Add a test for empty attributes
* s4:ldb - add a check which has to be done on beginning of a "modify" operationMatthias Dieter Wallnöfer2009-10-081-0/+8
|
* s4:ldb_tdb - Rework/VariousMatthias Dieter Wallnöfer2009-10-081-192/+200
| | | | | | - Unify the error handling method with "done" mark in all longer functions - Fix up result codes to match more the real MS AD - Some cosmetic fixups
* s4:various LDB modules - "build_request" functions - propagate result codes backMatthias Dieter Wallnöfer2009-10-063-3/+6
| | | | | | | | | It's very useful to know the exact result code when something fails and not only a generic (by the module) created one. Sure, there are some exception cases with specific results (special message constellations, attributes, values...) which shouldn't be changed at all (examples of them are in the "ldap.py" test). Therefore I looked very carefully to not change them.
* s4-ldb: fixed error on single value errorAndrew Tridgell2009-10-061-1/+1
| | | | | | When you try to add a 2nd value to a single valued attribute you get LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS. w2k8-r2 join to s4 relies on this error, doing a replace after it sees the error
* s4:ldap.py - commented out the UTF8 tests (and fixed some deletion DNs)Matthias Dieter Wallnöfer2009-10-031-10/+12
|
* s4:ldb_tdb - fix memory leaksMatthias Dieter Wallnöfer2009-10-031-7/+12
|
* s4:ldb.h - add constant for LDAP EXOP password changeMatthias Dieter Wallnöfer2009-10-031-4/+21
| | | | Also enhance some other comments.
* s4:ldap.py - add tests for valid parent and RDNMatthias Dieter Wallnöfer2009-10-031-0/+39
|
* s4:ldap.py - add a test for the "systemOnly" classesMatthias Dieter Wallnöfer2009-10-031-1/+16
|
* s4:rdn_name - fix up the rename operationMatthias Dieter Wallnöfer2009-10-031-4/+4
| | | | A function call was wrong ("ldb_request" rathen than "ldb_next_request").
* Revert "s4:LDB/LDAP - Re-allow renames"Matthias Dieter Wallnöfer2009-10-031-49/+4
| | | | | | | This reverts commit 767fce6fccf484b547219abd5e6abc941eacaf92. Simo pointed out that the patch generates race conditions. We need to solve this using a new control.
* s4:ldap.py - add a very special rename test (with invalid - empty RDN)Matthias Dieter Wallnöfer2009-10-021-9/+23
|
* s4:ldb_ildap - Don't segfault on a empty RDNMatthias Dieter Wallnöfer2009-10-021-4/+12
|
* s4:LDB/LDAP - Re-allow renamesMatthias Dieter Wallnöfer2009-10-021-6/+46
| | | | | | The main problem is that the "rdn_name" module launches on a rename request also a modification one with the "special attributes" which can't be changed directly. An introduced flag helps to bypass the restriction.
* s4:ldap.py - major enhancementsMatthias Dieter Wallnöfer2009-10-021-102/+187
| | | | | | | - Clean up and reorder it a bit - Test which adds invalid attributes - Test which makes sure that the 'distinguishedName' attribute cannot be modified - Test which makes sure that we cannot change the RDN/'name' attribute through a modify request
* s4:ldb Don't allow RDN to be modified with an LDB modify messageAndrew Bartlett2009-10-021-1/+30
| | | | | | Found by the Microsoft testsuite at the AD interop event. Andrew Bartlett
* s4:rdn_name module - a normal error message should be enough for this failureMatthias Dieter Wallnöfer2009-10-021-7/+9
| | | | | | I don't think that we really want to have this error printed out on the server console (stdout) since this hasn't serious results as DB or data corruption and similar.
* s4:ldb Don't allow modifcation of distinguishedNameAndrew Bartlett2009-10-021-1/+7
|
* Revert "s4:ldb Fix ldb_list_find() folowing the change from char * to TDB_DATA"Andrew Tridgell2009-10-021-4/+10
| | | | This reverts commit f0c2c9854c7659221fe9480110a7d9b2b48afbf9.
* Revert "s4:ldb always talloc_free() the ldb_ldif_write context, even on success"Andrew Tridgell2009-10-021-1/+0
| | | | This reverts commit a610843e9f21ee77fd29356313d2ef05fe25a1ed.
* Revert "s4:ldb Remove LTDB_PACKING_FORMAT_NODN"Andrew Tridgell2009-10-022-0/+16
| | | | This reverts commit bcbf0ae1e707c2355824800dc213d364070f070a.
* Revert "s4-ldb: merged with master"Andrew Tridgell2009-10-025-623/+523
| | | | This reverts commit 14c9070322d089dd96b389e8087c4f4bf1a6c7cc.
* Revert "s4-ldb: overallocate idxptr to reduce memory fragmentation"Andrew Tridgell2009-10-021-3/+1
| | | | This reverts commit e7846f69cacdd0551fcd777a71bf833a2fc9ca2b.
* Revert "s4-ldb: fixed a memory leak"Andrew Tridgell2009-10-021-6/+1
| | | | This reverts commit c7358d989034c9d936c04f2a7e4f89db252b798e.
* s4:ldb.h - cosmetic - add whitespaceMatthias Dieter Wallnöfer2009-10-021-1/+1
|
* s4:dsdb Add 'lazy_commit' module to swallow the 'lazy commit' OIDAndrew Bartlett2009-10-021-0/+9
| | | | | | | | | | | This allows this control to be specified as critical. We support the control because we choose to always be durable in our transactions. We really, really need a 'duplicate request' API, as at the moment we can't do this without a large, error-prone set of code that cannot cope with new request fields or types. Andrew Bartlett
* s4-ldb: fixed a memory leakAndrew Tridgell2009-10-021-1/+6
|
* s4-ldb: overallocate idxptr to reduce memory fragmentationAndrew Tridgell2009-10-021-1/+3
|
* s4-ldb: merged with masterAndrew Bartlett2009-10-025-523/+623
|
* s4:ldb Remove LTDB_PACKING_FORMAT_NODNAndrew Bartlett2009-10-022-16/+0
| | | | | | | The restructured code makes this hader to support, and we have not had this kind of LDB for a very long time now. Andrew Bartlett
* s4:ldb always talloc_free() the ldb_ldif_write context, even on successAndrew Bartlett2009-10-021-0/+1
|
* s4:ldb Fix ldb_list_find() folowing the change from char * to TDB_DATAAndrew Bartlett2009-10-021-10/+4
| | | | | | (The format of index records in the internal manipulation changed) Andrew Bartlett
* pythonbindings: allow add() to have an array of controls as second parameterMatthieu Patou2009-10-021-0/+1
|
* s4-ldb: Add new relax controls that allow relaxed x500 constraints checksMatthieu Patou2009-10-022-0/+35
|