metze/samba/wip.git
13 years agotls_tstream: use a dynamic buffer for the push case
Stefan Metzmacher [Mon, 29 Nov 2010 11:27:11 +0000 (12:27 +0100)]
tls_tstream: use a dynamic buffer for the push case

Some versions of gnutls doesn't handle EAGAIN correctly,
so we better allow sending buffers without a low size limitation,
the limit is now UINT16_MAX (0xFFFF) and we allocate the buffer
with talloc each time.

metze

13 years agotls_tstream: increase the buffer size
Matthieu Patou [Thu, 18 Nov 2010 07:35:06 +0000 (10:35 +0300)]
tls_tstream: increase the buffer size

The problem is that with certain version of gnutls are not working
properly if the server is sending in different packet things like (at
least)

* Certificate
* Server Key exchange
* Client certificate

Somehow it really expect this to be done in one packet as some
structures used _gnutls_send_handshake are reinitialized at every
packet exchange and intermediate steps didn't expect it

Signed-off-by: Stefan Metzmacher <metze@samba.org>
13 years agos4:param/pyparam_util.c - remove unused include
Matthias Dieter Wallnöfer [Mon, 29 Nov 2010 11:03:53 +0000 (12:03 +0100)]
s4:param/pyparam_util.c - remove unused include

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Mon Nov 29 12:56:12 CET 2010 on sn-devel-104

13 years agos4:auth/gensec/gensec_gssapi.c - always print error messages on the same talloc context
Matthias Dieter Wallnöfer [Mon, 29 Nov 2010 10:33:04 +0000 (11:33 +0100)]
s4:auth/gensec/gensec_gssapi.c - always print error messages on the same talloc context

13 years agowintest: cope with the heimdal version of kinit
Andrew Tridgell [Mon, 29 Nov 2010 06:19:55 +0000 (17:19 +1100)]
wintest: cope with the heimdal version of kinit

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Mon Nov 29 08:49:36 CET 2010 on sn-devel-104

13 years agos4-samdb: give a better exception if multiple users match in password change
Andrew Tridgell [Mon, 29 Nov 2010 05:57:25 +0000 (16:57 +1100)]
s4-samdb: give a better exception if multiple users match in password change

13 years agos4-repl_schema: fixed ldb exception handling
Andrew Tridgell [Mon, 29 Nov 2010 03:16:18 +0000 (14:16 +1100)]
s4-repl_schema: fixed ldb exception handling

13 years agos4-samba-tool: fixed exception handling in subcommands
Andrew Tridgell [Mon, 29 Nov 2010 03:15:57 +0000 (14:15 +1100)]
s4-samba-tool: fixed exception handling in subcommands

this switches to the new pattern of:

 except Exception, e:
  raise CommandError("some error message", e)

13 years agos4-samba-tool: fixed ldb exception handling in domainlevel command
Andrew Tridgell [Mon, 29 Nov 2010 03:14:01 +0000 (14:14 +1100)]
s4-samba-tool: fixed ldb exception handling in domainlevel command

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

13 years agos4-samba-tool: improved exception handling in samba-tool
Andrew Tridgell [Mon, 29 Nov 2010 03:11:57 +0000 (14:11 +1100)]
s4-samba-tool: improved exception handling in samba-tool

we now do reasonable printing on a wide range of common exception
classes, and always force a backtrace on an exception if the debug
level is >= 3

Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>

13 years agos4-join: fixed exception handling in join command
Andrew Tridgell [Mon, 29 Nov 2010 03:10:57 +0000 (14:10 +1100)]
s4-join: fixed exception handling in join command

13 years agos4-ldapcmp: make ldapcmp a samba-tool command
Andrew Tridgell [Mon, 29 Nov 2010 03:10:26 +0000 (14:10 +1100)]
s4-ldapcmp: make ldapcmp a samba-tool command

The ldapcmp tool is very useful, and should be available to Samba
admins, not just developers. This makes it a samba-tool command, which
also gives it the nicer command line handling that samba-tool has

13 years agos4-ldapcmp: fixed exception handling
Andrew Tridgell [Mon, 29 Nov 2010 02:30:46 +0000 (13:30 +1100)]
s4-ldapcmp: fixed exception handling

This pattern, which is common in our code, is wrong:
            except LdbError, (ERR_NO_SUCH_OBJECT, _):

