Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-10-03 | s4-test-delete_object.py: Use common implementation for connect_samdb() | Kamen Mazdrashki | 1 | -20/+2 | |
Connections are restricted to LDAP only (remote), as this test can't be run against local LDBs | |||||
2010-10-03 | s4-python-test: Implement global connect_samdb() function | Kamen Mazdrashki | 1 | -0/+46 | |
This helper makes proper ldb url to connect to and is a shorthand for test to create SamDB connections | |||||
2010-10-03 | s4-samba.samdb: Fix masking names from outer context | Kamen Mazdrashki | 1 | -17/+17 | |
- 'filter' is built-in - 'ldb' is a module name we imported | |||||
2010-10-03 | s4-python-samba: 'file' is a built-in | Kamen Mazdrashki | 1 | -3/+3 | |
2010-10-03 | s4-samba.samdb: Fix leading indention and trailing ';' | Kamen Mazdrashki | 1 | -10/+10 | |
2010-10-03 | s4-python-samba: Fix few cosmetics | Kamen Mazdrashki | 1 | -4/+3 | |
- we have sys module already imported - _glue module is part of samba package so be more precise how to import | |||||
2010-10-03 | s3: Attempt to fix the non-ads build | Volker Lendecke | 1 | -1/+1 | |
2010-10-03 | land-remote: Pass extra arguments on to land. | Jelmer Vernooij | 2 | -3/+3 | |
2010-10-02 | pytdb: Include Python.h first to prevent warning. | Jelmer Vernooij | 1 | -1/+1 | |
2010-10-02 | subunithelper: Remove accidentally added line. | Jelmer Vernooij | 1 | -3/+0 | |
2010-10-02 | pytdb: Check errors after PyObject_New() calls | Kirill Smelkov | 1 | -0/+7 | |
The call could fail with e.g. MemoryError, and we'll dereference NULL pointer without checking. Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org> | |||||
2010-10-02 | pytdb: Add support for tdb_repack() | Kirill Smelkov | 2 | -0/+15 | |
Cc: 597386@bugs.debian.org Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org> | |||||
2010-10-02 | pytdb: Add TDB_INCOMPATIBLE_HASH open flag | Kirill Smelkov | 1 | -0/+1 | |
In 2dcf76 Rusty added TDB_INCOMPATIBLE_HASH open flag which selects Jenkins lookup3 hash for new databases. Expose this flag to python users too. Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org> | |||||
2010-10-02 | subunithelper: Fix format time. | Jelmer Vernooij | 1 | -1/+2 | |
2010-10-02 | land: Implement --fail-immediately directly in Python, provide subunit file. | Jelmer Vernooij | 1 | -26/+96 | |
2010-10-02 | subunithelper: Make filter options optional. | Jelmer Vernooij | 1 | -9/+9 | |
2010-10-02 | format-subunit: Split out summary file writing. | Jelmer Vernooij | 1 | -7/+11 | |
2010-10-02 | selftest: Move plain text formatter to subunithelper. | Jelmer Vernooij | 2 | -204/+204 | |
2010-10-02 | land: Add separate treestagebuilder for subunit. | Jelmer Vernooij | 1 | -12/+41 | |
2010-10-02 | land: Cherry-pick tridges changes to autobuild. | Jelmer Vernooij | 1 | -3/+22 | |
2010-10-02 | land: Move stage building into a separate class so we can have subclasses ↵ | Jelmer Vernooij | 2 | -36/+64 | |
(e.g. subunit-specific). | |||||
2010-10-02 | land: Only pass shell=True if necessary. | Jelmer Vernooij | 1 | -19/+22 | |
2010-10-02 | land: Add --fail-slowly option. | Jelmer Vernooij | 2 | -6/+13 | |
2010-10-02 | Several smaller cleanups, use python coding style. | Jelmer Vernooij | 1 | -17/+16 | |
2010-10-02 | land: Avoid running things in a shell where not necessary. | Jelmer Vernooij | 1 | -4/+9 | |
2010-10-02 | land-remote: Checkout repository first. | Jelmer Vernooij | 1 | -2/+3 | |
2010-10-02 | land-remote: Use --repository option. | Jelmer Vernooij | 1 | -1/+1 | |
2010-10-02 | land: Add --repository option. | Jelmer Vernooij | 2 | -4/+12 | |
2010-10-02 | land: Move more functionality onto builder. | Jelmer Vernooij | 1 | -9/+23 | |
2010-10-02 | land: Avoid more uses of chdir(). | Jelmer Vernooij | 1 | -8/+2 | |
2010-10-02 | Split land.py back out of autobuild.py, so I can change it without | Jelmer Vernooij | 2 | -0/+473 | |
risking to break the autobuild system. | |||||
2010-10-02 | s3: Attempt to fix bug 7665 | Volker Lendecke | 11 | -136/+295 | |
Quite a few of our internal routines put stuff on talloc_tos() these days. In top-level netapi routines, properly allocate a stackframe and clean it again. Also, don't leak memory in the rpccli_ callers onto the libnetapi context. | |||||
2010-10-02 | s3: Fix a 64-bit BUG | Volker Lendecke | 1 | -1/+1 | |
Quick explanation why this is a problem: It is not safe to pass a pointer to a uint32_t into a routine that expects a size_t *. The routine that this pointer is passed to has no chance to find out that in reality it was passed a pointer to a uint32_t. On platforms where sizeof(size_t)==8, we get a nice overwrite of a stack area that should not be overwritten. As this happens over an over again: Does someone know a means to make gcc stop with an error in this case? Volker | |||||
2010-10-02 | bisect: more bisection options | Andrew Tridgell | 1 | -6/+12 | |
and fixes for the old ones Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 2 06:14:46 UTC 2010 on sn-devel-104 | |||||
2010-10-01 | script: added bisect-test.py git bisect script | Andrew Tridgell | 1 | -0/+85 | |
this can be used to work out what commit broke a set of tests | |||||
2010-10-01 | autobuild: show top commit in emails | Andrew Tridgell | 1 | -2/+20 | |
2010-10-01 | autobuild: include autobuild.log in logs.tar.gz | Andrew Tridgell | 1 | -0/+1 | |
2010-10-01 | s4-repl: use the GC principal name for DRS replication connection | Andrew Tridgell | 3 | -6/+76 | |
this is required when talking to RODCs (for notify calls), and is good practice for all DCs Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-10-01 | s4-rpc: added target_principal binding handle option | Andrew Tridgell | 7 | -6/+18 | |
this allows you to specify a target SPN for a connection Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-10-01 | s4-dsdb: added dsdb_search_by_dn_guid() | Andrew Tridgell | 1 | -0/+26 | |
this is more efficient than first searching for the DN, then doing a search. We should look at using this in lots of existing code Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-10-02 | s4:rpc_server/netlogon: don't use dcerpc_binding_handle_call_send/recv() ↵ | Stefan Metzmacher | 1 | -12/+9 | |
directly metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Oct 2 03:11:38 UTC 2010 on sn-devel-104 | |||||
2010-10-02 | netlogon.idl: add missing flags to DSGETDC_VALID_FLAGS | Stefan Metzmacher | 1 | -0/+3 | |
metze | |||||
2010-10-02 | s4-gensec Always honour the set server principal | Andrew Bartlett | 1 | -1/+1 | |
The spengo code won't set this unless it is allowed to by this same option, but other callers may need it. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Oct 2 02:27:39 UTC 2010 on sn-devel-104 | |||||
2010-10-02 | s4-drs: fixed comparison login in replicated renames | Andrew Tridgell | 1 | -45/+72 | |
we need to ensure we only ever compare USNs from the same originating invocation ID. Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 2 01:45:19 UTC 2010 on sn-devel-104 | |||||
2010-10-02 | s4-kcc: remove stale repsTo entries in the KCC | Andrew Tridgell | 1 | -0/+32 | |
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2010-10-01 | autobuild: fixed tuple count for retry | Andrew Tridgell | 1 | -1/+1 | |
2010-10-02 | s4-kerberos Don't regenerate key values for each alias in keytab | Andrew Bartlett | 1 | -43/+35 | |
Instead, store the same key value under the multiple alias names. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Oct 2 00:16:52 UTC 2010 on sn-devel-104 | |||||
2010-10-02 | s4-kdc Rework 'allowed encryption types' handling in the KDC | Andrew Bartlett | 1 | -28/+44 | |
All DCs and all krbtgt servers are forced to use AES, regardless of the msDS-SecondaryKrbTgtNumber value. Andrew Bartlett | |||||
2010-10-02 | s4-auth Add make_server_info_pac() to include 'resource domain' groups | Andrew Bartlett | 2 | -5/+40 | |
Previously, our PAC code didn't include these groups into the server_info from which we would eventually calculate the full list of tokenGroups. Andrew Bartlett | |||||
2010-10-02 | s4-auth Allocate domain SIDs under the sids array, not server_info | Andrew Bartlett | 1 | -1/+1 | |
Andrew Bartlett |