[SCM] Samba Shared Repository - branch master updated

2011-07-20 Thread Stefan Metzmacher
The branch, master has been updated
   via  8d159e9 s4:kdc: restore the behavior before the last heimdal import
  from  481f05c s3-gse Work around the MIT 1.9 gss_krb5_import_cred

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 8d159e9de108f2ccd107676a68802d90b95e5e7a
Author: Stefan Metzmacher me...@samba.org
Date:   Wed Jul 20 10:22:10 2011 +0200

s4:kdc: restore the behavior before the last heimdal import

metze

Autobuild-User: Stefan Metzmacher me...@samba.org
Autobuild-Date: Wed Jul 20 12:12:38 CEST 2011 on sn-devel-104

---

Summary of changes:
 source4/kdc/kdc.c |   24 
 1 files changed, 16 insertions(+), 8 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/kdc/kdc.c b/source4/kdc/kdc.c
index 7c00ea9..4e1e27c 100644
--- a/source4/kdc/kdc.c
+++ b/source4/kdc/kdc.c
@@ -965,16 +965,24 @@ static void kdc_task_init(struct task_server *task)
kdc-config-num_db = 1;
 
/*
-* TODO: find out why this is needed in order
-*   to let make test work.
+* This restores the behavior before
+* commit 255e3e18e00f717d99f3bc57c8a8895ff624f3c3
+* s4:heimdal: import lorikeet-heimdal-201107150856
+* (commit 48936803fae4a2fb362c79365d31f420c917b85b)
 *
-*   Without this, we are getting PAC varification
-*   failures. I guess because the PAC is not signed
-*   with a arcfour-hmac-md5 key.
+* as_use_strongest_session_key,preauth_use_strongest_session_key
+* and tgs_use_strongest_session_key are input to the
+* _kdc_find_etype() function. The old bahavior is in
+* the use_strongest_session_key=FALSE code path.
+* (The only remaining difference in _kdc_find_etype()
+*  is the is_preauth parameter.)
+*
+* The old behavior in the _kdc_get_preferred_key()
+* function is use_strongest_server_key=TRUE.
 */
-   kdc-config-as_use_strongest_session_key = true;
-   kdc-config-preauth_use_strongest_session_key = true;
-   kdc-config-tgs_use_strongest_session_key = true;
+   kdc-config-as_use_strongest_session_key = false;
+   kdc-config-preauth_use_strongest_session_key = false;
+   kdc-config-tgs_use_strongest_session_key = false;
kdc-config-use_strongest_server_key = true;
 
/* Register hdb-samba4 hooks for use as a keytab */


-- 
Samba Shared Repository


[SCM] Samba Shared Repository - branch master updated

2011-07-20 Thread Stefan Metzmacher
The branch, master has been updated
   via  d622cad s3-torture: run_simple_posix_open_test(): replace 
cli_read_old() with cli_read()
   via  c53e2ad s3-torture: rw_torture2(): replace cli_read_old() with 
cli_read()
   via  ea4c448 s3-torture: rw_torture3(): replace cli_read_old() with 
cli_read()
   via  b10fa4b s3-torture: rw_torture(): replace cli_read_old() with 
cli_read()
   via  8c360d7 s3-libsmb: introduce new NTSTATUS cli_read()
   via  9b168e1 s3-libsmb: replace cli_read() with cli_read_old()
   via  8f41e54 s3:libsmb: move cli-cnum to cli-smb1.tid and hide it 
behind cli_state_[g|s]et_tid()
   via  1e38221 s3:libsmb: move cli-pid to cli-smb1.pid and hide it 
behind cli_[g|s]etpid()
   via  9fb7e22 s3:libsmb: add cli-smb1.vc_num and hide it behind 
cli_state_get_vc_num()
   via  6c31b61 s3:libsmb: move cli-mid to cli-smb1.mid
   via  21a6bdc s3:libsmb: smb_bytes_talloc_string() doesn't need a 
cli_state
  from  8d159e9 s4:kdc: restore the behavior before the last heimdal import

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit d622cadd34e268a7348cb1c06b3e3ca01013a0bf
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 16:15:52 2011 +0200

s3-torture: run_simple_posix_open_test(): replace cli_read_old() with
cli_read()

Signed-off-by: Stefan Metzmacher me...@samba.org

Autobuild-User: Stefan Metzmacher me...@samba.org
Autobuild-Date: Wed Jul 20 23:22:09 CEST 2011 on sn-devel-104