what it actually does it to change the value of ldb.ERR_NO_SUCH_OBJECT
to be equal to whatever ldb error occurred! This led to some really
bizarre behavior

13 years agos4-pyglue: added get_debug_level() method
Andrew Tridgell [Mon, 29 Nov 2010 02:26:48 +0000 (13:26 +1100)]
s4-pyglue: added get_debug_level() method

Pair-Programmed-With: Jelmer Vernooij <jelmer@samba.org>

13 years agos4-loadparm: use loadparm_init_global() instead of loadparm_init()
Andrew Tridgell [Mon, 29 Nov 2010 02:25:59 +0000 (13:25 +1100)]
s4-loadparm: use loadparm_init_global() instead of loadparm_init()

this prevents us having two lp_ctx contexts in these tools which leads
to bizarre behaviour

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

13 years agos4-loadparm: added loadparm_init_global()
Andrew Tridgell [Mon, 29 Nov 2010 02:24:51 +0000 (13:24 +1100)]
s4-loadparm: added loadparm_init_global()

This ensures we use the same loadparm_context in all our command line
tools.

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

13 years agos4-gpo: started on samba-tool gpo list command
Andrew Tridgell [Sun, 28 Nov 2010 03:33:12 +0000 (14:33 +1100)]
s4-gpo: started on samba-tool gpo list command

13 years agos4-dsdb: give full error message for operational failures
Andrew Tridgell [Sun, 28 Nov 2010 03:32:51 +0000 (14:32 +1100)]
s4-dsdb: give full error message for operational failures

13 years agos4-pydsdb: two more GPO related flags
Andrew Tridgell [Sun, 28 Nov 2010 03:32:01 +0000 (14:32 +1100)]
s4-pydsdb: two more GPO related flags

13 years agos4-samba-tool: started on gpo subcommands in python
Andrew Tridgell [Sun, 28 Nov 2010 01:20:15 +0000 (12:20 +1100)]
s4-samba-tool: started on gpo subcommands in python

this adds the listall GPO command. Currently the python variants are
available as "samba-tool gpo2 SUBCOMMAND". These will replace the
"samba-tool gpo" commands when complete

13 years agos4-pydsdb: added GPO policy flags
Andrew Tridgell [Sun, 28 Nov 2010 01:18:29 +0000 (12:18 +1100)]
s4-pydsdb: added GPO policy flags

13 years agosamba.tests.hostconfig: Fix import.
Jelmer Vernooij [Sun, 28 Nov 2010 15:38:27 +0000 (16:38 +0100)]
samba.tests.hostconfig: Fix import.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Nov 28 18:08:33 CET 2010 on sn-devel-104

13 years agos4-python: Some reformatting for the purpose of pydoctor.
Jelmer Vernooij [Sun, 28 Nov 2010 13:09:30 +0000 (14:09 +0100)]
s4-python: Some reformatting for the purpose of pydoctor.

13 years agosamba.upgradehelpers: Simplify code a bit.
Jelmer Vernooij [Sun, 28 Nov 2010 12:45:56 +0000 (13:45 +0100)]
samba.upgradehelpers: Simplify code a bit.

13 years agosamba.hostconfig: Move samba.shares into samba.hostconfig.
Jelmer Vernooij [Sun, 28 Nov 2010 12:39:12 +0000 (13:39 +0100)]
samba.hostconfig: Move samba.shares into samba.hostconfig.

13 years agosamba.getopt: Fix missing import of sys.
Jelmer Vernooij [Sun, 28 Nov 2010 12:37:31 +0000 (13:37 +0100)]
samba.getopt: Fix missing import of sys.

13 years agochgtdcpass: Fix program name in usage message.
Jelmer Vernooij [Sun, 28 Nov 2010 12:34:19 +0000 (13:34 +0100)]
chgtdcpass: Fix program name in usage message.

13 years agos4:torture/smb2/acls.c - remove two unused variables
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 15:07:26 +0000 (16:07 +0100)]
s4:torture/smb2/acls.c - remove two unused variables

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sun Nov 28 17:22:54 CET 2010 on sn-devel-104

13 years agos4:introduce casts before outputs of "time_t" variables
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 15:06:19 +0000 (16:06 +0100)]
s4:introduce casts before outputs of "time_t" variables

