summaryrefslogtreecommitdiffstats
path: root/source4/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* ldb-web: update mailing list infoAndrew Tridgell2011-02-141-5/+5
|
* pyldb: fix a bug in the unit test which prevented ldb.python to run all the ↵Matthieu Patou2011-02-131-0/+3
| | | | | | | tests in the testsuite Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Sun Feb 13 00:14:24 CET 2011 on sn-devel-104
* ldb: use the sizeof of the control variable as offset instead of hardcoded ↵Matthieu Patou2011-02-131-22/+21
| | | | values, helps to avoid bugs
* ldb: remove "magic" string in ldb_controls, replace them with constants ↵Matthieu Patou2011-02-132-22/+53
| | | | | | | | defined in ldb.h Allow to have less magic value in the control code and will allow not to duplicate names when doing a function that marshal a control to it's string representation
* ldb: use #include <ldb.h> for ldbAndrew Tridgell2011-02-104-7/+7
| | | | | | | | thi ensures we are using the header corresponding to the version of ldb we're linking against. Otherwise we could use the system ldb for link and the in-tree one for include Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: added ldb 1.0.0 ABI signaturesAndrew Tridgell2011-02-101-0/+248
|
* ldb: change version number to 1.0.0Andrew Tridgell2011-02-101-1/+1
| | | | | | | | Simo pointed out that the module loading change should have been combined with a major version number. That seems like a good excuse for a 1.0 release Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: fixed two warnings in the ldb_ldap backendAndrew Tridgell2011-02-101-2/+2
|
* ldb: added a include/ldb_version.hAndrew Tridgell2011-02-102-2/+10
| | | | | | | | | this fixes a problem with the installed ldb_modules.h header, which depended on LDB_VERSION being defined. Thanks to Simo for noticing this! Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb:tools - return LDB_ERR_OPERATIONS_ERROR on generic errorsMatthias Dieter Wallnöfer2011-02-098-19/+20
| | | | | | | | Use "return" when located in "main" for consistency ("exit" would do the same). The patchset has been discussed with Jelmer Vernooij and afterwards LDB maintainer Simo Sorce.
* ldb:tools - always check if ldb connection has been estabilishedMatthias Dieter Wallnöfer2011-02-097-1/+19
| | | | Otherwise return "LDB_ERR_OPERATIONS_ERROR".
* ldb:ldbsearch tool - use LDB result constants where possibleMatthias Dieter Wallnöfer2011-02-091-7/+7
|
* ldb:ldbsearch tool - simplify error code returnMatthias Dieter Wallnöfer2011-02-091-3/+1
|
* ldb:ldbsearch tool - use "%u" for printing unsigned integersMatthias Dieter Wallnöfer2011-02-091-1/+1
|
* ldb:ldbedit tool - don't forget about the "do_edit" result codeMatthias Dieter Wallnöfer2011-02-091-11/+4
| | | | | | Use it for computing the program exit code. The "result" has not to be free'd explicitly since it's a child by "ldb" which itself is child by "mem_ctx".
* ldb:ldbedit tool - fix bug #7914Matthias Dieter Wallnöfer2011-02-091-4/+7
| | | | | | | "modify_record" returns "-1" when failing, otherwise the number of modifies performed as an "unsigned int" converted to "int". When we get "-1" we immediately need to stop (the error message has already been generated by the function itself).
* ldb:ldbedit tool - use unsigned counters for consistency with other LDB toolsMatthias Dieter Wallnöfer2011-02-091-2/+2
|
* ldb:ldbedit tool - use "%u" for printing out unsigned integersMatthias Dieter Wallnöfer2011-02-091-2/+2
|
* ldb:ldbedit tool - use LDB result constants where neededMatthias Dieter Wallnöfer2011-02-091-5/+5
|
* ldb:ldbrename tool - use LDB result constant where neededMatthias Dieter Wallnöfer2011-02-091-1/+1
|
* ldb:ldbmodify tool - use unsigned counters for consistency with other LDB toolsMatthias Dieter Wallnöfer2011-02-091-5/+5
|
* ldb:ldbdel tool - use LDB result constants for consistencyMatthias Dieter Wallnöfer2011-02-091-7/+7
|
* ldb:ldbadd tool - use LDB return codes where possibleMatthias Dieter Wallnöfer2011-02-091-4/+6
|
* ldb:ldbadd tool - use "%u" for printing out unsigned integersMatthias Dieter Wallnöfer2011-02-091-1/+1
|
* ldb:ldbadd tool - use LDB result constants for consistencyMatthias Dieter Wallnöfer2011-02-091-4/+4
|
* dlinklist: Change license to LGPLv3+ (checked with tridge).Jelmer Vernooij2011-02-091-11/+15
|
* lib/compression: add shared wscript_build.Günther Deschner2011-02-081-6/+0
| | | | Guenther
* build: removed the old autogen.sh and autogen-waf.sh scriptsAndrew Tridgell2011-02-072-12/+0
| | | | | | | for the builds that use waf only, these are no longer needed and just cause confusion Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4:tls_tstream: also use a dynamic buffer for the pull sideStefan Metzmacher2011-01-181-3/+12
| | | | | | | | | Maybe that fixes the remaining issues with some gnutls versions. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Jan 18 17:26:08 CET 2011 on sn-devel-104
* s4:tls_tstream: fix partial reads, so that the gnutls layer doesn't read the ↵Stefan Metzmacher2011-01-181-1/+6
| | | | | | same data twice metze
* s4-pyldb Fix tp_basicsize for PyLdbDnAndrew Bartlett2011-01-181-1/+1
| | | | | | | This wasn't actually causing problems before, as the structures were the same size. Andrew Bartlett
* s4-ldb_ldif: Take into account LDB_FLG_SHOW_BINARYKamen Mazdrashki2011-01-181-1/+4
| | | | | | | | | | | | when user requires binary data to be displayed using samba user-friendly ldif handlers Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Tue Jan 18 00:40:01 CET 2011 on sn-devel-104
* s4-ldb_ldif: Don't check for LDB_FLG_SHOW_BINARY in ldb_should_b64_encodeKamen Mazdrashki2011-01-181-4/+0
| | | | | | | | | | | | | LDB_FLG_SHOW_BINARY is data representation flag and should not modify behavior of data checking functions. This lead to a bug in lib/ldb/ldb_tdb/ldb_index.c as ltdb_index_key() function relies on ldb_should_b64_encode function to determine how to process index keys. Found using following test search: bin/ldbsearch -H st/dc/private/sam.ldb -b "CN=Deleted Objects,DC=samba,DC=example,DC=com" \ "(objectGUID=97b52eac-6d89-434d-b935-1e5f2e086ffc)" replPropertyMetaData --show-deleted --show-binary
* ldb: new ABI sigs fileAndrew Tridgell2011-01-171-0/+248
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Jan 17 06:09:23 CET 2011 on sn-devel-104
* ldb: added ldb_req_mark_trusted()Andrew Tridgell2011-01-173-1/+14
| | | | | | | | this is used to mark a ldb child request trusted, if the caller has validated all inputs. This will be used when creating new child requests with trusted inputs. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: inherit parent flags on child requests in modulesMatthias Dieter Wallnöfer2011-01-171-0/+11
|
* ldb:ldb_dn.c - fix counter type in "ldb_dn_minimise"Matthias Dieter Wallnöfer2011-01-141-1/+1
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Jan 14 10:43:29 CET 2011 on sn-devel-104
* ldb: new ABI file for 0.9.23Andrew Tridgell2011-01-141-0/+247
|
* ldb: added ldb_dn_minimise()Andrew Tridgell2011-01-142-0/+64
| | | | | | | | | | | | this removes any extraneous components from a DN. For an extended DN, this means removing the string DN and all but the first extended component. This is needed as AD returns "invalid syntax" if you don't use a minimal DN as the base DN for a search. A non-minimal DN also doesn't ever match in a search expression. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* ldb: added ldb_dn_get_extended_comp_num()Andrew Tridgell2011-01-143-1/+10
| | | | | | | this returns the number of extended components. We need this to validate a DN in the extended_dn_in module Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* pyldb Simplify python wrappers for struct ldb_val (LdbValue)Andrew Bartlett2011-01-141-17/+4
| | | | Andrew Bartlett
* ldb:ltdb_sequence_number - initialise "tmp_ctx" to prevent uninitialisation ↵Matthias Dieter Wallnöfer2011-01-121-1/+2
| | | | warning
* ldb:ldbsearch.c - fix possible uninitialised variableMatthias Dieter Wallnöfer2011-01-121-2/+2
| | | | And add a comparison for the "ret" result - this is more standard-oriented
* ldb:ltdb_sequence_number - check for an OOM exceptionMatthias Dieter Wallnöfer2011-01-121-0/+4
|
* ldb:ldb_dn_explode - remove/unify some duplicate initialisationsMatthias Dieter Wallnöfer2011-01-121-6/+2
|
* ldb: link to the download directory on the websiteAndrew Tridgell2011-01-111-16/+4
|
* waf: ensure "make dist" works from a clean git tree for all librariesAndrew Tridgell2011-01-081-2/+4
| | | | | | | this uses a temporary waf lock file to force the build directory Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Jan 8 02:35:22 CET 2011 on sn-devel-104
* s4:ldb: Make sample module implementation static.Brad Hards2011-01-031-2/+2
| | | | | | | Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Jan 3 12:28:21 CET 2011 on sn-devel-104
* s4:ldb: Add prototype header.Brad Hards2011-01-031-0/+2
| | | | Signed-off-by: Stefan Metzmacher <metze@samba.org>
* pyldb: Fix memory reference error.Jelmer Vernooij2011-01-032-2/+6
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Jan 3 02:34:05 CET 2011 on sn-devel-104