commit c53e2ad4de17a7f7ddaa80d79dfe99e3578c2ab7
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 16:01:42 2011 +0200

s3-torture: rw_torture2(): replace cli_read_old() with cli_read()

Signed-off-by: Stefan Metzmacher me...@samba.org

commit ea4c4480b483a90d194dfded586cba1917b8825d
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 15:49:03 2011 +0200

s3-torture: rw_torture3(): replace cli_read_old() with cli_read()

Signed-off-by: Stefan Metzmacher me...@samba.org

commit b10fa4bbcd49b313154ab59309d046aa35dd9ef7
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 15:29:14 2011 +0200

s3-torture: rw_torture(): replace cli_read_old() with cli_read()

Signed-off-by: Stefan Metzmacher me...@samba.org

commit 8c360d7f76c7c054781ac41c4d823d0529af1577
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 11:11:27 2011 +0200

s3-libsmb: introduce new NTSTATUS cli_read()

Replacement for cli_read_old()

Signed-off-by: Stefan Metzmacher me...@samba.org

commit 9b168e128a74b7e816a6eea73d1b8db8b915b701
Author: Björn Baumbach b...@sernet.de
Date:   Tue Jul 19 10:48:16 2011 +0200

s3-libsmb: replace cli_read() with cli_read_old()

Will introduce new cli_read() function.

Signed-off-by: Stefan Metzmacher me...@samba.org

commit 8f41e54d538896a929ef8ebf224ddcfea7982ba8
Author: Stefan Metzmacher me...@samba.org
Date:   Tue Jul 19 16:25:52 2011 +0200

s3:libsmb: move cli-cnum to cli-smb1.tid and hide it behind 
cli_state_[g|s]et_tid()

metze

commit 1e3822115c3b466632044fe64c908b6f2de5803a
Author: Stefan Metzmacher me...@samba.org
Date:   Tue Jul 19 12:56:51 2011 +0200

s3:libsmb: move cli-pid to cli-smb1.pid and hide it behind 
cli_[g|s]etpid()

metze

commit 9fb7e228f5a6e39dd22e1c56733c61178ee0be49
Author: Stefan Metzmacher me...@samba.org
Date:   Tue Jul 19 12:52:10 2011 +0200

s3:libsmb: add cli-smb1.vc_num and hide it behind cli_state_get_vc_num()

This makes it clearer, why we send the pid value in the session setup.

metze

commit 6c31b610e4c44105ddeb9a5ffd8e64ef3954e79e
Author: Stefan Metzmacher me...@samba.org
Date:   Tue Jul 19 11:34:35 2011 +0200

s3:libsmb: move cli-mid to cli-smb1.mid

metze

commit 21a6bdc680311d58625c4e46c8126b38700fac52
Author: Stefan Metzmacher me...@samba.org
Date:   Tue Jul 19 16:02:31 2011 +0200

s3:libsmb: smb_bytes_talloc_string() doesn't need a cli_state

metze

---

Summary of changes:
 source3/client/clitar.c |2 +-
 source3/include/client.h|   10 ++-
 source3/libgpo/gpo_filesync.c   |2 +-
 source3/libsmb/async_smb.c  |4 +-
 source3/libsmb/cliconnect.c |   21 +++
 source3/libsmb/clidfs.c |4 +-
 source3/libsmb/clientgen.c  |   49 +---
 source3/libsmb/clifile.c|   10 ++--
 source3/libsmb/clireadwrite.c   |   22 +++-
 source3/libsmb/libsmb_file.c|2 +-
 source3/libsmb/libsmb_server.c  |2 +-
 source3/libsmb/proto.h  |   10 +++-
 source3/torture/denytest.c  |4 +-
 source3/torture/nbio.c  |2 +-
 source3/torture/torture.c   |  118 ++
 source3/torture/utable.c|2 +-
 source3/utils/net_rpc.c |4 +-
 source3/utils/net_rpc_printer.c 

[SCM] Samba Shared Repository - branch master updated

2011-07-20 Thread Andrew Tridgell
The branch, master has been updated
   via  7f9d45b samba-tool: make sure we exit with an error on a bad command
   via  6e82e20 dbcheck: mark the dbcheck as known-fail
   via  e593939 samba-tool: fixed some more calls to samba_tool join to be 
'domain join'
   via  2cfe528 s4-selftest: added undump.sh script
   via  e01f310 tdb: remove 'EOF' print from tdbrestore
   via  6257994 dbcheck: use string DN in delete when fixing broken strings 
