Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-09-11 | ldb: Remove references to operational module init function. | Jelmer Vernooij | 2 | -2/+0 | |
This module is now part of Samba 4's dsdb subsystem rather than standalone ldb. | |||||
2009-09-11 | ldb: Support running testsuite without installing first. | Jelmer Vernooij | 2 | -4/+5 | |
2009-09-11 | s4:ldb_map_outbound - fix memory leak | Matthias Dieter Wallnöfer | 1 | -0/+2 | |
Patch from Andrew Kroeger wasn't fully correct - we need a "talloc_free" after the "if (ac->r_current == NULL)" statement. | |||||
2009-09-11 | s4-ldb: don't remove a message element beyond the end of the array | Andrew Tridgell | 1 | -0/+4 | |
2009-09-11 | s4:ldb_map: Don't free ares too early. | Andrew Kroeger | 1 | -3/+3 | |
As found when running "make test" with the MALLOC_CHECK_ and MALLOC_PERTURB_ environment variables set. | |||||
2009-09-08 | Mark test_security_descriptor_add_neg as known failing (for now). | Jelmer Vernooij | 1 | -1/+1 | |
2009-09-08 | Basic tests for nTSceurityDescriptor both SDDL and BASE64 format | Zahari Zahariev | 1 | -2/+194 | |
These are updated second eddition unittests using ldb.add_ldif() and ldb.modify_ldif(). Unittests are found to work when using the right local domain SID. Negative test separated. Signed-off-by: Jelmer Vernooij <jelmer@samba.org> | |||||
2009-09-08 | s4/ldb: expose the ldb flags with ldb_get_flags() | Andrew Tridgell | 2 | -0/+11 | |
2009-09-08 | s4/ldb: don't line wrap ldif when --show-binary is used | Andrew Tridgell | 1 | -4/+9 | |
2009-09-08 | s4/ldb: added --show-binary command line option | Andrew Tridgell | 6 | -4/+20 | |
This add --show-binary to ldbsearch. When this flag is set, binary blobs will be shown as-is, instead of base64 encoded. This is useful for some XML encoded attributes, and will also be used as part of some NDR print formatting for attributes like repsTo. | |||||
2009-09-08 | s4/ldb: fixed spelling | Andrew Tridgell | 1 | -2/+2 | |
2009-09-07 | s4:ldap.py - Adds a test for the primary group behaviour | Matthias Dieter Wallnöfer | 1 | -12/+132 | |
This passes the Windows Server behaviour. Also SAMBA 4 should match it. Also some small enhancement. | |||||
2009-09-06 | s4: Fix typo | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2009-09-06 | s4:ldb_errors - add spaces | Matthias Dieter Wallnöfer | 1 | -0/+2 | |
2009-09-04 | ldb: make ldb module programming less error prone | Andrew Tridgell | 2 | -0/+17 | |
When a top level method in a module returns an error, it is supposed to call ldb_module_done(). We ran across a case where this wasn't done, and then found that in fact that are hundreds of similar cases in our modules. It took Andrew and I a full day to work out that this was the cause of a subtle segv in another part of the code. To try to prevent this happening again, this patch changes ldb_next_request() to catch the error by checking if a module returning an error has called ldb_module_done(). If it hasn't then the call is made on behalf of the module. | |||||
2009-09-04 | ldb: ensure we cancel a ldb transaction | Andrew Tridgell | 2 | -3/+9 | |
When we fail a ldbadd or ldbedit we should cancel the transaction to prevent ldb giving a warning about having a open transaction in the ldb destructor | |||||
2009-09-03 | always use prepare_commit in ldb transaction commits if possible | Andrew Tridgell | 3 | -6/+51 | |
The reason we need this is to make multi-tdb transactions safe, with the partition module. The linked_attributes and repl_meta_data modules now do extra processing when the transaction ends, and that processing can fail. When it fails we need to cancel the transaction, which we can only do if the hook is on the prepare commit instead of the end transaction call. Otherwise the partition module cannot ensure that no commit has been done on another partition. | |||||
2009-09-02 | show the full set of command line options for ldb tools | Andrew Tridgell | 5 | -29/+6 | |
I always found it hard to remember some of the options. We might as well use popt to give us the full list | |||||
2009-09-02 | use ldb_cmdline_help() in ldbsearch | Andrew Tridgell | 2 | -8/+3 | |
2009-09-02 | added ldb_cmdline_help() | Andrew Tridgell | 1 | -29/+36 | |
This allows the ldb tools to show their full command line options | |||||
2009-09-02 | don't allow two controls to be added with the same OID | Andrew Tridgell | 1 | -1/+7 | |
Two controls with the same OID makes no sense, as they may have different data attached | |||||
2009-09-02 | added ldb_ldif_message_string() | Andrew Tridgell | 2 | -0/+28 | |
This function provides a easy function for displaying a ldb_message structure in a human readable format. It is especially useful for calling in gdb. | |||||
2009-08-30 | ldb: Depend on libtalloc 2.0.0 | Simo Sorce | 1 | -1/+1 | |
2009-08-30 | ldb: cosmetic changes in ldb_dn | Simo Sorce | 1 | -193/+292 | |
- remove trailing spaces and tabs - shorten some variable names for readability - try to break superlong lines for readability | |||||
2009-08-28 | s4:ldb Don't sleep(100) in this error case, but debug the LDIF | Andrew Bartlett | 1 | -6/+6 | |
2009-08-28 | s4-ldb: update dlinklist.h to match main copy (lib/util/dlinklist.h) | Michael Adam | 1 | -6/+5 | |
Michael | |||||
2009-08-26 | s4:ldb Add ldb_ldif_write_string() and python wrappers | Andrew Bartlett | 4 | -1/+95 | |
This allows us to turn a python LdbMessage back into a string. Andrew Bartlett | |||||
2009-08-26 | s4:ldb Add hooks to get/set the flags on a ldb_message_element | Andrew Bartlett | 2 | -5/+65 | |
Also add tests to prove that we got this correct, and correct the existing tests which used the wrong constants. Andrew Bartlett | |||||
2009-08-24 | s4:ldb Add python binding and test for ldb_msg_diff() | Andrew Bartlett | 2 | -0/+43 | |
2009-08-21 | s4:ldb Python requires that a 'compare' handler return -1, 0 or 1 | Andrew Bartlett | 1 | -1/+5 | |
2009-08-21 | s4:ldb Use length-limited printf to avoid walking off end of strings | Andrew Bartlett | 1 | -1/+1 | |
This should ensure the debug messages do not have random characters at their ends. Andrew Bartlett | |||||
2009-08-17 | s4:ldb python bindings: Handle the parameters of the connect call in the ↵ | Matthias Dieter Wallnöfer | 1 | -2/+8 | |
right way | |||||
2009-08-17 | s4:ldb Remove obsolete comment about ldb_tdb's sequence num | Andrew Bartlett | 1 | -2/+0 | |
2009-08-17 | fixed the updateNow schema test to use a canonical OID | Andrew Tridgell | 1 | -1/+2 | |
The expression time.strftime("%s", time.gmtime())[3:] leads to a string with a leading 0. When added then read back from the prefix map this leads to a different string, so it is never found. Use the simpler str(random.randint(a,b)) expression instead | |||||
2009-08-14 | s4:ldb - Free the asynchronous result | Matthias Dieter Wallnöfer | 1 | -0/+2 | |
2009-08-14 | s4: Better way to call "dom_sid_to_rid" from ldap.py | Matthias Dieter Wallnöfer | 1 | -4/+2 | |
2009-08-11 | ldb: Don't break the standalone LDB build (operational module removed) | Matthias Dieter Wallnöfer | 1 | -2/+2 | |
2009-08-11 | s4:test for "primaryGroupToken" | Matthias Dieter Wallnöfer | 1 | -10/+58 | |
Tests for the right behaviour of this introduced constructed attribute. Since we don't support the read-only-ness of those attributes yet, I commented some lines out. Also I had to add a function for python which converts domain SIDs in RIDs. And a small fix for the "groupType" test. | |||||
2009-08-11 | s4:operational module - move and enhancements | Matthias Dieter Wallnöfer | 2 | -326/+0 | |
This moves the "operational" LDB module to the right place under "dsdb/samdb/ldb_modules" (suggested by abartlet) and enhances it for supporting dynamic generated "primaryGroupToken" for AD groups. This should fix bug #6466. | |||||
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 | 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-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-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 | |