Otherwise we are getting warnings on "NetBSD".

13 years agoreplace:wscript - reintroduce the size check for "bool" due to a request of metze
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 13:55:28 +0000 (14:55 +0100)]
replace:wscript - reintroduce the size check for "bool" due to a request of metze

13 years agoreplace:wscript - change the "bool" checks to be compatible with more platforms
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 11:28:03 +0000 (12:28 +0100)]
replace:wscript - change the "bool" checks to be compatible with more platforms

- If the type was found then we are fine and define "HAVE_BOOL"
- Othewise we substitute it in "replace.h" as "_Bool" or if not possible as "int"
- This prevents lot of warnings on platforms where we don't have a "bool" type as Tru64
- The length check for "bool" is not really useful and therefore removed

13 years agobuild: update gdb_backtrace to make it search for gdb66 as it work on freebsd
Matthieu Patou [Sun, 28 Nov 2010 14:32:06 +0000 (17:32 +0300)]
build: update gdb_backtrace to make it search for gdb66 as it work on freebsd

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sun Nov 28 16:37:08 CET 2010 on sn-devel-104

13 years agofix bad shell
Matthieu Patou [Sun, 28 Nov 2010 14:28:57 +0000 (17:28 +0300)]
fix bad shell

13 years agoreplace:wscript - reintroduce the size check for "bool" due to a request of metze
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 13:55:28 +0000 (14:55 +0100)]
replace:wscript - reintroduce the size check for "bool" due to a request of metze

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sun Nov 28 15:48:40 CET 2010 on sn-devel-104

13 years agos3: Properly print binary values "net cache"
Volker Lendecke [Sun, 28 Nov 2010 12:14:38 +0000 (13:14 +0100)]
s3: Properly print binary values "net cache"

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun Nov 28 15:03:26 CET 2010 on sn-devel-104

13 years agos3: Add gencache_iterate_blobs
Volker Lendecke [Sat, 27 Nov 2010 14:48:21 +0000 (15:48 +0100)]
s3: Add gencache_iterate_blobs

13 years agos3: Convert gencache_get_data_blob to gencache_parse
Volker Lendecke [Sat, 27 Nov 2010 10:36:52 +0000 (11:36 +0100)]
s3: Convert gencache_get_data_blob to gencache_parse

13 years agos3: Add gencache_parse
Volker Lendecke [Fri, 26 Nov 2010 23:40:25 +0000 (00:40 +0100)]
s3: Add gencache_parse

13 years agoRevert "s4:netcmd/drs.py - use "objectClass" for discovering the server and it's...
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 11:54:02 +0000 (12:54 +0100)]
Revert "s4:netcmd/drs.py - use "objectClass" for discovering the server and it's NTDS settings object"

This reverts commit b87c3703cf890bd55340a201536073bd2be1e1d8.
Andrew Bartlett told me that exactly the opposite is true - the "objectCategory"
lookup is performing better.

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sun Nov 28 14:18:41 CET 2010 on sn-devel-104

13 years agoreplace:wscript - change the "bool" checks to be compatible with more platforms
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 11:28:03 +0000 (12:28 +0100)]
replace:wscript - change the "bool" checks to be compatible with more platforms

- If the type was found then we are fine and define "HAVE_BOOL"
- Othewise we substitute it in "replace.h" as "_Bool" or if not possible as "int"
- This prevents lot of warnings on platforms where we don't have a "bool" type as Tru64
- The length check for "bool" is not really useful and therefore removed

13 years agoadd handling for solaris
Matthieu Patou [Sun, 28 Nov 2010 10:53:40 +0000 (13:53 +0300)]
add handling for solaris

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sun Nov 28 13:32:21 CET 2010 on sn-devel-104

13 years agos4:dsdb/repl/drepl* - move "lib/messaging/irpc.h" include into "drepl_service.h"
Matthias Dieter Wallnöfer [Sun, 28 Nov 2010 10:53:48 +0000 (11:53 +0100)]
s4:dsdb/repl/drepl* - move "lib/messaging/irpc.h" include into "drepl_service.h"

This is needed to fix a Tru64 "cc" warning regarding "enum drepl_role_master".

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sun Nov 28 12:46:19 CET 2010 on sn-devel-104

