Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-11-01 | s4-ldb: removed ldb_includes.h | Andrew Tridgell | 4 | -4/+12 | |
it causes problems with the openchange build as it is not installed Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Nov 1 21:49:47 UTC 2010 on sn-devel-104 | |||||
2010-11-01 | ldb:tools/ldbtest.c - fix build warning | Matthias Dieter Wallnöfer | 2 | -2/+3 | |
Cause was an incomplete declaration. | |||||
2010-11-01 | s4-ldb: convert existing ldb tools to use new command line hooks | Andrew Tridgell | 7 | -31/+15 | |
the usage() function needs to take a ldb context, as the popt_options is specific to the ldb context Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-11-01 | s4-ldb: added ldb command line hook support | Andrew Tridgell | 2 | -58/+31 | |
ldb modules can now add hooks to the command line processing for ldb tools Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-11-01 | s4-test: we don't need to set LDB_MODULES_PATH any more | Andrew Tridgell | 1 | -2/+0 | |
2010-10-31 | s4: Remove the old perl/m4/make/mk-based build system. | Jelmer Vernooij | 1 | -103/+0 | |
The new waf-based build system now has all the same functionality, and the old build system has been broken for quite some time. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sun Oct 31 02:01:44 UTC 2010 on sn-devel-104 | |||||
2010-10-19 | s4-ldb: added --relax cmdline option | Andrew Tridgell | 1 | -0/+9 | |
this adds the relax control | |||||
2010-09-11 | ldb:tools/cmdline.c - reorganise imports | Matthias Dieter Wallnöfer | 1 | -6/+2 | |
2010-09-11 | ldb:tools/cmdline.c - make a counter unsigned where appropriate | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
2010-09-11 | s4:ldb_register_samba_handlers - fix up and convert result codes to LDB/LDAP ↵ | Matthias Dieter Wallnöfer | 1 | -1/+1 | |
results | |||||
2010-09-01 | s4/ldb: fix standalone build | Björn Jacke | 1 | -2/+6 | |
2010-08-31 | s4/ldb: use monotonic clock for time deltas in ldbtest | Björn Jacke | 1 | -4/+4 | |
2010-07-19 | s4: Remove trailing whitespaces | Kamen Mazdrashki | 2 | -13/+13 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-07-19 | s4-dsdb: use ldb_msg_normalize() in ldbadd-process_file() | Kamen Mazdrashki | 1 | -1/+9 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-07-19 | s4-tools: use ldb_msg_difference() in ldbedit - modify_record() | Kamen Mazdrashki | 1 | -6/+10 | |
Signed-off-by: Andrew Bartlett <abartlet@samba.org> | |||||
2010-05-31 | ldb: Fix dependencies when building with system ldb. | Jelmer Vernooij | 4 | -4/+24 | |
2010-05-21 | s4:ldb: add --controls support to ldbedit | Stefan Metzmacher | 1 | -5/+12 | |
metze | |||||
2010-05-02 | s4-ldb: use a parent context in the ldb utils | Andrew Tridgell | 6 | -12/+20 | |
This avoids a talloc free with references error on exit | |||||
2010-04-11 | subunit: Support formatting compatible with upstream subunit, for consistency. | Jelmer Vernooij | 1 | -1/+1 | |
Upstream subunit makes a ":" after commands optional, so I've fixed any places where we might trigger commands accidently. I've filed a bug about this in subunit. | |||||
2010-03-25 | s4-ldb: removed unused command line options -I and -O | Andrew Tridgell | 2 | -4/+0 | |
These are not used anywehere, so they just confuse people Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-03-06 | LDB:tools - change counters to be unsigned | Matthias Dieter Wallnöfer | 6 | -32/+38 | |
In most cases we do count LDB objects which are enumerated within the "unsigned" type. Therefore no need to use "signed" counters. | |||||
2010-02-25 | s4:ldb Fix segfault in ldbsearch store_referral callback | Andrew Bartlett | 1 | -6/+1 | |
sctx->refs_store was not initialised, and that made talloc_realloc grumpy once we started actually returning referrals regularly from Samba4's partitions module (0be57c747825737fa9d64411223e693b055b5f8f by mdw). We now just use talloc_zero() and forget about this manual initialisation work. Tracking down use of uninitialised variables with valgrind was the grand idea when this started, but in practice we just get segfaults in unusual places. Andrew Bartlett | |||||
2010-02-14 | s4-ldb: use TYPESAFE_QSORT() in the rest of the ldb code | Andrew Tridgell | 1 | -6/+4 | |
2010-02-13 | s4: use LDB_TYPESAFE_QSORT() instead of ldb_qsort() | Andrew Tridgell | 1 | -2/+1 | |
2010-01-21 | s4: Fix a few warnings. | Jelmer Vernooij | 1 | -0/+2 | |
2010-01-10 | s4-ldb: display security descriptors with correct SDL for known SIDs | Andrew Tridgell | 1 | -0/+6 | |
This makes it much easier to compare SDs | |||||
2010-01-02 | s4-ldb: show an error string, as well as error message | Andrew Tridgell | 1 | -3/+4 | |
This makes it easier to track down error mismatches from the test suite | |||||
2010-01-02 | s4-ldbmodify: show the error code as well as error string | Andrew Tridgell | 1 | -1/+2 | |
2010-01-02 | s4-ldb: show the error code as well as errstr | Andrew Tridgell | 1 | -2/+3 | |
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2009-12-23 | s4:ldb Fix declaration in the middle of the code | Simo Sorce | 1 | -2/+4 | |
2009-12-23 | s4: Fix the build | Simo Sorce | 1 | -0/+1 | |
2009-12-23 | s4: make ldbadd/ldbmodify/ldbdelete really use the --controls switch | Matthieu Patou | 6 | -9/+230 | |
2009-12-18 | s4-ldb: fixed a valgrind error in ldbtest | Andrew Tridgell | 1 | -0/+2 | |
we were using msg->dn after the ldb it contained had been freed Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2009-12-16 | s4-ldb: added --show-deactivated-link command line option | Andrew Tridgell | 1 | -1/+8 | |
this adds the SHOW_DEACTIVATED_LINK control | |||||
2009-12-14 | s4-ldb: added a new "reveal" control | Andrew Tridgell | 1 | -0/+7 | |
This control will allow inspection of internal ldb values, which would normally be stripped before being presented to users. The first use will be stripping linked attribute meta data extended components. | |||||
2009-12-08 | s4-ldb: fixed ldbdel with -r (recursive deletion) | Andrew Tridgell | 1 | -0/+15 | |
We need to delete the deepest DNs first | |||||
2009-12-01 | s4-ldb: the '1' form of extended_dn search is easier to read | Andrew Tridgell | 1 | -1/+1 | |
The '1' form gives GUIDs and SIDs in the ascii form as normally used for display. | |||||
2009-11-28 | s4-ldb: make it much easier to use common ldb controls | Andrew Tridgell | 2 | -15/+64 | |
2009-11-27 | s4-ldb: better to test for valid arguments in ldb library than commandline | Andrew Tridgell | 1 | -9/+0 | |
We were testing for valid DNs in ldbrename in the command line tool. This hid a bug in the ldb library where we caught a bad DN in the objectclass module rather than in the main ldb code. It is better to do validation of the DNs passed on the command line in the library code, as this gives us more consistent error handling between the programming APIs for ldb and the command line. | |||||
2009-11-20 | s4-ldb: when -v is specified, show progress of ldbadd/ldbmodify | Andrew Tridgell | 2 | -2/+8 | |
This is useful for speed tests with large numbers of records. | |||||
2009-11-20 | s4-ldb: make ldb tools line buffered | Andrew Tridgell | 1 | -0/+3 | |
this prevents output being buffered when redirected to a file. Useful for larger ldb command line operations | |||||
2009-10-23 | s4-dsdb: create a static system_session context | Andrew Tridgell | 1 | -1/+1 | |
This patch adds a system_session cache, preventing us from having to recreate it on every ldb open, and allowing us to detect when the same session is being used in ldb_wrap | |||||
2009-09-21 | s4-ldb: add --trace command line option to ldb tools | Andrew Tridgell | 2 | -0/+6 | |
This enabled LDB_FLG_ENABLE_TRACING | |||||
2009-09-08 | s4/ldb: added --show-binary command line option | Andrew Tridgell | 2 | -0/+6 | |
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-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-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-06-18 | Fix resource leak in lib/ldb/tools/ldbmodify.c | Slava Semushin | 1 | -0/+1 | |
Patch for bug #6389 | |||||
2009-03-05 | Remove parse_control from header, long after the function was removed | Andrew Bartlett | 1 | -1/+0 | |
Simo reminded me that when (long ago) I moved parse_controls away from this place, I forgot to update the manually maintained header file. Andrew Bartlett |