[SCM] Samba Shared Repository - branch master updated

2017-11-15 Thread Andreas Schneider
The branch, master has been updated
   via  f8cd211 s3: smbclient: tests: Test "volume" command over SMB1 and 
SMB2+.
   via  aaa52ab s3: smbclient: Implement "volume" command over SMB2.
   via  eefc7a2 s3: libsmb: smbc_statvfs is missing the supporting SMB2 
calls.
  from  7005609 pam_winbind: initial Turkish translation

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


- Log -
commit f8cd211acc3824e01d89a6f8bc39aa5cd54e
Author: Jeremy Allison 
Date:   Tue Nov 14 15:54:19 2017 -0800

s3: smbclient: tests: Test "volume" command over SMB1 and SMB2+.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13140

Signed-off-by: Jeremy Allison 
Reviewed-by: Andreas Schneider 

Autobuild-User(master): Andreas Schneider 
Autobuild-Date(master): Wed Nov 15 19:50:54 CET 2017 on sn-devel-144

commit aaa52ab7b5ae711b80e3967ab1ecc91888c346f6
Author: Jeremy Allison 
Date:   Tue Nov 14 15:42:14 2017 -0800

s3: smbclient: Implement "volume" command over SMB2.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13140

Signed-off-by: Jeremy Allison 
Reviewed-by: Andreas Schneider 

commit eefc7a27155b70d027b1193187dd435267d863ea
Author: Jeremy Allison 
Date:   Tue Nov 14 13:52:03 2017 -0800

s3: libsmb: smbc_statvfs is missing the supporting SMB2 calls.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13138

Signed-off-by: Jeremy Allison 
Reviewed-by: Andreas Schneider 

---

Summary of changes:
 source3/libsmb/cli_smb2_fnum.c| 227 ++
 source3/libsmb/cli_smb2_fnum.h|  11 ++
 source3/libsmb/clifsinfo.c|  17 +++
 source3/script/tests/test_smbclient_s3.sh |  31 
 4 files changed, 286 insertions(+)


Changeset truncated at 500 lines:

diff --git a/source3/libsmb/cli_smb2_fnum.c b/source3/libsmb/cli_smb2_fnum.c
index b8179b0..628b17b 100644
--- a/source3/libsmb/cli_smb2_fnum.c
+++ b/source3/libsmb/cli_smb2_fnum.c
@@ -1993,6 +1993,103 @@ NTSTATUS cli_smb2_dskattr(struct cli_state *cli, const 
char *path,
 }
 
 /***
+ Wrapper that allows SMB2 to query file system sizes.
+ Synchronous only.
+***/
+
+NTSTATUS cli_smb2_get_fs_full_size_info(struct cli_state *cli,
+   uint64_t *total_allocation_units,
+   uint64_t *caller_allocation_units,
+   uint64_t *actual_allocation_units,
+   uint64_t *sectors_per_allocation_unit,
+   uint64_t *bytes_per_sector)
+{
+   NTSTATUS status;
+   uint16_t fnum = 0x;
+   DATA_BLOB outbuf = data_blob_null;
+   struct smb2_hnd *ph = NULL;
+   TALLOC_CTX *frame = talloc_stackframe();
+
+   if (smbXcli_conn_has_async_calls(cli->conn)) {
+   /*
+* Can't use sync call while an async call is in flight
+*/
+   status = NT_STATUS_INVALID_PARAMETER;
+   goto fail;
+   }
+
+   if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
+   status = NT_STATUS_INVALID_PARAMETER;
+   goto fail;
+   }
+
+   /* First open the top level directory. */
+   status =
+   cli_smb2_create_fnum(cli, "", 0,   /* create_flags */
+FILE_READ_ATTRIBUTES, /* desired_access */
+FILE_ATTRIBUTE_DIRECTORY, /* file attributes */
+FILE_SHARE_READ | FILE_SHARE_WRITE |
+FILE_SHARE_DELETE, /* share_access */
+FILE_OPEN, /* create_disposition */
+FILE_DIRECTORY_FILE,   /* create_options */
+,
+NULL);
+
+   if (!NT_STATUS_IS_OK(status)) {
+   goto fail;
+   }
+
+   status = map_fnum_to_smb2_handle(cli, fnum, );
+   if (!NT_STATUS_IS_OK(status)) {
+   goto fail;
+   }
+
+   /* getinfo on the returned handle with info_type SMB2_GETINFO_FS (2),
+  level 7 (SMB_FS_FULL_SIZE_INFORMATION). */
+
+   status = smb2cli_query_info(cli->conn,
+   cli->timeout,
+   cli->smb2.session,
+   cli->smb2.tcon,
+   SMB2_GETINFO_FS, /* in_info_type */
+   /* in_file_info_class */
+   

[SCM] Samba Shared Repository - branch master updated

2017-11-15 Thread Björn Jacke
The branch, master has been updated
   via  7005609 pam_winbind: initial Turkish translation
  from  2e5ea35 smbtorture: Remove an unused variable

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


- Log -
commit 700560924fe8188dd2ef449820a80c4bec6ec331
Author: ulkuderner 
Date:   Tue Aug 1 12:01:22 2017 +0300

pam_winbind: initial Turkish translation

Reviewed-by: Bjoern Jacke 
Reviewed-by: Karolin Seeger 

Autobuild-User(master): Björn Jacke 
Autobuild-Date(master): Wed Nov 15 13:52:05 CET 2017 on sn-devel-144

---

Summary of changes:
 source3/locale/pam_winbind/{pl.po => tr.po} | 292 ++--
 1 file changed, 141 insertions(+), 151 deletions(-)
 copy source3/locale/pam_winbind/{pl.po => tr.po} (62%)


Changeset truncated at 500 lines:

diff --git a/source3/locale/pam_winbind/pl.po b/source3/locale/pam_winbind/tr.po
similarity index 62%
copy from source3/locale/pam_winbind/pl.po
copy to source3/locale/pam_winbind/tr.po
index 4fd78f2..ae3d313 100644
--- a/source3/locale/pam_winbind/pl.po
+++ b/source3/locale/pam_winbind/tr.po
@@ -1,182 +1,187 @@
-# This file is distributed under the same license as the package.
+# This file is distributed under the same license as the pam_winbind package.
 #
 # Copyright (C) 2009 Lars Mueller 
+# Copyright (C) 2010 Christian Perrier 
 msgid ""
 msgstr ""
 "Project-Id-Version: pam_winbind\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2010-03-06 01:55+0800\n"
-"PO-Revision-Date: 2009-02-13 18:27\n"
-"Last-Translator: Novell Language \n"
-"Language-Team: Novell Language \n"
+"PO-Revision-Date: 2017-07-02 15:23+0300\n"
+"Last-Translator: Caglar Ulkuderner \n"
+"Language-Team: French \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 2.0.2\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+"Language: tr\n"
 
 #: ../../../nsswitch/pam_winbind.c:583 ../../libsmb/nterr.c:558
 msgid "Success"
-msgstr "Sukces"
+msgstr "Başarılı"
 
 #: ../../../nsswitch/pam_winbind.c:585
-msgid "No primary Domain Controller available"
-msgstr "Brak podstawowego kontolera domeny"
+msgid "No primary Domain Controler available"
+msgstr "Birincil Etki Alanı Denetleyicisi bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:587
 msgid "No domain controllers found"
-msgstr "Nie odnaleziono kontrolerów domen"
+msgstr "Hiçbir etki alanı denetleyicileri bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:589 ../../libsmb/nterr.c:566
 msgid "No logon servers"
-msgstr "Brak serwerów logowania"
+msgstr "Hiçbir oturum açma sunucusu bulunamadı."
 
 #: ../../../nsswitch/pam_winbind.c:591
 msgid "Password too short"
-msgstr "Zbyt krótkie hasło"
+msgstr "Parola çok kısa."
 
 #: ../../../nsswitch/pam_winbind.c:593
 msgid "The password of this user is too recent to change"
-msgstr "Hasło tego użytkownika jest zbyt nowe, aby je zmienić"
+msgstr "Kullanıcının parolası değiştirmek için çok yeni."
 
 #: ../../../nsswitch/pam_winbind.c:595
 msgid "Password is already in password history"
-msgstr "Hasło znajduje się już w historii haseł."
+msgstr "Girilen parola, parola geçmişinde mevcut."
 
 #: ../../../nsswitch/pam_winbind.c:597
 msgid "Your password has expired"
-msgstr "Hasło użytkownika wygasło"
+msgstr "Parolanızın süresi dolmuş."
 
 #: ../../../nsswitch/pam_winbind.c:599
 msgid "You need to change your password now"
-msgstr "Zmiana hasła jest wymagana w tej chwili"
+msgstr "Parolanızı değiştirmeniz gerekiyor."
 
 #: ../../../nsswitch/pam_winbind.c:601
 msgid "You are not allowed to logon from this workstation"
-msgstr "Brak zezwolenia na logowanie się z tej stacji roboczej"
+msgstr "Bu iş istasyonunda oturum açmanıza izin verilmiyor."
 
 #: ../../../nsswitch/pam_winbind.c:603
 msgid "You are not allowed to logon at this time"
-msgstr "Brak zezwolenia na logowanie się w tej chwili"
+msgstr "Bu saatte oturum açmanıza izin verilmiyor."
 
 #: ../../../nsswitch/pam_winbind.c:605
 msgid "Your account has expired. Please contact your System administrator"
-msgstr "To konto wygasło. Proszę skontaktować się z administratorem systemu."
+msgstr "Hesabınızın süresi dolmuş. Sistem yöneticinize başvurunuz."
 
 #: ../../../nsswitch/pam_winbind.c:608
 msgid "Your account is disabled. Please contact your System administrator"
-msgstr "To konto zostało wyłączone. Proszę skontaktować się z administratorem 
systemu."
+msgstr "Hesabınız devre dışı bırakılmış. Sistem yöneticinize başvurunuz."
 
 #: ../../../nsswitch/pam_winbind.c:611
 msgid "Your account has been locked. Please contact your System administrator"
-msgstr "To konto zostało 

[SCM] Samba Shared Repository - branch v4-6-stable updated

2017-11-15 Thread Karolin Seeger
The branch, v4-6-stable has been updated
   via  a56f9ed VERSION: Disable GIT_SNAPSHOT for the 4.6.10 release.
   via  ee75be8 WHATSNEW: Add release notes for Samba 4.6.10.
   via  c5d7a7d s4: torture: kernel oplocks. Add 
smb2.kernel-oplocks.kernel_oplocks8
   via  c64f58e s3: smbd: kernel oplocks. Replace retry_open() with 
setup_kernel_oplock_poll_open().
   via  8e338d8 selftest: Also run smbtorture smb2.compound with aio enabled
   via  8212d13 torture: Add testcase for compound CREATE-WRITE-CLOSE 
request
   via  d005547 smbd/aio: Do not go async for SMB2 compound requests
   via  13da33f smbd: Move check for SMB2 compound request to new function
   via  13e0f78 python: use communicate to fix Popen deadlock
   via  2514616 blackbox tests: method to check specific exit codes
   via  339f19a tevent: version 0.9.34
   via  5cb686d tevent: Fix a race condition
   via  148ab67 lib: tevent: Remove select backend.
   via  61819d6 tevent: version 0.9.33
   via  bd4ced8 tevent: handle passing req = NULL to tevent_req_print()
   via  4cc205c tevent: avoid calling talloc_get_name(NULL) in 
tevent_req_default_print()
   via  3bafcb5 tevent: version 0.9.32
   via  c2159d1 tevent: include the finish location in 
tevent_req_default_print()
   via  82572f0 tevent: Simplify create_immediate
   via  9abf13e tevent_threads: Fix a rundown race introduced with 
1828011317b
   via  dd516b9 tevent: Fix a race condition in tevent context rundown
   via  5a6d5c4 tevent: Fix a memleak on FreeBSD
   via  1375ed8 tevent: Add tevent_re_initialise to threaded test
   via  83c8bb7 tevent: Re-init threading in tevent_re_initialise
   via  1ea66fb tevent: Factor out context initialization
   via  03b43ed tevent: Fix a typo
   via  d4f07b4 Revert "tevent: Fix a race condition"
   via  6a43b1b tevent: Fix a race condition
   via  df214a3 s4: torture: Add smb2 FIND_and_set_DOC test case.
   via  b3ac865 s3: smbd: Fix delete-on-close after smb2_find
   via  38f0d93 s4: torture: kernel_oplocks. Create a regression test case 
for bug #13058.
   via  32ee9d1 Revert "s3/smbd: fix deferred open with streams and kernel 
oplocks"
   via  003eefb Revert "s3: smbclient: Test we can rename with a name 
containing."
   via  5b414d9 s3:vfs_glusterfs: Fix a double free in vfs_gluster_getwd()
   via  35b1523 s4:pyparam: Fix resource leaks on error
   via  0d04dba s3:passdb: Make sure the salt is fully initialized before 
passing
   via  733aa17 s3:secrets: Do not leak memory of pw and old_pw
   via  781e5a6 ctdb-tests: Process-exists unit tests should wait until PID 
is registered
   via  5038300 ctdb-tests: Wait for fake_ctdbd to start, fail if it doesn't
   via  2340354 ctdb-tests: Skip starting fake_ctdbd when current node is 
disconnected
   via  b1f422e ctdb-tests: Wait for ctdb_eventd to start, fail if it 
doesn't
   via  ec36025 ctdb-tests: Allow wait_until() to be used in unit tests
   via  08100fc s3: smbclient: Test we can rename with a name containing.
   via  f01aac9 s3: smbclient: Ensure we call client_clean_name() before 
all operations on remote pathnames.
   via  f36e99e s3: client: Add new utility function client_clean_name().
   via  992d7dc vfs_glusterfs: Fix exporting subdirs with shadow_copy2
   via  6ef07b5 vfs_fruit: Replace closedir() by SMB_VFS_CLOSEDIR
   via  c1d6a04 VERSION: Bump version up to 4.6.10...
  from  b77f419 VERSION: Disable GIT_SNAPSHOTS for the 4.6.9 release.

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-6-stable


- Log -
---

Summary of changes:
 VERSION|   2 +-
 WHATSNEW.txt   |  75 -
 ctdb/tests/eventd/scripts/local.sh |   7 +-
 ctdb/tests/scripts/common.sh   |  44 +++
 ctdb/tests/scripts/integration.bash|  44 ---
 ctdb/tests/tool/ctdb.getcapabilities.003.sh|  13 +-
 ctdb/tests/tool/ctdb.lvs.008.sh|  13 +-
 ctdb/tests/tool/ctdb.process-exists.001.sh |   2 +
 ctdb/tests/tool/scripts/local.sh   |   6 +-
 .../ABI/{tevent-0.9.31.sigs => tevent-0.9.32.sigs} |   0
 .../ABI/{tevent-0.9.31.sigs => tevent-0.9.33.sigs} |   0
 .../ABI/{tevent-0.9.31.sigs => tevent-0.9.34.sigs} |   0
 lib/tevent/testsuite.c |   8 +
 lib/tevent/tevent.c|  78 ++---
 lib/tevent/tevent.h|   2 +-
 lib/tevent/tevent_internal.h   |   1 -
 lib/tevent/tevent_req.c|  11 +-
 lib/tevent/tevent_select.c | 280 
 lib/tevent/tevent_threads.c 

[SCM] Samba Website Repository - branch master updated

2017-11-15 Thread Karolin Seeger
The branch, master has been updated
   via  2d46ea3 Add Samba 4.6.10 to the list.
   via  890fdb5 NEWS[4.6.10]: Samba 4.6.10 Available for Download
  from  0a36385 Add Samba 4.7.2 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 2d46ea316eb65e8afc23fd19c20008731e3c5933
Author: Karolin Seeger <ksee...@samba.org>
Date:   Wed Nov 15 09:56:58 2017 +0100

Add Samba 4.6.10 to the list.

Signed-off-by: Karolin Seeger <ksee...@samba.org>

commit 890fdb58dc17c04e0b8a2c703c50eb79312deb5b
Author: Karolin Seeger <ksee...@samba.org>
Date:   Wed Nov 15 09:55:07 2017 +0100

NEWS[4.6.10]: Samba 4.6.10 Available for Download

Signed-off-by: Karolin Seeger <ksee...@samba.org>

---

Summary of changes:
 history/header_history.html  |  1 +
 history/samba-4.6.10.html| 70 ++++
 posted_news/20171115-085631.4.6.10.body.html | 13 +++++
 posted_news/20171115-085631.4.6.10.headline.html |  3 +
 4 files changed, 87 insertions(+)
 create mode 100644 history/samba-4.6.10.html
 create mode 100644 posted_news/20171115-085631.4.6.10.body.html
 create mode 100644 posted_news/20171115-085631.4.6.10.headline.html


Changeset truncated at 500 lines:

diff --git a/history/header_history.html b/history/header_history.html
index b1a3d02..10a2a78 100755
--- a/history/header_history.html
+++ b/history/header_history.html
@@ -12,6 +12,7 @@
samba-4.7.2
samba-4.7.1
samba-4.7.0
+   samba-4.6.10
samba-4.6.9
samba-4.6.8
samba-4.6.7
diff --git a/history/samba-4.6.10.html b/history/samba-4.6.10.html
new file mode 100644
index 000..3e73403
--- /dev/null
+++ b/history/samba-4.6.10.html
@@ -0,0 +1,70 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+Samba 4.6.10 - Release Notes
+
+
+Samba 4.6.10 Available for Download
+
+https://download.samba.org/pub/samba/stable/samba-4.6.10.tar.gz;>Samba 
4.6.10 (gzipped)
+https://download.samba.org/pub/samba/stable/samba-4.6.10.tar.asc;>Signature
+
+
+https://download.samba.org/pub/samba/patches/samba-4.6.9-4.6.10.diffs.gz;>Patch
 (gzipped) against Samba 4.6.9
+https://download.samba.org/pub/samba/patches/samba-4.6.9-4.6.10.diffs.asc;>Signature
+
+
+
+   ==
+   Release Notes for Samba 4.6.10
+  November 15, 2017
+   =
+
+
+This is an additional bugfix release to address a possible data corruption
+issue. Please update immediately! For details, please see
+
+  https://bugzilla.samba.org/show_bug.cgi?id=13130
+
+Samba 4.6.0 and newer is affected by this issue.
+
+
+Changes since 4.6.9:
+
+
+o  Michael Adam ob...@samba.org
+   * BUG 13091: vfs_glusterfs: Fix exporting subdirs with shadow_copy2.
+
+o  Jeremy Allison j...@samba.org
+   * BUG 13093: s3: smbclient: Ensure we call client_clean_name() before all
+ operations on remote pathnames.
+   * BUG 13121: Non-smbd processes using kernel oplocks can hang smbd.
+
+o  Joe Guo j...@catalyst.net.nz
+   * BUG 13127: python: use communicate to fix Popen deadlock.
+
+o  Volker Lendecke v...@samba.org
+   * BUG 13130: smbd on disk file corruption bug under heavy threaded load.
+
+o  Stefan Metzmacher me...@samba.org
+   * BUG 13130: tevent: version 0.9.34.
+
+o  Anoop C S anoo...@redhat.com
+   * BUG 13086: vfs_fruit: Replace closedir() by SMB_VFS_CLOSEDIR.
+
+o  Christof Schmitt c...@samba.org
+   * BUG 13047: smbd: Move check for SMB2 compound request to new function.
+
+o  Andreas Schneider a...@samba.org
+   * BUG 13100: s3:vfs_glusterfs: Fix a double free in vfs_gluster_getwd().
+   * BUG 13101: s4:pyparam: Fix resource leaks on error.
+
+o  Ralph Wuerthner ralph.wuerth...@de.ibm.com
+   * BUG 13118: s3: smbd: Fix delete-on-close after smb2_find.
+
+
+
+
+
+
diff --git a/posted_news/20171115-085631.4.6.10.body.html 
b/posted_news/20171115-085631.4.6.10.body.html
new file mode 100644
index 000..8ba4c78
--- /dev/null
+++ b/posted_news/20171115-085631.4.6.10.body.html
@@ -0,0 +1,13 @@
+
+15 November 2017
+Samba 4.6.10 Available for Download
+
+This is the latest stable release of the Samba 4.6 release series.
+
+
+The uncompressed tarball has been signed using GnuPG (ID 6F33915B6568B7EA).
+The source code can be https://download.samba.org/pub/samba/stable/samba-4.6.10.tar.gz;>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.6.9-4.6.10.diffs.gz;>patch
 against Samba 4.6.9 is also available.
+See https://www.samba.org/samba/history/samba-4.6.10.html;>the 
release notes f

[SCM] Samba Shared Repository - branch v4-7-stable updated

2017-11-15 Thread Karolin Seeger
The branch, v4-7-stable has been updated
   via  c5bb8ef VERSION: Disable GIT_SNAPSHOT for the 4.7.2 release.
   via  53b7208 WHATSNEW: Add release notes for Samba 4.7.2.
   via  d7a0721 s4: torture: kernel oplocks. Add 
smb2.kernel-oplocks.kernel_oplocks8
   via  6e276ca s3: smbd: kernel oplocks. Replace retry_open() with 
setup_kernel_oplock_poll_open().
   via  510b11d python: use communicate to fix Popen deadlock
   via  f1fe68f blackbox tests: method to check specific exit codes
   via  e45ab18 tevent: version 0.9.34
   via  cbd lib: tevent: Remove select backend.
   via  5ec68b2 tevent: Fix a race condition
   via  d41af5d s4: torture: Add smb2 FIND_and_set_DOC test case.
   via  007e8fe s3: smbd: Fix delete-on-close after smb2_find
   via  aebe7a4 s4: torture: kernel_oplocks. Create a regression test case 
for bug #13058.
   via  0b0d248 Revert "s3/smbd: fix deferred open with streams and kernel 
oplocks"
   via  2505c6c VERSION: Bump version up to 4.7.2...
  from  b174cb5 VERSION: Disable GIT_SNAPSHOTS for the Samba 4.7.1 release.

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-7-stable


- Log -
---

Summary of changes:
 VERSION|   2 +-
 WHATSNEW.txt   |  60 +++-
 .../ABI/{tevent-0.9.31.sigs => tevent-0.9.34.sigs} |   0
 lib/tevent/tevent.c|   1 -
 lib/tevent/tevent_internal.h   |   1 -
 lib/tevent/tevent_select.c | 280 
 lib/tevent/tevent_threads.c|   6 +-
 lib/tevent/wscript |   4 +-
 python/samba/tests/__init__.py |  25 +-
 source3/selftest/tests.py  |   4 +-
 source3/smbd/dir.c |   4 +-
 source3/smbd/open.c| 201 +---
 source3/torture/torture.c  |  10 +-
 source4/torture/smb2/delete-on-close.c |  66 
 source4/torture/smb2/oplock.c  | 353 +
 15 files changed, 585 insertions(+), 432 deletions(-)
 copy lib/tevent/ABI/{tevent-0.9.31.sigs => tevent-0.9.34.sigs} (100%)
 delete mode 100644 lib/tevent/tevent_select.c


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index c8a4837..2f5c246 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=7
-SAMBA_VERSION_RELEASE=1
+SAMBA_VERSION_RELEASE=2
 
 
 # If a official release has a serious bug  #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 6de5de8..8074a83 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,4 +1,60 @@
=
+   Release Notes for Samba 4.7.2
+ November 15, 2017
+   =
+
+
+This is an additional bugfix release to address a possible data corruption
+issue. Please update immediately! For details, please see
+
+  https://bugzilla.samba.org/show_bug.cgi?id=13130
+
+Samba 4.6.0 and newer is affected by this issue.
+
+
+Changes since 4.7.1:
+
+
+o  Jeremy Allison 
+   * BUG 13121: Non-smbd processes using kernel oplocks can hang smbd.
+
+o  Joe Guo 
+   * BUG 13127: python: use communicate to fix Popen deadlock.
+
+o  Volker Lendecke 
+   * BUG 13130: smbd on disk file corruption bug under heavy threaded load.
+
+o  Stefan Metzmacher 
+   * BUG 13130: tevent: version 0.9.34.
+
+o  Ralph Wuerthner 
+   * BUG 13118: s3: smbd: Fix delete-on-close after smb2_find.
+
+
+###
+Reporting bugs & Development Discussion
+###
+
+Please discuss this release on the samba-technical mailing list or by
+joining the #samba-technical IRC channel on irc.freenode.net.
+
+If you do report problems then please try to send high quality
+feedback. If you don't provide vital information to help us track down
+the problem then you will probably be ignored.  All bug reports should
+be filed under the "Samba 4.1 and newer" product in the project's Bugzilla
+database (https://bugzilla.samba.org/).
+
+
+==
+== Our Code, Our Bugs, Our Responsibility.
+== The Samba Team
+==
+
+
+Release notes for older releases follow:
+
+
+   =

[SCM] Samba Shared Repository - annotated tag samba-4.6.10 created

2017-11-15 Thread Karolin Seeger
The annotated tag, samba-4.6.10 has been created
at  f0594262e956602197e56460f96453ffdfe1c075 (tag)
   tagging  a56f9ed4b49ee799d18850def51d40ab789569ce (commit)
  replaces  samba-4.6.9
 tagged by  Karolin Seeger
on  Wed Nov 15 09:54:45 2017 +0100

- Log -
samba: tag release samba-4.6.10
-BEGIN PGP SIGNATURE-

iEYEABECAAYFAloMANUACgkQbzORW2Vot+rfwACgrqovn/H344Md+fY+O9jcMYmN
RQIAn2GMZdNdZeyh4mx8BwkWw2cHEtwg
=eCRe
-END PGP SIGNATURE-

Andreas Schneider (4):
  s3:secrets: Do not leak memory of pw and old_pw
  s3:passdb: Make sure the salt is fully initialized before passing
  s4:pyparam: Fix resource leaks on error
  s3:vfs_glusterfs: Fix a double free in vfs_gluster_getwd()

Anoop C S (1):
  vfs_fruit: Replace closedir() by SMB_VFS_CLOSEDIR

Christof Schmitt (4):
  smbd: Move check for SMB2 compound request to new function
  smbd/aio: Do not go async for SMB2 compound requests
  torture: Add testcase for compound CREATE-WRITE-CLOSE request
  selftest: Also run smbtorture smb2.compound with aio enabled

Gary Lockyer (1):
  blackbox tests: method to check specific exit codes

Jeremy Allison (8):
  s3: client: Add new utility function client_clean_name().
  s3: smbclient: Ensure we call client_clean_name() before all operations 
on remote pathnames.
  s3: smbclient: Test we can rename with a name containing.
  Revert "s3/smbd: fix deferred open with streams and kernel oplocks"
  s4: torture: kernel_oplocks. Create a regression test case for bug #13058.
  lib: tevent: Remove select backend.
  s3: smbd: kernel oplocks. Replace retry_open() with 
setup_kernel_oplock_poll_open().
  s4: torture: kernel oplocks. Add smb2.kernel-oplocks.kernel_oplocks8

Joe Guo (1):
  python: use communicate to fix Popen deadlock

Karolin Seeger (4):
  VERSION: Bump version up to 4.6.10...
  Revert "s3: smbclient: Test we can rename with a name containing."
  WHATSNEW: Add release notes for Samba 4.6.10.
  VERSION: Disable GIT_SNAPSHOT for the 4.6.10 release.

Martin Schwenke (5):
  ctdb-tests: Allow wait_until() to be used in unit tests
  ctdb-tests: Wait for ctdb_eventd to start, fail if it doesn't
  ctdb-tests: Skip starting fake_ctdbd when current node is disconnected
  ctdb-tests: Wait for fake_ctdbd to start, fail if it doesn't
  ctdb-tests: Process-exists unit tests should wait until PID is registered

Michael Adam (1):
  vfs_glusterfs: Fix exporting subdirs with shadow_copy2

Ralph Wuerthner (2):
  s3: smbd: Fix delete-on-close after smb2_find
  s4: torture: Add smb2 FIND_and_set_DOC test case.

Stefan Metzmacher (7):
  Revert "tevent: Fix a race condition"
  tevent: include the finish location in tevent_req_default_print()
  tevent: version 0.9.32
  tevent: avoid calling talloc_get_name(NULL) in tevent_req_default_print()
  tevent: handle passing req = NULL to tevent_req_print()
  tevent: version 0.9.33
  tevent: version 0.9.34

Volker Lendecke (10):
  tevent: Fix a race condition
  tevent: Fix a typo
  tevent: Factor out context initialization
  tevent: Re-init threading in tevent_re_initialise
  tevent: Add tevent_re_initialise to threaded test
  tevent: Fix a memleak on FreeBSD
  tevent: Fix a race condition in tevent context rundown
  tevent_threads: Fix a rundown race introduced with 1828011317b
  tevent: Simplify create_immediate
  tevent: Fix a race condition

---


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch v4-6-test updated

2017-11-15 Thread Karolin Seeger
The branch, v4-6-test has been updated
   via  b196d0e VERSION: Bump version up to 4.6.11...
   via  a56f9ed VERSION: Disable GIT_SNAPSHOT for the 4.6.10 release.
   via  ee75be8 WHATSNEW: Add release notes for Samba 4.6.10.
  from  c5d7a7d s4: torture: kernel oplocks. Add 
smb2.kernel-oplocks.kernel_oplocks8

https://git.samba.org/?p=samba.git;a=shortlog;h=v4-6-test


- Log -
commit b196d0efcfaad6ea42ed0873b430ff3d416dd731
Author: Karolin Seeger 
Date:   Tue Nov 14 13:01:58 2017 +0100

VERSION: Bump version up to 4.6.11...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Karolin Seeger 

commit a56f9ed4b49ee799d18850def51d40ab789569ce
Author: Karolin Seeger 
Date:   Tue Nov 14 13:00:55 2017 +0100

VERSION: Disable GIT_SNAPSHOT for the 4.6.10 release.

Signed-off-by: Karolin Seeger 

commit ee75be8e204645d52097faa75146cde7813900c1
Author: Karolin Seeger 
Date:   Tue Nov 14 13:00:24 2017 +0100

WHATSNEW: Add release notes for Samba 4.6.10.

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 VERSION  |  4 ++--
 WHATSNEW.txt | 75 ++--
 2 files changed, 75 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index cd8c6ca..c0e85a2 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=6
-SAMBA_VERSION_RELEASE=10
+SAMBA_VERSION_RELEASE=11
 
 
 # If a official release has a serious bug  #
@@ -99,7 +99,7 @@ SAMBA_VERSION_RC_RELEASE=
 # e.g. SAMBA_VERSION_IS_SVN_SNAPSHOT=yes   #
 #  ->  "3.0.0-SVN-build-199"   #
 
-SAMBA_VERSION_IS_GIT_SNAPSHOT=yes
+SAMBA_VERSION_IS_GIT_SNAPSHOT=no
 
 
 # This is for specifying a release nickname#
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 65c1137..375d340 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,3 +1,74 @@
+   ==
+   Release Notes for Samba 4.6.10
+  November 15, 2017
+   =
+
+
+This is an additional bugfix release to address a possible data corruption
+issue. Please update immediately! For details, please see
+
+  https://bugzilla.samba.org/show_bug.cgi?id=13130
+
+Samba 4.6.0 and newer is affected by this issue.
+
+
+Changes since 4.6.9:
+
+
+o  Michael Adam 
+   * BUG 13091: vfs_glusterfs: Fix exporting subdirs with shadow_copy2.
+
+o  Jeremy Allison 
+   * BUG 13093: s3: smbclient: Ensure we call client_clean_name() before all
+ operations on remote pathnames.
+   * BUG 13121: Non-smbd processes using kernel oplocks can hang smbd.
+
+o  Joe Guo 
+   * BUG 13127: python: use communicate to fix Popen deadlock.
+
+o  Volker Lendecke 
+   * BUG 13130: smbd on disk file corruption bug under heavy threaded load.
+
+o  Stefan Metzmacher 
+   * BUG 13130: tevent: version 0.9.34.
+
+o  Anoop C S 
+   * BUG 13086: vfs_fruit: Replace closedir() by SMB_VFS_CLOSEDIR.
+
+o  Christof Schmitt 
+   * BUG 13047: smbd: Move check for SMB2 compound request to new function.
+
+o  Andreas Schneider 
+   * BUG 13100: s3:vfs_glusterfs: Fix a double free in vfs_gluster_getwd().
+   * BUG 13101: s4:pyparam: Fix resource leaks on error.
+
+o  Ralph Wuerthner 
+   * BUG 13118: s3: smbd: Fix delete-on-close after smb2_find.
+
+
+###
+Reporting bugs & Development Discussion
+###
+
+Please discuss this release on the samba-technical mailing list or by
+joining the #samba-technical IRC channel on irc.freenode.net.
+
+If you do report problems then please try to send high quality
+feedback. If you don't provide vital information to help us track down
+the problem then you will probably be ignored.  All bug reports should
+be filed under the "Samba 4.1 and newer" product in the project's Bugzilla
+database (https://bugzilla.samba.org/).
+
+
+==
+== Our Code, Our Bugs, Our Responsibility.
+== The Samba Team
+==
+
+
+Release notes for older releases follow:
+
+
=
  

[SCM] Samba Website Repository - branch master updated

2017-11-15 Thread Karolin Seeger
The branch, master has been updated
   via  0a36385 Add Samba 4.7.2 to the list.
   via  4aab506 NEWS[4.7.2]: Samba 4.7.2 Available for Download
  from  cfc5b56 Add Samba 4.7.1 to the list.

https://git.samba.org/?p=samba-web.git;a=shortlog;h=master


- Log -
commit 0a36385f863f2cf5f0668f216d66a3668773c5dc
Author: Karolin Seeger <ksee...@samba.org>
Date:   Wed Nov 15 09:32:17 2017 +0100

Add Samba 4.7.2 to the list.

Signed-off-by: Karolin Seeger <ksee...@samba.org>

commit 4aab506c7049a536dcf2330e25710e0db0db8270
Author: Karolin Seeger <ksee...@samba.org>
Date:   Wed Nov 15 09:23:21 2017 +0100

NEWS[4.7.2]: Samba 4.7.2 Available for Download

Signed-off-by: Karolin Seeger <ksee...@samba.org>

---

Summary of changes:
 history/header_history.html |  1 +
 history/samba-4.7.2.html| 55 +++++
 posted_news/20171115-083150.4.7.2.body.html | 13 ++
 posted_news/20171115-083150.4.7.2.headline.html |  3 ++
 4 files changed, 72 insertions(+)
 create mode 100644 history/samba-4.7.2.html
 create mode 100644 posted_news/20171115-083150.4.7.2.body.html
 create mode 100644 posted_news/20171115-083150.4.7.2.headline.html


Changeset truncated at 500 lines:

diff --git a/history/header_history.html b/history/header_history.html
index b73b6ac..b1a3d02 100755
--- a/history/header_history.html
+++ b/history/header_history.html
@@ -9,6 +9,7 @@
Release Notes


+   samba-4.7.2
samba-4.7.1
samba-4.7.0
samba-4.6.9
diff --git a/history/samba-4.7.2.html b/history/samba-4.7.2.html
new file mode 100644
index 000..660f436
--- /dev/null
+++ b/history/samba-4.7.2.html
@@ -0,0 +1,55 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;>
+http://www.w3.org/1999/xhtml;>
+
+Samba 4.7.2 - Release Notes
+
+
+Samba 4.7.2 Available for Download
+
+https://download.samba.org/pub/samba/stable/samba-4.7.2.tar.gz;>Samba 
4.7.2 (gzipped)
+https://download.samba.org/pub/samba/stable/samba-4.7.2.tar.asc;>Signature
+
+
+https://download.samba.org/pub/samba/patches/samba-4.7.1-4.7.2.diffs.gz;>Patch
 (gzipped) against Samba 4.7.1
+https://download.samba.org/pub/samba/patches/samba-4.7.1-4.7.2.diffs.asc;>Signature
+
+
+
+   =
+   Release Notes for Samba 4.7.2
+ November 15, 2017
+   =
+
+
+This is an additional bugfix release to address a possible data corruption
+issue. Please update immediately! For details, please see
+
+  https://bugzilla.samba.org/show_bug.cgi?id=13130
+
+Samba 4.6.0 and newer is affected by this issue.
+
+
+Changes since 4.7.1:
+
+
+o  Jeremy Allison j...@samba.org
+   * BUG 13121: Non-smbd processes using kernel oplocks can hang smbd.
+
+o  Joe Guo j...@catalyst.net.nz
+   * BUG 13127: python: use communicate to fix Popen deadlock.
+
+o  Volker Lendecke v...@samba.org
+   * BUG 13130: smbd on disk file corruption bug under heavy threaded load.
+
+o  Stefan Metzmacher me...@samba.org
+   * BUG 13130: tevent: version 0.9.34.
+
+o  Ralph Wuerthner ralph.wuerth...@de.ibm.com
+   * BUG 13118: s3: smbd: Fix delete-on-close after smb2_find.
+
+
+
+
+
+
diff --git a/posted_news/20171115-083150.4.7.2.body.html 
b/posted_news/20171115-083150.4.7.2.body.html
new file mode 100644
index 000..f903e5b
--- /dev/null
+++ b/posted_news/20171115-083150.4.7.2.body.html
@@ -0,0 +1,13 @@
+
+15 November 2017
+Samba 4.7.2 Available for Download
+
+This is the latest stable release of the Samba 4.7 release series.
+
+
+The uncompressed tarball has been signed using GnuPG (ID 6F33915B6568B7EA).
+The source code can be https://download.samba.org/pub/samba/stable/samba-4.7.2.tar.gz;>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.7.1-4.7.2.diffs.gz;>patch
 against Samba 4.7.1 is also available.
+See https://www.samba.org/samba/history/samba-4.7.2.html;>the release 
notes for more info.
+
+
diff --git a/posted_news/20171115-083150.4.7.2.headline.html 
b/posted_news/20171115-083150.4.7.2.headline.html
new file mode 100644
index 000..fb60592
--- /dev/null
+++ b/posted_news/20171115-083150.4.7.2.headline.html
@@ -0,0 +1,3 @@
+
+ 15 November 2017 Samba 4.7.2 Available for 
Download
+


-- 
Samba Website Repository



[SCM] Samba Shared Repository - annotated tag samba-4.7.2 created

2017-11-15 Thread Karolin Seeger
The annotated tag, samba-4.7.2 has been created
at  61a7662b78af076cd9f31b1bac084354a602f7d2 (tag)
   tagging  c5bb8ef9e793bb7cd82f8d53786f2c5daa431470 (commit)
  replaces  samba-4.7.1
 tagged by  Karolin Seeger
on  Wed Nov 15 09:22:59 2017 +0100

- Log -
samba: tag release samba-4.7.2
-BEGIN PGP SIGNATURE-

iEYEABECAAYFAloL+WQACgkQbzORW2Vot+o10ACeKPyBCHE3VmjOKzzDIHtTzGga
n6gAnRB4QC2uTzPS36tFvybKZud+zqtP
=6gop
-END PGP SIGNATURE-

Gary Lockyer (1):
  blackbox tests: method to check specific exit codes

Jeremy Allison (5):
  Revert "s3/smbd: fix deferred open with streams and kernel oplocks"
  s4: torture: kernel_oplocks. Create a regression test case for bug #13058.
  lib: tevent: Remove select backend.
  s3: smbd: kernel oplocks. Replace retry_open() with 
setup_kernel_oplock_poll_open().
  s4: torture: kernel oplocks. Add smb2.kernel-oplocks.kernel_oplocks8

Joe Guo (1):
  python: use communicate to fix Popen deadlock

Karolin Seeger (3):
  VERSION: Bump version up to 4.7.2...
  WHATSNEW: Add release notes for Samba 4.7.2.
  VERSION: Disable GIT_SNAPSHOT for the 4.7.2 release.

Ralph Wuerthner (2):
  s3: smbd: Fix delete-on-close after smb2_find
  s4: torture: Add smb2 FIND_and_set_DOC test case.

Stefan Metzmacher (1):
  tevent: version 0.9.34

Volker Lendecke (1):
  tevent: Fix a race condition

---


-- 
Samba Shared Repository