13 years agos4-selftest: Ignore broken pipe error from grep.
Jelmer Vernooij [Sun, 28 Nov 2010 03:58:52 +0000 (04:58 +0100)]
s4-selftest: Ignore broken pipe error from grep.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sun Nov 28 05:45:05 CET 2010 on sn-devel-104

13 years agosamba.provision: Fix setup_path.
Jelmer Vernooij [Sun, 28 Nov 2010 03:22:46 +0000 (04:22 +0100)]
samba.provision: Fix setup_path.

13 years agosamba.provision: Add package with provision and backend modules.
Jelmer Vernooij [Sun, 28 Nov 2010 03:02:28 +0000 (04:02 +0100)]
samba.provision: Add package with provision and backend modules.

13 years agos4-python: Fix formatting of docstrings for the purpose of pydoctor.
Jelmer Vernooij [Sun, 28 Nov 2010 02:34:47 +0000 (03:34 +0100)]
s4-python: Fix formatting of docstrings for the purpose of pydoctor.

13 years agoMakefile: Add rule for pydoctor.
Jelmer Vernooij [Sun, 28 Nov 2010 02:29:35 +0000 (03:29 +0100)]
Makefile: Add rule for pydoctor.

13 years agosamba.tests: Fix formatting.
Jelmer Vernooij [Sun, 28 Nov 2010 02:15:36 +0000 (03:15 +0100)]
samba.tests: Fix formatting.

13 years agos4-tests/bind.py: Use samba.tests.connect_samdb() instead of directly using SamDB...
Kamen Mazdrashki [Sun, 28 Nov 2010 01:05:05 +0000 (03:05 +0200)]
s4-tests/bind.py: Use samba.tests.connect_samdb() instead of directly using SamDB class

connect_samdb() functino will correctly handle things like:
- session_info param - it will create system_session() using supplied
  LoadParm parameter and thus avoiding creation of multiple LoadParm
  instances (LoadParm() will mask certain command line supplied options)
- host url will be prefixed with ldap:// automatically

Autobuild-User: Kamen Mazdrashki <kamenim@samba.org>
Autobuild-Date: Sun Nov 28 03:00:41 CET 2010 on sn-devel-104

13 years agos4-samba-tool: support help, and show description of commands
Andrew Tridgell [Sat, 27 Nov 2010 23:52:09 +0000 (10:52 +1100)]
s4-samba-tool: support help, and show description of commands

when you don't specify a subcommand, show the description of the
subcommands in the list of available subcommands. Also show the list
of subcommands when you use 'help', '--help' or '-h' as a subcommand

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sun Nov 28 01:56:46 CET 2010 on sn-devel-104

13 years agos4-drs: fixed credit for C version
Andrew Tridgell [Sat, 27 Nov 2010 23:41:53 +0000 (10:41 +1100)]
s4-drs: fixed credit for C version

13 years agos4:netcmd/drs.py - use "objectClass" for discovering the server and it's NTDS setting...
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 21:44:55 +0000 (22:44 +0100)]
s4:netcmd/drs.py - use "objectClass" for discovering the server and it's NTDS settings object

Small optimisation: we don't need to look for "nTDSDSARO" since it's a subclass
of "ntDSDSA".

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sat Nov 27 23:35:13 CET 2010 on sn-devel-104

13 years agotdb:common/open.c - use "discard_const_p" for certain "tdb->name" assignments
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 19:19:34 +0000 (20:19 +0100)]
tdb:common/open.c - use "discard_const_p" for certain "tdb->name" assignments

In order to suppress compiler warnings.

13 years agos4:dsdb/repl/drepl_service.c - return the correct WERR result
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 19:13:02 +0000 (20:13 +0100)]
s4:dsdb/repl/drepl_service.c - return the correct WERR result

13 years agos4:drepl_service.c - fix error macro (use "_werr" and not "werr")
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 19:12:25 +0000 (20:12 +0100)]
s4:drepl_service.c - fix error macro (use "_werr" and not "werr")

Detected by Tru64 "cc".

13 years agos4:dsdb/repl/drepl_out_helpers.c - print out the correct error message (werr)
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 19:06:18 +0000 (20:06 +0100)]
s4:dsdb/repl/drepl_out_helpers.c - print out the correct error message (werr)

Also detected by Tru64 "cc".