DNs
   via  a656b18 s4-provision: run dbcheck on a minimal set of objects in 
provision
   via  a2c4258 s4-kcc: use dsdb_delete() instead of ldb_delete()
   via  114377a s4-dsdb: added dsdb_delete() function
   via  a36af1a pyldb: use dn.is_child_of() instead of dn.compare_base()
   via  9117a2f samba_backup: check that directory really exists
   via  fa194c3 tests: Add alpha13 dumped provision
   via  72ca5c3 s4-dsdb: Use controls provided during the request while 
searching for object to delete
   via  6362c9c s4-dsdb: check group membership only for non deleted objects
   via  76b1657 s4-dsdb: change the samba3sam test to add the show_deleted 
module
   via  3f6df9f pyldb: add unit test for ldbDn.compare_base
   via  521556c ldb-python: add a function to Dn object to compare the Dn 
with a base DN
   via  930fa1e update/add my copyright
   via  9a1dd24 s4-dsdb: In rootdse add extended dn info on all values for 
a given attribute
   via  245f4b2 s4-dsdb: add dsdb_module_extended function similar to other 
dsdb_module_* functions
   via  b1ffe82 s4-schema: add systemFlags to dsdb classes objects
   via  88df1da s4-test: don't fix broken objects during dbcheck test
   via  bba7dc5 dbcheck: test the --reindex option
   via  190ec87 s4-test: added dbcheck run to test suite
   via  a8cba72 samba-tool: nicer error in passwordsettings with no settings
   via  bfd94a1 samba-tool: testparm doesn't take any credentials
   via  7d39937 samba-tool: use 'exportkeytab' instead of 'dumpkeys'
   via  6e7b8aa samba-tool: Fix __doc_ in base classes
   via  5f5eb1b samba-tool: removed synopsis code in base class
   via  452e509 samba-tool: Fixed bugs to determine min and max # of 
allowed arguments
   via  f03a059 samba-tool: Improved --help functionality
   via  a2e2c13 samba-tool: fixed __doc__ in base classes
   via  903ec44 samba-tool: Fix error handling in SuperCommand class
   via  8e0a860 samba-tool: improved Option list for all user commands
   via  7c8b53a samba-tool: added error handling for the user command
   via  a10e231 samba-tool: fixed drs commands synopsis
   via  57b796d samba-tool: fixed samba-tool user syntax
   via  f1a079f samba-tool: fixed synopsis on user commands
   via  c9bf702 samba-tool: fixed synopsis on all user commands
   via  f6fa868 samba-tool: moved takes_optiongroups definition to Command 
base class
   via  1dfcb01 samba-tool: removed the assignment to parser.prog
   via  35d534b samba-tool: fixed prog name in samba-tool
   via  df6fae2 samba-tool: update vampire.py message
   via  b8b20f7 samba-tool: removed join as it has been replaced by domain 
join
   via  2cca4a4 samba-tool: moved join to domain join
   via  9f32f86 samba-tool: updated test suite for the new domain dumpkeys 
option
   via  8f274af samba-tool: removed export as it has been moved to domain 
dumpkeys
   via  c049b14 samba-tool: moved export to domain dumpkeys
   via  eb259a6 samba-tool: updated test suite to reflect the move from 
domainlevel to domain level
   via  0cef2bf samba-tool: removed domainlevel as it has been moved to 
domain level
   via  2d4988c samba-tool: moved domainlevel to domain level
   via  e573037 samba-tool: removed machinepw as it has been moved to 
domain machinepassword
   via  41b2b7e samba-tool: moved machinepw to domain machinepassword
   via  8c7718a samba-tool: update test suite for the new domain object
   via  34f7492 samba-tool: removed pwsettings
   via  e5255f0 samba-tool: created domain object, moved pwsettings to user 
passwordsettings
   via  c4a9229 samba-tool: update test suite for add setpassword
   via  5720143 samba-tool: removed setpassword.py
   via  ff7f323 samba-tool: added setpassword to user
   via  30ba5d0 samba-tool: fix summary of the fsmo command to be clearer
  from  d622cad s3-torture: run_simple_posix_open_test(): replace 
cli_read_old() with cli_read()

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -
commit 7f9d45bf10d36b1b443305e0f2e79cb448b98cbd
Author: Andrew Tridgell tri...@samba.org
Date:   Thu Jul 21 10:29:21 2011 +1000

samba-tool: make sure we exit with an error on a bad command

Pair-Programmed-With: Andrew Bartlett abart...@samba.org

Autobuild-User: Andrew Tridgell