Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-06-06 | ldb:ltdb_filter_attrs - fix a counter variable type | Matthias Dieter Wallnöfer | 1 | -2/+3 | |
2010-05-30 | ldb:ldb_tdb/ldb_tdb.c - quiet a warning regarding TDB -> LDB error code ↵ | Matthias Dieter Wallnöfer | 1 | -0/+2 | |
conversions | |||||
2010-04-18 | ldb: mark the tdb backend in ldb as _PRIVATE_ | Andrew Tridgell | 1 | -1/+1 | |
2010-03-08 | s4:LDB TDB index code - reintroduce accidentally removed code part | Matthias Dieter Wallnöfer | 1 | -1/+3 | |
This was removed by 95d726f3018ef5d249f89d56bde24b7ee0c24ecf. Sorry. | |||||
2010-03-08 | LDB:TDB backend - change counter variables to "unsigned" where appropriate | Matthias Dieter Wallnöfer | 5 | -16/+19 | |
2010-02-22 | LDB related spelling fixes. | Brad Hards | 1 | -1/+1 | |
Signed-off-by: Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | |||||
2010-02-14 | s4-ldb: use TYPESAFE_QSORT() in the rest of the ldb code | Andrew Tridgell | 1 | -1/+1 | |
2010-02-10 | s4-ldb: update ldb_tdb to use new DLIST_ macros | Andrew Tridgell | 1 | -15/+3 | |
(cherry picked from commit 6ede911654566a7e21ded70dacac68df3b6a1bca) | |||||
2010-01-31 | s4:ldb quiet down rootdse control registration | Simo Sorce | 1 | -1/+1 | |
2010-01-30 | s4:ldb Fix check made conditional by mistake | Simo Sorce | 1 | -7/+11 | |
2010-01-30 | s4:ldb add support for permissive modify control | Simo Sorce | 1 | -24/+96 | |
2010-01-16 | s4-ldb: cope with bad ptr alignment in ldb_index.c | Andrew Tridgell | 1 | -3/+3 | |
We can't assume that a rec_ptr will come back from a tdb traverse with alignment sufficient for a pointer. | |||||
2010-01-08 | s4-ldb: improve error handling in indexing code | Andrew Tridgell | 2 | -5/+34 | |
When we get an indexing failure we want a clear error message | |||||
2010-01-02 | s4-ldb: use the RELAX control to disable single value checking on replace | Andrew Tridgell | 3 | -5/+16 | |
When using w2k3 linked attributes we are allowed to have multiple values on a single valued attribute. This happens when the other values are deleted. Setting the RELAX control tell the ldb-tdb backend to not check for this on replace, which means the caller has to check for single valued violations. | |||||
2009-12-16 | s4-ldb: show the OID of any unhandled critical controls | Andrew Tridgell | 1 | -4/+9 | |
It isn't very useful just saying that a control is not supported, without saying which one is the problem Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2009-12-09 | s4-ldb: fixed nested searches inside ldb modules | Andrew Tridgell | 2 | -4/+12 | |
We need to keep a search count in ltdb to allow for nesting of searches inside a module Signed-off-by: Andrew Tridgell <tridge@samba.org> | |||||
2009-12-09 | s4-ldb: added a missing ltdb_unlock_read() | Andrew Tridgell | 1 | -0/+1 | |
2009-11-20 | ldb:ldb_tdb backend/indexes - Outside API | Matthias Dieter Wallnöfer | 3 | -28/+30 | |
- The outside API contains "DN" string arguments: Bad. Since in this way we fully rely on the outside calls regarding the right DN format. Solution: Use always a "struct ldb_dn" entry. Since this one is interchangeable and we can handle it in our preferred way. | |||||
2009-11-20 | ldb:ldb_tdb backend/indexes - DN comparison | Matthias Dieter Wallnöfer | 1 | -4/+5 | |
- DN comparison: The function doesn't seem that efficient. I "upgraded" it a bit to be more powerful (added a second length check and do both before the string comparison) | |||||
2009-11-20 | s4-ldb: fixed an issue in rename/modify indexing | Andrew Tridgell | 1 | -16/+16 | |
When we rename or modify a record, we need to update the indexes at the same time. It is important that we use the DN of the actual message that is stored in the database to do this, not the DN that was passed in by the user. If the two differ in case then the index records needs to use the 'real' record DN, as index handling is currently case sensitive. | |||||
2009-10-27 | ldb:tdb backend - be also here more careful with the result value | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
"msg_delete_attribute" doesn't return an LDB result constant. | |||||
2009-10-27 | s4:ldb Add detail to failures in the indexing code | Andrew Bartlett | 1 | -2/+8 | |
2009-10-25 | Merge branch 'master' of ssh://git.samba.org/data/git/samba | Andrew Tridgell | 1 | -6/+6 | |
2009-10-25 | s4-ldb: allow for unescaped '=' in a index DN | Andrew Tridgell | 1 | -4/+0 | |
The ldb_dn_explode code normally enforces all special characters, including a '=', must be escaped. Unfortunately this conflicts with the ltdb index DNs, which for binary attributes may be base64 encoded. This allows a unescaped '=' as a special case for index DNs. | |||||
2009-10-25 | ldb:backend "connect" functions - convert result values to LDB constants | Matthias Dieter Wallnöfer | 1 | -6/+6 | |
I think this is better since "ldb_backend_connect" and "ldb_connect" which propagate those values should return only LDB constants. Therefore a conversion (especially for "-1") would be needed. | |||||
2009-10-25 | s4-ldb: ensure DNs pass validity tests in indexing | Andrew Tridgell | 1 | -0/+4 | |
2009-10-25 | s4-ldb: fixed string length handling on index records | Andrew Tridgell | 1 | -2/+2 | |
2009-10-25 | s4-ldb: don't allow modifies outside a transaction. | Andrew Tridgell | 1 | -0/+8 | |
2009-10-25 | s4-ldb: fixed re-index during a complex transaction | Andrew Tridgell | 1 | -10/+31 | |
We may have modified index objects in the in-memory index tdb | |||||
2009-10-22 | s4-ldb: added a TODO about checking the indexlist | Andrew Tridgell | 1 | -0/+2 | |
2009-10-22 | s4-ldb: fixed some memory leaks in new indexing code | Andrew Tridgell | 1 | -1/+3 | |
2009-10-22 | s4-ldb: don't try to index non-indexed attributes | Andrew Tridgell | 1 | -0/+4 | |
2009-10-22 | s4-ldb: ensure new dn_list elements are not owned by caller | Andrew Tridgell | 1 | -1/+1 | |
2009-10-22 | s4-ldb: over-allocate index records to save on realloc costs | Andrew Tridgell | 1 | -1/+5 | |
2009-10-22 | s4-ldb: fixed tdb error handling in ldb_index.c | Andrew Tridgell | 1 | -3/+8 | |
2009-10-22 | s4-ldb: delete empty index records | Andrew Tridgell | 1 | -0/+8 | |
2009-10-22 | s4-ldb: do more validation of idxptr lists | Andrew Tridgell | 1 | -12/+31 | |
2009-10-22 | s4-ldb: expose ltdb_err_map and ltdb_delete_noindex | Andrew Tridgell | 2 | -2/+5 | |
These will be used by ldb_index.c | |||||
2009-10-22 | s4-ldb: when taking a list intersection, the result can be as long as the ↵ | Andrew Tridgell | 1 | -1/+1 | |
first list Intuitively you would think it couldn't be longer than the minimum of the two lists, but we are deliberately allowing for duplicates at this level of the indexing code, which means the result can be longer | |||||
2009-10-22 | s4-ldb: ldb indexing rewrite - part1 | Andrew Tridgell | 4 | -909/+739 | |
This gets rid of the @IDXPTR approach to in-transaction indexing, instead using an in-memory tdb to hold index values during a transaction. This also cleans up a lot of the internal indexing logic, hopefully making it easier to understand. One of the big changes is in memory management, with a lot more use made of talloc tricks to avoid copying dn lists, and shortcuts used to avoid high intersection and union calculation costs. The overall result is that a re-provision on my laptop goes from 48s to a bit over 10s. | |||||
2009-10-21 | s4:ldb Put ltdb_private under the 'module' | Andrew Bartlett | 1 | -0/+1 | |
This helps track the memory better, as we can then place it under the partition hirarchy. Andrew Bartlett | |||||
2009-10-12 | s4:ldb_tdb - Revert some introduced "trivial gotos" | Matthias Dieter Wallnöfer | 1 | -21/+11 | |
I hope that this makes abartlet & simo happy again (consider mailing list). | |||||
2009-10-12 | Allow (and ignore) distinguishedName on special records | Andrew Bartlett | 1 | -0/+2 | |
They are not stored, so we can ignore them (makes copying records much easier) Andrew Bartlett | |||||
2009-10-12 | s4:ldb Reload the 'ltdb_cache' when @OPTIONS changes | Andrew Bartlett | 1 | -0/+7 | |
(Otherwise setting the check base on search option is not applied until after a reload). Andrew Bartlett | |||||
2009-10-08 | s4:ldb_tdb - Rework/Various | Matthias Dieter Wallnöfer | 1 | -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 | |||||
2009-10-06 | s4-ldb: fixed error on single value error | Andrew Tridgell | 1 | -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 | |||||
2009-10-03 | s4:ldb_tdb - fix memory leaks | Matthias Dieter Wallnöfer | 1 | -7/+12 | |
2009-10-02 | s4:ldb Don't allow modifcation of distinguishedName | Andrew Bartlett | 1 | -1/+7 | |
2009-10-02 | Revert "s4:ldb Fix ldb_list_find() folowing the change from char * to TDB_DATA" | Andrew Tridgell | 1 | -4/+10 | |
This reverts commit f0c2c9854c7659221fe9480110a7d9b2b48afbf9. | |||||
2009-10-02 | Revert "s4:ldb Remove LTDB_PACKING_FORMAT_NODN" | Andrew Tridgell | 2 | -0/+16 | |
This reverts commit bcbf0ae1e707c2355824800dc213d364070f070a. |