13 years agos4:lib/registry/rpc.c - remove a duplicate assignment
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 19:03:53 +0000 (20:03 +0100)]
s4:lib/registry/rpc.c - remove a duplicate assignment

13 years agos4:torture/rpc/samr.c - fix uninitialised "status" variables
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:52:46 +0000 (19:52 +0100)]
s4:torture/rpc/samr.c - fix uninitialised "status" variables

Detected by Tru64. I wonder how this tests even worked.

13 years agos4:torture/rpc/samsync.c - remove uninitialised "nt_status" check
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:45:45 +0000 (19:45 +0100)]
s4:torture/rpc/samsync.c - remove uninitialised "nt_status" check

Found by Tru64 compiler.

13 years agos4:drsuapi RPC server - fix "enum security_user_level" warning on Tru64
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:42:31 +0000 (19:42 +0100)]
s4:drsuapi RPC server - fix "enum security_user_level" warning on Tru64

13 years agos4:param/secrets.h - fix "enum netr_SchannelType" include correctly
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:32:03 +0000 (19:32 +0100)]
s4:param/secrets.h - fix "enum netr_SchannelType" include correctly

13 years agos4:wkssvc RPC server - better solution for srvsvc* enum's in server_info.c
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:16:00 +0000 (19:16 +0100)]
s4:wkssvc RPC server - better solution for srvsvc* enum's in server_info.c

Reworked version of commit 7e710c4de92c310897817acc06d229cce763d2d7

13 years agoRevert "s4:rpc_server/common/common.h - introduce two forward declarations to suppres...
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 18:10:27 +0000 (19:10 +0100)]
Revert "s4:rpc_server/common/common.h - introduce two forward declarations to suppress parameter declaration warnings"

This reverts commit 7e710c4de92c310897817acc06d229cce763d2d7.
This causes more noise than it's useful.

13 years agos4:libcli/security/session.h - fix include ordering for "enum security_user_level"
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 17:33:42 +0000 (18:33 +0100)]
s4:libcli/security/session.h - fix include ordering for "enum security_user_level"

13 years agos4:dsdb/samdb/samdb.h - fix include ordering in order to prevent warnings on Tru64
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 17:30:12 +0000 (18:30 +0100)]
s4:dsdb/samdb/samdb.h - fix include ordering in order to prevent warnings on Tru64

13 years agos3: Use localtime_r, libreplace defines it
Volker Lendecke [Sat, 27 Nov 2010 18:52:11 +0000 (19:52 +0100)]
s3: Use localtime_r, libreplace defines it

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sat Nov 27 20:50:27 CET 2010 on sn-devel-104

13 years agolibwbclient: Correctly order the wbcAllocateMemory args
Volker Lendecke [Sat, 27 Nov 2010 18:07:40 +0000 (19:07 +0100)]
libwbclient: Correctly order the wbcAllocateMemory args

In these cases, it does not make a functional difference.

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sat Nov 27 19:56:02 CET 2010 on sn-devel-104

13 years agolibwbclient: Fix a division by zero
Volker Lendecke [Sat, 27 Nov 2010 18:02:33 +0000 (19:02 +0100)]
libwbclient: Fix a division by zero

If wbinfo -r returns no groups, wbcAllocateMemory divides by zero

13 years agos3: Return the correct result from winbindd_dual_auth_passdb
Volker Lendecke [Sat, 27 Nov 2010 17:56:41 +0000 (18:56 +0100)]
s3: Return the correct result from winbindd_dual_auth_passdb

13 years agoMAINTAINERS.txt - fix typo
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 17:25:28 +0000 (18:25 +0100)]
MAINTAINERS.txt - fix typo

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sat Nov 27 19:09:29 CET 2010 on sn-devel-104

13 years agotdb:tdbstore.c - remove an useless '\'
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 17:21:32 +0000 (18:21 +0100)]
tdb:tdbstore.c - remove an useless '\'

Discovered by a warning of the Tru64 host on the buildfarm.

13 years agobuild: change compile flags on mac os x if we face pb with common symbols
Matthieu Patou [Sat, 27 Nov 2010 14:11:35 +0000 (17:11 +0300)]
build: change compile flags on mac os x if we face pb with common symbols

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sat Nov 27 18:02:41 CET 2010 on sn-devel-104

