Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-08-07 | fixed several places that unnecessarily take a reference to the event context | Andrew Tridgell | 1 | -1/+1 | |
These references were triggering the ambiguous talloc_free errors from the recent talloc changes when the server is run using the 'standard' process model instead of the 'single' process model. I am aiming to move the build farm to use the 'standard' process model soon, as part of an effort to make our test environment better match the real deployment of Samba4. The references are not needed as the way that the event context is used is as the 'top parent', so when the event context is freed then all of the structures that were taking a reference to the event context were actually freed as well, thus making the references redundent. | |||||
2009-08-07 | make sure we never look past the end of either string in ldb_comparison_fold() | Andrew Tridgell | 1 | -26/+44 | |
This fixes a bug in the samba3sam test with the python libraries as noticed by abartlet | |||||
2009-08-07 | s4:ldb Make error message in rnd_name more useful | Andrew Bartlett | 1 | -3/+9 | |
2009-08-05 | s4:ldb Cosmetic corrections in "rdn_name" module | Matthias Dieter Wallnöfer | 1 | -4/+4 | |
2009-08-05 | pyldb: Fix reference counting on ldb_message_elements, add extra type | Jelmer Vernooij | 1 | -1/+9 | |
check. | |||||
2009-08-05 | s4:ldb initialise e->values[i].length before use in python bindings | Andrew Bartlett | 1 | -1/+1 | |
2009-08-04 | Add const | Andrew Bartlett | 1 | -1/+1 | |
2009-08-04 | s4:ldif_handlers Allow a binary nTsecurityDescriptor when parsing LDIF | Andrew Bartlett | 1 | -1/+17 | |
Also allow a SDDL security descriptor, using the domain SID attached to the session (it will search for it during the LDIF parse if need be). Andrew Bartlett | |||||
2009-08-04 | pyldb: Properly keep copies of Python string contents, rather than | Jelmer Vernooij | 1 | -9/+21 | |
relying on reference leaks :-) | |||||
2009-08-03 | pyldb: Raise proper exception when attempting to assign a string to a dn | Jelmer Vernooij | 2 | -5/+24 | |
attribute. | |||||
2009-07-31 | s4:tls: avoid using talloc_reference() in tls_init_client() | Stefan Metzmacher | 1 | -6/+2 | |
metze | |||||
2009-07-31 | s4:tls: avoid using talloc_reference() in tls_init_server() | Stefan Metzmacher | 1 | -8/+1 | |
metze | |||||
2009-07-30 | DCE/RPC(Python): Rename py_talloc_import to py_talloc_steal. | Jelmer Vernooij | 1 | -7/+7 | |
Use py_talloc_reference in DCE/RPC code, fixes access to SAMR pipe. | |||||
2009-07-28 | s4:tls Enable GnuTLS back to version 1.4 (an into the future) | Andrew Bartlett | 1 | -1/+1 | |
We think we have the bug fixed. Andrew Bartlett | |||||
2009-07-23 | s4:ldb: add support for the new Recycle Bin Feature LDAP controls | Stefan Metzmacher | 2 | -0/+68 | |
LDB_CONTROL_SHOW_RECYCLED_OID 1.2.840.113556.1.4.2064 LDB_CONTROL_SHOW_DEACTIVATED_LINK_OID 1.2.840.113556.1.4.2065 metze | |||||
2009-07-19 | source4/lib/registry/patchfile.c(reg_diff_load): fixed possible resource leak. | Slava Semushin | 1 | -0/+1 | |
File descriptor leaks when write(2) fails and we are returning from function. Found by cppcheck: [./source4/lib/registry/patchfile.c:319]: (error) Resource leak: fd | |||||
2009-07-19 | Remove unnecessary include, update README. | Jelmer Vernooij | 2 | -4/+0 | |
2009-07-19 | Remove outdated status file about samba3 -> samba4 upgrade project. | Jelmer Vernooij | 1 | -68/+0 | |
2009-07-18 | Actually fill in ldb modules directory. | Jelmer Vernooij | 1 | -1/+1 | |
2009-07-18 | Remove pyldb_util and simply duplicate the 5-line function it contains, | Jelmer Vernooij | 5 | -53/+12 | |
rather than creating a separate shared library for it. | |||||
2009-07-18 | ldb: Display SHLD_FLAGS when building. | Jelmer Vernooij | 1 | -0/+1 | |
2009-07-14 | remove all '\n' from ldb_debug | Sumit Bose | 19 | -57/+58 | |
2009-07-08 | Test for schemaUpdateNow command | Anatoliy Atanasov | 1 | -54/+126 | |
2009-07-06 | s4:ldb Rework use of talloc and ldif objects in python wrapper | Andrew Bartlett | 1 | -3/+18 | |
The talloc hirarchy here was a bit odd - we would both steal the parsed ldif onto 'NULL', then reference it onto a python talloc wrapper. Now we just leave the reference, after we complete building the object. Andrew Bartlett | |||||
2009-07-06 | s4:ldb Fix talloc hirarchy in LDIF parsing code | Andrew Bartlett | 1 | -3/+3 | |
The problem here was that some parts of the ldb_message were still attached to the ldb_ldif structure, and when only the message was taken (and the ldif free'ed to reclaim memory) we refereced free'ed memory. Andrew Bartlett | |||||
2009-06-30 | s4:ldb Allow rootdse module to build without ldb_private.h | Andrew Bartlett | 2 | -1/+2 | |
It seems quite reasonable to allow modules to re-initialise the set of cached DNs on the ldb context. Andrew Bartlett | |||||
2009-06-30 | s4: dsdb Avoid using the internal ldb_private.h header | Andrew Bartlett | 1 | -1/+2 | |
This job is not complete (the partition module remains a unfinished task), but now we do use the private ldb headers much less. Andrew Bartlett | |||||
2009-06-29 | ldb: Properly handle NULL when copying attr lists. | Andrew Kroeger | 1 | -4/+4 | |
When copying an attribute list, ensure the list itself is not NULL before attempting to access elements of the list. | |||||
2009-06-19 | s4:ldb Add test for integer normalisation behaviour | Andrew Bartlett | 1 | -0/+17 | |
This uses groupType as the example, but this actually applies to all integer types in AD. Andrew Bartlett | |||||
2009-06-19 | Fixed some uninitialised variables | Matthias Dieter Wallnöfer | 2 | -3/+3 | |
I tried hard to not change the program logic. Should fix bug #6439. | |||||
2009-06-19 | Correct handling of 32-bit integer attributes in SAMBA 4 | Matthias Dieter Wallnöfer | 2 | -28/+60 | |
- LDB handles now all 32-bit integer attributes correctly (also with overflows) according to the schema - LDAP backends handle the attributes "groupType", "userAccountControl" and "sAMAccountType" correctly. This handling doesn't yet use the schema but the conversion file "simple_ldap.map.c" which contains them hardcoded. Did also a refactoring of the conversion function there. - Bug #6136 should be gone | |||||
2009-06-18 | Bump the ldb version and the version Samba4 requires. | Andrew Bartlett | 1 | -1/+1 | |
We have made a lot of useful changes to LDB since the last realese, that Samba4 now relies on. This ensures that a build against a system LDB will only succeed against the right version. Andrew Bartlett | |||||
2009-06-18 | Require the new tdb 1.1.5 (for performance reasons) | Andrew Bartlett | 1 | -1/+1 | |
While tdb has not changed ABI in a way that requires this, we don't want Samba4 somehow built against the old version with performance problems on large, growing databases. Andrew Bartlett | |||||
2009-06-18 | Fix resource leak in lib/ldb/tools/ldbmodify.c | Slava Semushin | 1 | -0/+1 | |
Patch for bug #6389 | |||||
2009-06-18 | Fix syntax error in lib/ldb/ldb_sqlite3/base160.c | Slava Semushin | 1 | -1/+1 | |
Patch for bug #6388 | |||||
2009-06-18 | LDB: Link against both tevent and talloc | Eric Sandall | 1 | -1/+1 | |
Patch for bug #6269 When linking against tevent you also need to link against talloc. This patch fixes external/libevent.m4 to do so. | |||||
2009-06-18 | s4: Call va_end() after all va_start()/va_copy() calls. | Andrew Kroeger | 1 | -0/+1 | |
This corrects the issues reaised in bug #6129, and some others that were not originally identified. It also accounts for some code that was in the original bug report but appears to have since been made common between S3 and S4. Thanks to Erik Hovland <erik@hovland.org> for the original bug report. | |||||
2009-06-18 | Fix build with system LDB. | Jelmer Vernooij | 1 | -1/+1 | |
2009-06-17 | pyldb: Fix three more (minor) memory leaks. | Jelmer Vernooij | 2 | -14/+42 | |
2009-06-17 | pyldb: Fix memory leak in Dn.get_parent(). | Jelmer Vernooij | 1 | -2/+16 | |
2009-06-17 | pyldb: Fix memory leak in Dn.concat. | Jelmer Vernooij | 1 | -3/+12 | |
2009-06-17 | pyldb/tests: Use different dn's everywhere, to easily spot which test is | Jelmer Vernooij | 1 | -49/+49 | |
breaking in gdb. | |||||
2009-06-17 | pyldb: Fix another memory leak and reference counting error. | Jelmer Vernooij | 1 | -12/+24 | |
2009-06-17 | pyldb: Fix memory leak of LdbMessage's created from Python. | Jelmer Vernooij | 1 | -3/+7 | |
2009-06-17 | pyldb: Fix two memory leaks of attribute lists. | Jelmer Vernooij | 1 | -3/+20 | |
2009-06-17 | pyldb: Fix segfault, freeing memory too early in search. | Jelmer Vernooij | 1 | -4/+14 | |
2009-06-17 | pyldb: Support getting the parent of special DNs without segfaulting. | Jelmer Vernooij | 2 | -1/+20 | |
Found by: Андрей Григорьев <andrew@ei-grad.ru> | |||||
2009-06-10 | fixed server side sort control | Andrew Tridgell | 1 | -4/+7 | |
when sorting a record that does not have the requested sort attribute then put those records last in the sort result | |||||
2009-06-10 | fixed server side sorting of case-insensitive strings | Andrew Tridgell | 1 | -3/+0 | |
The sort module uses ldb_comparison_fold() as the comparison function for case-insensitive attributes. In other places the function is being used to produce a boolean, but for sorting we care about ordering. The n1 - n2 return was sorting by length, not value | |||||
2009-06-08 | rl_event_hook detection | Timur I. Bakeyev | 1 | -1/+4 | |
This patch is relevant for Samba4 source mostly. The way, how readline compiled under FreeBSD makes it require stdio.h to get all the necessary declarations. Without this addition rl_event_hook is not properly detected. With regards, Timur Bakeyev. Signed-off-by: Stefan Metzmacher <metze@samba.org> |