13 years agoremove useless debug message :-)
Matthieu Patou [Sat, 27 Nov 2010 10:44:50 +0000 (13:44 +0300)]
remove useless debug message :-)

13 years agoshow_test_time: Move to root scripting directory as it's useful for s3
Jelmer Vernooij [Sat, 27 Nov 2010 15:31:53 +0000 (16:31 +0100)]
show_test_time: Move to root scripting directory as it's useful for s3
and s4.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Nov 27 17:17:29 CET 2010 on sn-devel-104

13 years agos4:role transfer - use always type "enum drepl_role_master" for role specifications
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 13:40:53 +0000 (14:40 +0100)]
s4:role transfer - use always type "enum drepl_role_master" for role specifications

Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org>
Autobuild-Date: Sat Nov 27 16:03:43 CET 2010 on sn-devel-104

13 years agos4:samba3sam LDB module - correctly print out an unsigned value
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 13:17:53 +0000 (14:17 +0100)]
s4:samba3sam LDB module - correctly print out an unsigned value

Here we can print it out as unsigned since we are generating a string
attribute.

13 years agos4:samba3sam LDB module - make the "pw_uid"/"pw_gid" conversion a bit clearer
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 13:07:31 +0000 (14:07 +0100)]
s4:samba3sam LDB module - make the "pw_uid"/"pw_gid" conversion a bit clearer

And remove the "long" specifier since at least on the major platforms
(Linux, BSD and Solaris) these types are defined as "uint32_t".

13 years agos4:dsdb tests - make use of "ldb.get_domain_sid()"
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 11:32:22 +0000 (12:32 +0100)]
s4:dsdb tests - make use of "ldb.get_domain_sid()"

13 years agos4:dsdb/tests/python/sam.py - we don't need the domain SID
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 11:21:59 +0000 (12:21 +0100)]
s4:dsdb/tests/python/sam.py - we don't need the domain SID

13 years agos4:torture/drs/python/fsmo.py - fix comments and an error message
Matthias Dieter Wallnöfer [Sat, 27 Nov 2010 11:08:03 +0000 (12:08 +0100)]
s4:torture/drs/python/fsmo.py - fix comments and an error message

13 years agos4-samba-tool: removed old C implementation of samba-tool drs
Andrew Tridgell [Sat, 27 Nov 2010 12:53:00 +0000 (23:53 +1100)]
s4-samba-tool: removed old C implementation of samba-tool drs

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sat Nov 27 15:16:02 CET 2010 on sn-devel-104

13 years agos4-samba-tool: switched over to python version of samba-tool drs
Andrew Tridgell [Sat, 27 Nov 2010 12:50:25 +0000 (23:50 +1100)]
s4-samba-tool: switched over to python version of samba-tool drs

13 years agos4-samba-tool: added python implementation of samba-tool drs commands
Andrew Tridgell [Sat, 27 Nov 2010 12:48:20 +0000 (23:48 +1100)]
s4-samba-tool: added python implementation of samba-tool drs commands

much simpler than the C code, and this brings us one step closer to a
python samba-tool

13 years agos4-pyglue: expose the remaining NTTIME functions from glue
Andrew Tridgell [Sat, 27 Nov 2010 12:47:30 +0000 (23:47 +1100)]
s4-pyglue: expose the remaining NTTIME functions from glue

13 years agos4-drs: allow DrsReplicaGetInfo as a DC
Andrew Tridgell [Sat, 27 Nov 2010 12:47:03 +0000 (23:47 +1100)]
s4-drs: allow DrsReplicaGetInfo as a DC

13 years agos4-pydsdb: use cpp macro to simplify flags definitions
Andrew Tridgell [Sat, 27 Nov 2010 12:46:33 +0000 (23:46 +1100)]
s4-pydsdb: use cpp macro to simplify flags definitions

also added some more from flags.h

13 years agolibds: added mS-DS-ReplicatesNCReason flags
Andrew Tridgell [Sat, 27 Nov 2010 12:45:53 +0000 (23:45 +1100)]
libds: added mS-DS-ReplicatesNCReason flags

these define why a KCC connection was made

13 years agos4-samba-tool: fixed "-k no" for disabling kerberos auth
Andrew Tridgell [Sat, 27 Nov 2010 11:03:07 +0000 (22:03 +1100)]
s4-samba-tool: fixed "-k no" for disabling kerberos auth

The option "-k no" was not correctly disabling kerberos in python
programs

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

13 years agoAdd timestamp when running with --maximum-runtime
Matthieu Patou [Sat, 27 Nov 2010 10:00:57 +0000 (13:00 +0300)]
Add timestamp when running with --maximum-runtime

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sat Nov 27 11:51:12 CET 2010 on sn-devel-104

13 years agoblackbox.ldb: Support using system ldbsearch.
Jelmer Vernooij [Sat, 27 Nov 2010 02:13:08 +0000 (03:13 +0100)]
blackbox.ldb: Support using system ldbsearch.

Autobuild-User: Jelmer Vernooij <jelmer@samba.org>
Autobuild-Date: Sat Nov 27 04:32:11 CET 2010 on sn-devel-104

13 years agoselftest: Allow using ldb* utilities from system.
Jelmer Vernooij [Sat, 27 Nov 2010 02:03:50 +0000 (03:03 +0100)]
selftest: Allow using ldb* utilities from system.

13 years agos4-libnet: use the full DNS domain for CLDAP lookups if possible
Andrew Tridgell [Sat, 27 Nov 2010 01:59:51 +0000 (12:59 +1100)]
s4-libnet: use the full DNS domain for CLDAP lookups if possible

many of the internal libnet interfaces use the short domain name,
which leads to unreliable NBT lookups. If we are trying to look for
our workgroup, then look for our DNS domain instead

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sat Nov 27 03:47:52 CET 2010 on sn-devel-104

13 years agowintest: cope with VMs sometimes not rebooting
Andrew Tridgell [Sat, 27 Nov 2010 00:33:52 +0000 (11:33 +1100)]
wintest: cope with VMs sometimes not rebooting

my w2k8 image occasionally gets stuck in the early stages of
booting. This adds code to detect a failed reboot, in which case the
VM is reset

Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sat Nov 27 02:42:19 CET 2010 on sn-devel-104

13 years agowintest: avoid adding a blank line to resolv.conf on each run
Andrew Tridgell [Fri, 26 Nov 2010 23:28:15 +0000 (10:28 +1100)]
wintest: avoid adding a blank line to resolv.conf on each run

Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Sat Nov 27 01:47:48 CET 2010 on sn-devel-104

13 years agowintest: handle missing firewall commands
Andrew Tridgell [Fri, 26 Nov 2010 23:27:22 +0000 (10:27 +1100)]
wintest: handle missing firewall commands

my w2k3 box doesn't have these firewall commands

13 years agos3-param Fix lp_set_cmdline() to set the flag on alias values too
Andrew Bartlett [Fri, 26 Nov 2010 21:17:09 +0000 (08:17 +1100)]
s3-param Fix lp_set_cmdline() to set the flag on alias values too

Otherwise, -d10 would be overridden by 'debug level = 1', because
debug level is an alias of 'log level' which -d was setting.

Andrew Bartlett

Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Sat Nov 27 01:02:40 CET 2010 on sn-devel-104

13 years agoFix endianess problems as discovered on the build farm
Matthieu Patou [Fri, 26 Nov 2010 20:45:13 +0000 (23:45 +0300)]
Fix endianess problems as discovered on the build farm

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Fri Nov 26 22:32:16 CET 2010 on sn-devel-104

13 years agoldb-tdb: Add more information about full scan
Matthieu Patou [Tue, 23 Nov 2010 21:14:10 +0000 (00:14 +0300)]
ldb-tdb: Add more information about full scan

13 years agos3/configure: fix GNU ld version detection with old gcc releases
Björn Jacke [Fri, 26 Nov 2010 14:14:14 +0000 (15:14 +0100)]
s3/configure: fix GNU ld version detection with old gcc releases

needed as old gcc releases output everything to stderr, even stdout output from
ld

Fixes #7825

Autobuild-User: Björn Jacke <bj@sernet.de>
Autobuild-Date: Fri Nov 26 20:15:24 CET 2010 on sn-devel-104

13 years agos3: Fix filling in the pam_auth_crap domain name
Volker Lendecke [Fri, 26 Nov 2010 09:55:48 +0000 (10:55 +0100)]
s3: Fix filling in the pam_auth_crap domain name

Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Fri Nov 26 14:43:20 CET 2010 on sn-devel-104