[SCM] Samba Shared Repository - branch master updated

2021-09-07 Thread Volker Lendecke
The branch, master has been updated
   via  91c024dfd8e s3: auth: Andrew noticed 
f585f01148ab2d8f84c96b12e018742f5f17bcb0 doesn't keep the same logic.
  from  2b86cff4a4d lib/replace: drop runtime copy_file_range() check

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


- Log -
commit 91c024dfd8ecf909f23ab8ee3816ae6a4c9b881c
Author: Jeremy Allison 
Date:   Tue Sep 7 17:39:38 2021 -0700

s3: auth: Andrew noticed f585f01148ab2d8f84c96b12e018742f5f17bcb0 doesn't 
keep the same logic.

This should make it identical.

Signed-off-by: Jeremy Allison 
Reviewed-by: Volker Lendecke 

Autobuild-User(master): Volker Lendecke 
Autobuild-Date(master): Wed Sep  8 06:38:21 UTC 2021 on sn-devel-184

---

Summary of changes:
 source3/auth/server_info_sam.c | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/server_info_sam.c b/source3/auth/server_info_sam.c
index b9c8b0a0959..71a52f812a5 100644
--- a/source3/auth/server_info_sam.c
+++ b/source3/auth/server_info_sam.c
@@ -39,11 +39,16 @@ static bool is_our_machine_account(const char *username)
 {
bool ret;
size_t ulen = strlen(username);
+   const char *nb_name = lp_netbios_name();
+   size_t nb_namelen = strlen(nb_name);
 
if (ulen == 0 || username[ulen-1] != '$') {
return false;
}
-   ret = strnequal(username, lp_netbios_name(), ulen-1);
+   if (nb_namelen != ulen-1) {
+   return false;
+   }
+   ret = strnequal(username, nb_name, ulen-1);
return ret;
 }
 


-- 
Samba Shared Repository



[SCM] Samba Shared Repository - branch master updated

2021-09-07 Thread Jeremy Allison
The branch, master has been updated
   via  2b86cff4a4d lib/replace: drop runtime copy_file_range() check
   via  3347bfce9ee samba_dnsupdate: Fix deprecation warnings
   via  6ebed6b505a samba-tool: Fix a typo
   via  ba237d9403c auth: Fix a typo
   via  f585f01148a auth: Simplify is_our_machine_account()
   via  44566f59d8f rpc_server3: Include the right "dcerpc.h" from a 
SAMBA_SUBSYSTEM
  from  28686f87139 s4/samba: POPT_COMMON_DAEMON

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


- Log -
commit 2b86cff4a4df81e37ca9a4d95b8b928b0a912633
Author: Ralph Boehme 
Date:   Sun Sep 5 15:09:12 2021 +0200

lib/replace: drop runtime copy_file_range() check

This reverts commit 4354823c5146753ef8a3791bc8562379096659b8
"libreplace: properly execute SYS_copy_file_range check".

We now use a runtime check in the user of copy_file_range().

Signed-off-by: Ralph Boehme 
Reviewed-by: Andrew Bartlett 

Autobuild-User(master): Jeremy Allison 
Autobuild-Date(master): Tue Sep  7 19:24:57 UTC 2021 on sn-devel-184

commit 3347bfce9ee8b20c09dec2c0c5eb69b0c4bdb743
Author: Volker Lendecke 
Date:   Tue Sep 7 15:04:16 2021 +0200

samba_dnsupdate: Fix deprecation warnings

We should not call samba-tool with -k anymore

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit 6ebed6b505aebb58726322b7c4e7f736e02773ce
Author: Volker Lendecke 
Date:   Tue Sep 7 14:25:34 2021 +0200

samba-tool: Fix a typo

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit ba237d9403cf45bf71e5d943b92c15e9c494fb0f
Author: Volker Lendecke 
Date:   Sun Sep 5 09:13:25 2021 +0200

auth: Fix a typo

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit f585f01148ab2d8f84c96b12e018742f5f17bcb0
Author: Volker Lendecke 
Date:   Sun Sep 5 08:59:13 2021 +0200

auth: Simplify is_our_machine_account()

Use strnequal instead of duplicating a string

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

commit 44566f59d8f8fa2ba5dd1239d4a3265bcdc44297
Author: Volker Lendecke 
Date:   Thu Jan 28 10:56:51 2021 +0100

rpc_server3: Include the right "dcerpc.h" from a SAMBA_SUBSYSTEM

Signed-off-by: Volker Lendecke 
Reviewed-by: Jeremy Allison 

---

Summary of changes:
 lib/replace/wscript   | 26 ++
 python/samba/netcmd/dns.py|  2 +-
 source3/auth/auth_unix.c  |  2 +-
 source3/auth/server_info_sam.c|  9 +
 source3/rpc_server/rpc_pipes.h|  2 +-
 source4/scripting/bin/samba_dnsupdate |  4 ++--
 6 files changed, 8 insertions(+), 37 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/wscript b/lib/replace/wscript
index a734d478582..8c69a0c2c39 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -456,32 +456,10 @@ def configure(conf):
 conf.CHECK_FUNCS('getprogname')
 if not conf.CHECK_FUNCS('copy_file_range'):
 conf.CHECK_CODE('''
-int src_fd = -1, dst_fd = -1, ret;
-ssize_t written;
-char src[]="/tmp/test.XX";
-char dst[]="/tmp/test.XX";
-src_fd = mkstemp(src);
-if (src_fd == -1) {ret = 1; goto cleanup;}
-dst_fd = mkstemp(dst);
-if (dst_fd == -1) {ret = 2; goto cleanup;}
-written = pwrite(src_fd, "x", 1, 0);
-if (written != 1) {ret = 3; goto cleanup;}
-written = 
syscall(SYS_copy_file_range,src_fd,0,dst_fd,0,1,0);
-if (written != 1) {
-printf("SYS_copy_file_range failed: %s", 
strerror(errno));
-ret = 4; goto cleanup;
-}
-ret = 0;
-cleanup:
-if (src_fd != -1) close(src_fd);
-if (dst_fd != -1) close(dst_fd);
-unlink(src);
-unlink(dst);
-return ret;
+syscall(SYS_copy_file_range,0,NULL,0,NULL,0,0);
 ''',
 'HAVE_SYSCALL_COPY_FILE_RANGE',
-headers='errno.h string.h stdio.h sys/syscall.h 
unistd.h sys/types.h sys/stat.h fcntl.h',
-execute=True,
+headers='sys/syscall.h unistd.h',
 msg='Checking whether we have copy_file_range system 
call')
 
 conf.SET_TARGET_TYPE('attr', 'EMPTY')
diff --git a/python/samba/netcmd/dns.py b/python/samba/netcmd/dns.py
index e77a4de8162..c0f27808c46 100644
--- a/python/samba/netcmd/dn

[SCM] Samba Website Repository - branch master updated

2021-09-07 Thread Karolin Seeger
The branch, master has been updated
   via  2896b86 support/globalsupport.html: Order SerNet colleagues by name.
  from  c5678e5 support/globalsupport.html: Add Jule, Samba's new release 
manager.

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


- Log -
commit 2896b861db677af997ac3218981d859ebf399f96
Author: Karolin Seeger 
Date:   Tue Sep 7 13:34:59 2021 +0200

support/globalsupport.html: Order SerNet colleagues by name.

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 support/globalsupport.html | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)


Changeset truncated at 500 lines:

diff --git a/support/globalsupport.html b/support/globalsupport.html
index a1d0105..aa4982f 100644
--- a/support/globalsupport.html
+++ b/support/globalsupport.html
@@ -79,18 +79,18 @@ Members of the core http://samba.TEAM"; 
target=_blank>samba.TEAM wor
 
 mailto:j...@samba.org>Jule Anger works as release manager for the 
Samba team.
 
-mailto:v...@samba.org>Volker Lendecke, one of the first Samba Team 
members, is one of the founders of SerNet.
-
-mailto:me...@samba.org>Stefan Metzmacher works on ActiveDirectory 
and security, he is one of the main Samba 4 authors.
+mailto:b...@samba.org>Björn Baumbach is maintainer of SAMBA+ 
and
+fixes numerous Samba bugs.
 
 mailto:r...@samba.org>Ralph Böhme is maintainer of Netatalk 
and implements its features to Samba.
 
-mailto:k...@samba.org>Karolin Seeger is member of the Samba 
Project Leadership committee.
-
 mailto:b...@samba.org>Björn Jacke is Samba expert since 
almost ever and integrated Samba in networks of all sizes.
 
-mailto:b...@samba.org>Björn Baumbach is maintainer of SAMBA+ 
and
-fixes numerous Samba bugs.
+mailto:v...@samba.org>Volker Lendecke, one of the first Samba Team 
members, is one of the founders of SerNet.
+
+mailto:me...@samba.org>Stefan Metzmacher works on ActiveDirectory 
and security, he is one of the main Samba 4 authors.
+
+mailto:k...@samba.org>Karolin Seeger is member of the Samba 
Project Leadership committee.
 
 
 Links: 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-09-07 Thread Karolin Seeger
The branch, master has been updated
   via  c5678e5 support/globalsupport.html: Add Jule, Samba's new release 
manager.
  from  2cc1a93 NEWS[4.15.0rc5]: Samba 4.15.0rc5 Available for Download

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


- Log -
commit c5678e52c5cbe36e3d8ec9cddb5e17e13043fb56
Author: Karolin Seeger 
Date:   Tue Sep 7 13:17:15 2021 +0200

support/globalsupport.html: Add Jule, Samba's new release manager.

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 support/globalsupport.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/support/globalsupport.html b/support/globalsupport.html
index 7f9ba65..a1d0105 100644
--- a/support/globalsupport.html
+++ b/support/globalsupport.html
@@ -77,13 +77,15 @@ SerNet also organizes the annual http://www.sambaXP.org/";>sambaXP,
 
 Members of the core http://samba.TEAM"; target=_blank>samba.TEAM 
work with SerNet:
 
+mailto:j...@samba.org>Jule Anger works as release manager for the 
Samba team.
+
 mailto:v...@samba.org>Volker Lendecke, one of the first Samba Team 
members, is one of the founders of SerNet.
 
 mailto:me...@samba.org>Stefan Metzmacher works on ActiveDirectory 
and security, he is one of the main Samba 4 authors.
 
 mailto:r...@samba.org>Ralph Böhme is maintainer of Netatalk 
and implements its features to Samba.
 
-mailto:k...@samba.org>Karolin Seeger works as release manager for 
Samba team.
+mailto:k...@samba.org>Karolin Seeger is member of the Samba 
Project Leadership committee.
 
 mailto:b...@samba.org>Björn Jacke is Samba expert since 
almost ever and integrated Samba in networks of all sizes.
 


-- 
Samba Website Repository



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

2021-09-07 Thread Jule Anger
The branch, v4-14-test has been updated
   via  b5cbbf0542c s3: smbd: Fix openat_pathref_fsp() to cope with FIFO's 
in the filesystem.
   via  1bb8ed2b619 s3: smbd: Add fifo test for the DISABLE_OPATH case.
   via  97dc8c0dccc s3: smbd: In create_conn_struct_cwd(), don't 
TALLOC_FREE() an unallocated pointer on error.
   via  b00fed3b698 s3: mdssvc: Correctly disconnect the VFS connection 
inside the mds_ctx destructor.
   via  446f89510f2 winbind: ensure wb_parent_idmap_setup_send() gets 
called in winbindd_allocate_uid_send()
   via  7d1dd87a653 winbindd: call wb_parent_idmap_setup_send() in 
wb_queryuser_send()
   via  274236ff3db vfs_gpfs: add sys_proc_fd_path() fallback to 
vfs_gpfs_fset_dos_attributes()
   via  08f18b66716 vfs_gpfs: remove ENOSYS fallback from 
vfs_gpfs_fset_dos_attributes()
   via  4312b6c17da vfs_gpfs: add path based fallback for 
gpfswrap_fstat_x() on pathref handles
   via  d98e8e0e3f8 vfs_gpfs: check for O_PATH support in gpfswrap_fstat_x()
   via  4a17f42d00b vfs_gpfs: make vfs_gpfs_connect() a no-op on IPC shares
   via  994c64d3098 vfs_gpfs: don't check for struct gpfs_config_data in 
vfs_gpfs_[l]stat()
   via  a4a57724b92 vfs_gpfs: call SMB_VFS_NEXT_CONNECT() before running 
some module initialization code
   via  34c20fe3a16 registry: check for running as root in clustering mode
   via  0e85755f383 s3/lib/dbwrap: check if global_messaging_context() 
succeeded
  from  a7d66e00fa8 s3: smbd: Fix smbd crash on dangling symlink with posix 
connection calling several non-posix info levels.

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


- Log -
commit b5cbbf0542c5f176b8dd07c326430d37e06b3412
Author: Jeremy Allison 
Date:   Thu Sep 2 14:40:53 2021 -0700

s3: smbd: Fix openat_pathref_fsp() to cope with FIFO's in the filesystem.

Remove skip test for the DISABLE_OPATH case.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14816
RN: Fix pathref open of a filesystem fifo in the DISABLE_OPATH build

Signed-off-by: Jeremy Allison 
Reviewed-by: Ralph Boehme 

Autobuild-User(master): Ralph Böhme 
Autobuild-Date(master): Mon Sep  6 09:51:54 UTC 2021 on sn-devel-184

(cherry picked from commit 2f2c53c4f8f59a497bc33a24e5e0fc15ea076876)

Autobuild-User(v4-14-test): Jule Anger 
Autobuild-Date(v4-14-test): Tue Sep  7 10:48:16 UTC 2021 on sn-devel-184

commit 1bb8ed2b6192bfe6343037fafd0d1bf940db9302
Author: Jeremy Allison 
Date:   Thu Sep 2 15:32:27 2021 -0700

s3: smbd: Add fifo test for the DISABLE_OPATH case.

Currently we hang when trying to list a directory
containing a fifo when configured with DISABLE_OPATH.

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

Signed-off-by: Jeremy Allison 
Reviewed-by: Ralph Boehme 
(cherry picked from commit a54d9ffc87ebe602a0e7c48e35643ed2ff1a00bc)

commit 97dc8c0dcccbcecd3a8f8f3872b47d3a3c6e8036
Author: Jeremy Allison 
Date:   Mon Aug 23 17:42:40 2021 -0700

s3: smbd: In create_conn_struct_cwd(), don't TALLOC_FREE() an unallocated 
pointer on error.

Just return the status - if create_conn_struct_as_root() fails
the connection struct never gets returned.

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

Signed-off-by: Jeremy Allison 
Reviewed-by: Ralph Boehme 

Autobuild-User(master): Ralph Böhme 
Autobuild-Date(master): Wed Aug 25 17:09:23 UTC 2021 on sn-devel-184

(cherry picked from commit 857045f3a236dea125200dd09279d677e513682b)

commit b00fed3b698cc78a377d71e0574c878e262c4808
Author: Jeremy Allison 
Date:   Mon Aug 23 17:40:42 2021 -0700

s3: mdssvc: Correctly disconnect the VFS connection inside the mds_ctx 
destructor.

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

Signed-off-by: Jeremy Allison 
Reviewed-by: Ralph Boehme 
(cherry picked from commit b4d8c62c4e8191e05fd03dd096a0bc989e224ed3)

commit 446f89510f2e55a551e2975a6cbf01c6a023ba0c
Author: Ralph Boehme 
Date:   Fri Aug 20 15:04:49 2021 +0200

winbind: ensure wb_parent_idmap_setup_send() gets called in 
winbindd_allocate_uid_send()

BUG: https://bugzilla.samba.org/show_bug.cgi?id=14804
RN: winbindd can crash because idmap child state is not fully initialized

Signed-off-by: Ralph Boehme 
Reviewed-by: Volker Lendecke 

Autobuild-User(master): Volker Lendecke 
Autobuild-Date(master): Thu Sep  2 15:20:06 UTC 2021 on sn-devel-184

(cherry picked from commit d0f6d54354b02f5591706814fbd1e4844788fdfa)

commit 7d1dd87a6538f8c7f1e4938b0ff52cbd231fff90
Author: Ralph Boehme 
Date:   Tue Aug 31 17:04:56 2021 +0200

winbindd: call wb_parent_idmap_setup_send() in wb_queryuser_send()

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

Signed-off-by: Ralph Boehme 
Reviewed-by: Volker 

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

2021-09-07 Thread Jule Anger
The branch, v4-15-stable has been updated
   via  cbfc80e7b7d VERSION: Disable GIT_SNAPSHOT for the 4.15.0rc5 release.
   via  da5c0a93a63 WHATSNEW: Add release notes for Samba 4.15.0rc5.
   via  defbbe7127f s4/samba: POPT_COMMON_DAEMON
   via  c65fb0b0a0e winbindd: use POPT_COMMON_DAEMON
   via  3eef217a9da nmbd: use POPT_COMMON_DAEMON
   via  e1be4413c99 smbd: use POPT_COMMON_DAEMON
   via  476ed842726 lib/cmdline: restore pre-4.15 logging behaviour for 
daemons
   via  29c895c6d8a lib/cmdline: add POPT_COMMON_DAEMON daemon popt options
   via  4889512c705 s3: smbd: Fix openat_pathref_fsp() to cope with FIFO's 
in the filesystem.
   via  5ec6be2ae36 s3: smbd: Add fifo test for the DISABLE_OPATH case.
   via  b5b0471caf3 s3:winbind: Do not start if the priviliged socket path 
is too long
   via  915784c099c WHATSNEW: servers are now also logging to stderr at 
startup
   via  6bae027bf57 WHATSNEW: fix a typo
   via  51d64ce925b script/autobuild.py: Restore MIT ADDC tests against 
fl2008*
   via  57b266e23c4 s3: smbd: In create_conn_struct_cwd(), don't 
TALLOC_FREE() an unallocated pointer on error.
   via  2ed234deee3 s3: mdssvc: Correctly disconnect the VFS connection 
inside the mds_ctx destructor.
   via  cf4845f9b35 winbind: ensure wb_parent_idmap_setup_send() gets 
called in winbindd_allocate_uid_send()
   via  591bd2f3405 winbindd: call wb_parent_idmap_setup_send() in 
wb_queryuser_send()
   via  16306431a24 registry: check for running as root in clustering mode
   via  189bb79ac74 s3/lib/dbwrap: check if global_messaging_context() 
succeeded
   via  19485894d4b vfs_gpfs: deal with pathrefs fsps in 
smbd_gpfs_set_times()
   via  a0fe4423b8e lib/gpfswrap: add gpfs_set_times_path() wrapper
   via  85e5508c4d9 vfs_gpfs: remove ENOSYS fallback from vfs_gpfs_fntimes()
   via  f626ffdf6d5 vfs_gpfs: pass fsp to smbd_gpfs_set_times()
   via  3fe4d78f021 vfs_gpfs: deal with pathref fsps in vfs_gpfs_fntimes()
   via  45a63783526 vfs_gpfs: add sys_proc_fd_path() fallback to 
vfs_gpfs_fset_dos_attributes()
   via  e07c7110e55 vfs_gpfs: remove ENOSYS fallback from 
vfs_gpfs_fset_dos_attributes()
   via  ee741bcc44c vfs_gpfs: add path based fallback for 
gpfswrap_fstat_x() on pathref handles
   via  896a92e0382 vfs_gpfs: check for O_PATH support in gpfswrap_fstat_x()
   via  3db79fdfd61 vfs_gpfs: make vfs_gpfs_connect() a no-op on IPC shares
   via  81fa1a65849 vfs_gpfs: don't check for struct gpfs_config_data in 
vfs_gpfs_[l]stat()
   via  f171810b970 vfs_gpfs: call SMB_VFS_NEXT_CONNECT() before running 
some module initialization code
   via  5b80738ec02 smbd: avoid calling creating a pathref in 
smb_set_file_dosmode()
   via  8cc118dacc9 VERSION: Bump version up to 4.15.0rc5...
  from  8a2c51f268b VERSION: Disable GIT_SNAPSHOT for the 4.15.0rc4 release.

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


- Log -
---

Summary of changes:
 VERSION  |   2 +-
 WHATSNEW.txt |  34 +++-
 lib/cmdline/cmdline.c|  80 +
 lib/cmdline/cmdline.h|  29 
 lib/cmdline/cmdline_private.h|   4 +
 lib/cmdline/cmdline_s3.c |  11 +-
 lib/util/gpfswrap.c  |  14 ++
 lib/util/gpfswrap.h  |   1 +
 script/autobuild.py  |   4 +-
 source3/lib/dbwrap/dbwrap_open.c |   4 +
 source3/modules/vfs_gpfs.c   | 268 ++-
 source3/nmbd/nmbd.c  | 103 +++-
 source3/registry/reg_backend_db.c|   9 ++
 source3/rpc_server/mdssvc/mdssvc.c   |   5 +
 source3/script/tests/test_fifo.sh|  83 ++
 source3/selftest/tests.py|   3 +
 source3/smbd/files.c |   4 +
 source3/smbd/msdfs.c |   7 +-
 source3/smbd/server.c| 112 -
 source3/smbd/trans2.c|  67 
 source3/winbindd/wb_queryuser.c  |  30 +++-
 source3/winbindd/winbindd.c  | 116 ++---
 source3/winbindd/winbindd_allocate_uid.c |  44 -
 source4/samba/server.c   |  88 +++---
 24 files changed, 728 insertions(+), 394 deletions(-)
 create mode 100755 source3/script/tests/test_fifo.sh


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index b185563e6ae..9dc372ed3ca 100644
--- a/VERSION
+++ b/VERSION
@@ -87,7 +87,7 @@ SAMBA_VERSION_PRE_RELEASE=
 # e.g. SAMBA_VERSION_RC_RELEASE=1  #
 #  ->  "3.0.0rc1"  #
 
-SAMBA_VERSION_RC_RELEASE=4
+SAMBA_VERSION_RC_RELEAS

[SCM] Samba Website Repository - branch master updated

2021-09-07 Thread Jule Anger
The branch, master has been updated
   via  2cc1a93 NEWS[4.15.0rc5]: Samba 4.15.0rc5 Available for Download
  from  cf7aa9d Add Samba 4.13.11.

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


- Log -
commit 2cc1a9369f16914c3a5273a62bf65edb88687d66
Author: Jule Anger 
Date:   Tue Sep 7 10:36:59 2021 +0200

NEWS[4.15.0rc5]: Samba 4.15.0rc5 Available for Download

Signed-off-by: Jule Anger 

---

Summary of changes:
 posted_news/20210907-083836.4.15.0rc5.body.html | 12 
 posted_news/20210907-083836.4.15.0rc5.headline.html |  3 +++
 2 files changed, 15 insertions(+)
 create mode 100644 posted_news/20210907-083836.4.15.0rc5.body.html
 create mode 100644 posted_news/20210907-083836.4.15.0rc5.headline.html


Changeset truncated at 500 lines:

diff --git a/posted_news/20210907-083836.4.15.0rc5.body.html 
b/posted_news/20210907-083836.4.15.0rc5.body.html
new file mode 100644
index 000..ab0062a
--- /dev/null
+++ b/posted_news/20210907-083836.4.15.0rc5.body.html
@@ -0,0 +1,12 @@
+
+07 September 2021
+Samba 4.15.0rc5 Available for Download
+
+This is the fifth release candidate of the upcoming Samba 4.15 release series.
+
+
+The uncompressed tarball has been signed using GnuPG (ID AA99442FB680B620).
+The source code can be https://download.samba.org/pub/samba/rc/samba-4.15.0rc5.tar.gz";>downloaded
 now.
+See https://download.samba.org/pub/samba/rc/samba-4.15.0rc5.WHATSNEW.txt";>the 
release notes for more info.
+
+
diff --git a/posted_news/20210907-083836.4.15.0rc5.headline.html 
b/posted_news/20210907-083836.4.15.0rc5.headline.html
new file mode 100644
index 000..89e5ba2
--- /dev/null
+++ b/posted_news/20210907-083836.4.15.0rc5.headline.html
@@ -0,0 +1,3 @@
+
+ 07 September 2021 Samba 4.15.0rc5 Available for 
Download
+


-- 
Samba Website Repository



[SCM] Samba Shared Repository - annotated tag samba-4.15.0rc5 created

2021-09-07 Thread Jule Anger
The annotated tag, samba-4.15.0rc5 has been created
at  dee382c45cc250213287c943d709a75c985401ee (tag)
   tagging  cbfc80e7b7d7cda4b7a0fcc8d39efad2474f2666 (commit)
  replaces  samba-4.15.0rc4
 tagged by  Jule Anger
on  Tue Sep 7 10:36:42 2021 +0200

- Log -
samba: tag release samba-4.15.0rc5
-BEGIN PGP SIGNATURE-

iQIzBAABCgAdFiEEgfXigyvSVFoYl7cTqplEL7aAtiAFAmE3JJoACgkQqplEL7aA
tiDH5A/+PYkzFHAiEgbDwxk/M4WXZS+Vh/8oTDjgFVAhkwjF7YZP7HnONhC2v6KZ
53o7MLg2Vo1Y6Cyvb3PixNIp5PvNPYnBbF9OWKmY4c8Qr4+ZaYZOkDGWQv07akuX
hCLCmyqw950dsrbuTu9F53N55XEffkNSK8M5KWNtSedRtV7v2HAE4qH/VaJO/IP8
XMoJJ80poEOdWOyHt2cysnj5iXpVpIf8Jo4BaZQwZ0+KkumogmJgMVymK1EH0iT4
8k/2oSb8PYTKe5L37XJJUcncUuquPdSSx//b2dXY0OPQq+A3x+wdwHeuWHJRl0zR
8ZGPkUoNjSOnHxdEjYKXZOk0xplrBb+q+2M6SpZ8AUd/e4ddcfd1ldc6qfH0vWJi
xvZ9fr2p4uIWTIKkRyCJYCbPjeaXo9kOvjLHabf699wrOwEg89LeZo4yLhk660pY
b4UFZ2DvrMyOdOOy3NztgBR0rV7WXESCIE3+mHa/xBm9aas25FAArTfsnH7DGTt5
Z7T0/PcH/WUN9SxI2XhKb/oOzcrSm3HsQB6UsiUG+fuCN0QsJ9HZmKzPi0Kle1bC
AhAyDnyWg++UXrmiHPSzoTmrGrbKtANLphF20PaPvnJk7UIBSzEDoUF4B/QIcQ0/
wxctKU2CZh30qEzEU0u/IOIXyJ/43UJ4J3ywh0fWB0eK60YlrVg=
=ZLoo
-END PGP SIGNATURE-

Andreas Schneider (1):
  s3:winbind: Do not start if the priviliged socket path is too long

Andrew Bartlett (1):
  script/autobuild.py: Restore MIT ADDC tests against fl2008*

Jeremy Allison (4):
  s3: mdssvc: Correctly disconnect the VFS connection inside the mds_ctx 
destructor.
  s3: smbd: In create_conn_struct_cwd(), don't TALLOC_FREE() an unallocated 
pointer on error.
  s3: smbd: Add fifo test for the DISABLE_OPATH case.
  s3: smbd: Fix openat_pathref_fsp() to cope with FIFO's in the filesystem.

Jule Anger (2):
  WHATSNEW: Add release notes for Samba 4.15.0rc5.
  VERSION: Disable GIT_SNAPSHOT for the 4.15.0rc5 release.

Karolin Seeger (1):
  VERSION: Bump version up to 4.15.0rc5...

Ralph Boehme (24):
  smbd: avoid calling creating a pathref in smb_set_file_dosmode()
  vfs_gpfs: call SMB_VFS_NEXT_CONNECT() before running some module 
initialization code
  vfs_gpfs: make vfs_gpfs_connect() a no-op on IPC shares
  vfs_gpfs: check for O_PATH support in gpfswrap_fstat_x()
  vfs_gpfs: add path based fallback for gpfswrap_fstat_x() on pathref 
handles
  vfs_gpfs: remove ENOSYS fallback from vfs_gpfs_fset_dos_attributes()
  vfs_gpfs: add sys_proc_fd_path() fallback to 
vfs_gpfs_fset_dos_attributes()
  vfs_gpfs: deal with pathref fsps in vfs_gpfs_fntimes()
  vfs_gpfs: pass fsp to smbd_gpfs_set_times()
  vfs_gpfs: remove ENOSYS fallback from vfs_gpfs_fntimes()
  lib/gpfswrap: add gpfs_set_times_path() wrapper
  vfs_gpfs: deal with pathrefs fsps in smbd_gpfs_set_times()
  s3/lib/dbwrap: check if global_messaging_context() succeeded
  registry: check for running as root in clustering mode
  winbindd: call wb_parent_idmap_setup_send() in wb_queryuser_send()
  winbind: ensure wb_parent_idmap_setup_send() gets called in 
winbindd_allocate_uid_send()
  WHATSNEW: fix a typo
  WHATSNEW: servers are now also logging to stderr at startup
  lib/cmdline: add POPT_COMMON_DAEMON daemon popt options
  lib/cmdline: restore pre-4.15 logging behaviour for daemons
  smbd: use POPT_COMMON_DAEMON
  nmbd: use POPT_COMMON_DAEMON
  winbindd: use POPT_COMMON_DAEMON
  s4/samba: POPT_COMMON_DAEMON

Stefan Metzmacher (1):
  vfs_gpfs: don't check for struct gpfs_config_data in vfs_gpfs_[l]stat()

---


-- 
Samba Shared Repository



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

2021-09-07 Thread Jule Anger
The branch, v4-15-test has been updated
   via  a0a96f6ebab VERSION: Bump version up to Samba 4.15.0rc6...
   via  cbfc80e7b7d VERSION: Disable GIT_SNAPSHOT for the 4.15.0rc5 release.
   via  da5c0a93a63 WHATSNEW: Add release notes for Samba 4.15.0rc5.
  from  defbbe7127f s4/samba: POPT_COMMON_DAEMON

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


- Log -
commit a0a96f6ebab0746ac2463bb82ca0d6f480521427
Author: Jule Anger 
Date:   Tue Sep 7 10:31:03 2021 +0200

VERSION: Bump version up to Samba 4.15.0rc6...

and re-enable GIT_SNAPSHOT.

Signed-off-by: Jule Anger 

commit cbfc80e7b7d7cda4b7a0fcc8d39efad2474f2666
Author: Jule Anger 
Date:   Tue Sep 7 10:30:26 2021 +0200

VERSION: Disable GIT_SNAPSHOT for the 4.15.0rc5 release.

Signed-off-by: Jule Anger 

commit da5c0a93a63103ca6c5850fa22da299e4167754f
Author: Jule Anger 
Date:   Tue Sep 7 10:29:17 2021 +0200

WHATSNEW: Add release notes for Samba 4.15.0rc5.

Signed-off-by: Jule Anger 

---

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


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index 17431e06943..c47655ceb3c 100644
--- a/VERSION
+++ b/VERSION
@@ -87,7 +87,7 @@ SAMBA_VERSION_PRE_RELEASE=
 # e.g. SAMBA_VERSION_RC_RELEASE=1  #
 #  ->  "3.0.0rc1"  #
 
-SAMBA_VERSION_RC_RELEASE=5
+SAMBA_VERSION_RC_RELEASE=6
 
 
 # To mark SVN snapshots this should be set to 'yes'#
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 2c391cfe801..d2c25df89ff 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,7 +1,7 @@
 Release Announcements
 =
 
-This is the fourth release candidate of Samba 4.15.  This is *not*
+This is the fifth release candidate of Samba 4.15.  This is *not*
 intended for production environments and is designed for testing
 purposes only.  Please report any defects via the Samba bug reporting
 system at https://bugzilla.samba.org/.
@@ -316,6 +316,31 @@ smb.conf changes
   winbind scan trusted domainsChanged No
 
 
+CHANGES SINCE 4.15.0rc4
+===
+
+o  Jeremy Allison 
+   * BUG 14809: Shares with variable substitutions cause core dump upon
+ connection from MacOS Big Sur 11.5.2.
+   * BUG 14816: Fix pathref open of a filesystem fifo in the DISABLE_OPATH
+ build.
+
+o  Andrew Bartlett 
+   * BUG 14815: A subset of tests from Samba's selftest system were not being
+ run, while others were run twice.
+
+o  Ralph Boehme 
+   * BUG 14771: Some VFS operations on pathref (O_PATH) handles fail on GPFS.
+   * BUG 14787: net conf list crashes when run as normal user,
+   * BUG 14803: smbd/winbindd started in daemon mode generate output on
+ stderr/stdout.
+   * BUG 14804: winbindd can crash because idmap child state is not fully
+ initialized.
+
+o  Stefan Metzmacher 
+   * BUG 14771: Some VFS operations on pathref (O_PATH) handles fail on GPFS.
+
+
 CHANGES SINCE 4.15.0rc3
 ===
 


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2021-09-07 Thread Jule Anger
The branch, master has been updated
   via  cf7aa9d Add Samba 4.13.11.
  from  87737b2 NEWS[4.13.11]: Samba 4.13.11 Available for Download

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


- Log -
commit cf7aa9d5f0352c805bf8a327b1a33c2adc7ea057
Author: Jule Anger 
Date:   Tue Sep 7 09:48:29 2021 +0200

Add Samba 4.13.11.

Signed-off-by: Jule Anger 

---

Summary of changes:
 history/header_history.html | 1 +
 1 file changed, 1 insertion(+)


Changeset truncated at 500 lines:

diff --git a/history/header_history.html b/history/header_history.html
index 7ec6a93..3af602b 100755
--- a/history/header_history.html
+++ b/history/header_history.html
@@ -17,6 +17,7 @@
samba-4.14.2
samba-4.14.1
samba-4.14.0
+   samba-4.13.11
samba-4.13.10
samba-4.13.9
samba-4.13.8


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2021-09-07 Thread Jule Anger
The branch, master has been updated
   via  87737b2 NEWS[4.13.11]: Samba 4.13.11 Available for Download
  from  e45c559 NEWS[4.15.0rc4]: Samba 4.15.0rc4 Available for Download

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


- Log -
commit 87737b2a162b87c0f112d6d8c5473225da7745a4
Author: Jule Anger 
Date:   Tue Sep 7 09:09:38 2021 +0200

NEWS[4.13.11]: Samba 4.13.11 Available for Download

Signed-off-by: Jule Anger 

---

Summary of changes:
 history/samba-4.13.11.html| 53 +++
 posted_news/20210907-074442.4.13.11.body.html | 13 ++
 posted_news/20210907-074442.4.13.11.headline.html |  3 ++
 3 files changed, 69 insertions(+)
 create mode 100644 history/samba-4.13.11.html
 create mode 100644 posted_news/20210907-074442.4.13.11.body.html
 create mode 100644 posted_news/20210907-074442.4.13.11.headline.html


Changeset truncated at 500 lines:

diff --git a/history/samba-4.13.11.html b/history/samba-4.13.11.html
new file mode 100644
index 000..8b7fab1
--- /dev/null
+++ b/history/samba-4.13.11.html
@@ -0,0 +1,53 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+Samba 4.13.11 - Release Notes
+
+
+Samba 4.13.11 Available for Download
+
+https://download.samba.org/pub/samba/stable/samba-4.13.11.tar.gz";>Samba 
4.13.11 (gzipped)
+https://download.samba.org/pub/samba/stable/samba-4.13.11.tar.asc";>Signature
+
+
+https://download.samba.org/pub/samba/patches/samba-4.13.10-4.13.11.diffs.gz";>Patch
 (gzipped) against Samba 4.13.10
+https://download.samba.org/pub/samba/patches/samba-4.13.10-4.13.11.diffs.asc";>Signature
+
+
+
+   ===
+   Release Notes for Samba 4.13.11
+ September 07, 2021
+   ===
+
+
+This is the latest stable release of the Samba 4.13 release series.
+
+
+Changes since 4.13.10
+-
+
+o  Jeremy Allison <j...@samba.org>
+   * BUG 14769: smbd panic on force-close share during offload write.
+
+o  Ralph Boehme <s...@samba.org>
+   * BUG 14731: Fix returned attributes on fake quota file handle and avoid
+ hitting the VFS.
+   * BUG 14783: smbd "deadtime" parameter doesn't work anymore.
+   * BUG 14787: net conf list crashes when run as normal user.
+
+o  Stefan Metzmacher <me...@samba.org>
+   * BUG 14607: Work around special SMB2 READ response behavior of NetApp Ontap
+ 7.3.7.
+   * BUG 14793: Start the SMB encryption as soon as possible.
+
+o  Andreas Schneider <a...@samba.org>
+   * BUG 14792: Winbind should not start if the socket path for the privileged
+ pipe is too long.
+
+
+
+
+
+
diff --git a/posted_news/20210907-074442.4.13.11.body.html 
b/posted_news/20210907-074442.4.13.11.body.html
new file mode 100644
index 000..3d4ac0d
--- /dev/null
+++ b/posted_news/20210907-074442.4.13.11.body.html
@@ -0,0 +1,13 @@
+
+07 September 2021
+Samba 4.13.11 Available for Download
+
+This is the latest stable release of the Samba 4.13 release series.
+
+
+The uncompressed tarball has been signed using GnuPG (ID AA99442FB680B620).
+The source code can be https://download.samba.org/pub/samba/stable/samba-4.13.11.tar.gz";>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.13.10-4.13.11.diffs.gz";>patch
 against Samba 4.13.10 is also available.
+See https://www.samba.org/samba/history/samba-4.13.11.html";>the 
release notes for more info.
+
+
diff --git a/posted_news/20210907-074442.4.13.11.headline.html 
b/posted_news/20210907-074442.4.13.11.headline.html
new file mode 100644
index 000..61b9f22
--- /dev/null
+++ b/posted_news/20210907-074442.4.13.11.headline.html
@@ -0,0 +1,3 @@
+
+ 07 September 2021 Samba 4.13.11 Available for 
Download
+


-- 
Samba Website Repository



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

2021-09-07 Thread Jule Anger
The branch, v4-13-stable has been updated
   via  2119f9f9f66 VERSION: Disable GIT_SNAPSHOT for the 4.13.11 release.
   via  14acad25bd2 WHATSNEW: Add release notes for Samba 4.13.11.
   via  20ef0b16ed3 registry: check for running as root in clustering mode
   via  16fc7a12aca s3/lib/dbwrap: check if global_messaging_context() 
succeeded
   via  6be92d44bb7 s3/rpc_server: track the number of policy handles with 
a talloc destructor
   via  f25f3118593 selftest: add a test for the "deadtime" parameter
   via  23ce76e94e8 s3:libsmb: start encryption as soon as possible after 
the session setup
   via  7c9aabe2dd0 s3: smbd: For FSCTL calls that go async, add the 
outstanding tevent_reqs to the aio list on the file handle.
   via  aa64f02ca94 configure: Do not put arguments into double quotes
   via  97c6d6fee8a smbd: return correct timestamps for quota fake file
   via  a3dea8a0d08 smbd: handle fake file handles in dos_mode()
   via  7ecf1650661 smbtorture: verify attributes on fake quota file handle
   via  5b58f663724 libcli/smb: allow unexpected padding in SMB2 READ 
responses
   via  f47e9965c77 libcli/smb: make smb2cli_ioctl_parse_buffer() available 
as smb2cli_parse_dyn_buffer()
   via  d4d9bc847c5 s3:smbd: implement 
FSCTL_SMBTORTURE_GLOBAL_READ_RESPONSE_BODY_PADDING8
   via  5d98e2f2960 s3:smbd: introduce a body_size variable in 
smbd_smb2_request_read_done
   via  e38295a091e s4:torture/smb2: add smb2.read.bug14607 test
   via  6fa28f4eb3a VERSION: Bump version up to Samba 4.13.11...
  from  85bb95881bb VERSION: Disable GIT_SNAPSHOT for the 4.13.10 release.

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


- Log -
---

Summary of changes:
 VERSION   |   2 +-
 WHATSNEW.txt  |  58 ++-
 configure |   2 +-
 libcli/smb/smb2cli_ioctl.c| 123 --
 libcli/smb/smb2cli_read.c |  22 +-
 libcli/smb/smbXcli_base.c |  91 +++
 libcli/smb/smbXcli_base.h |   9 +++
 libcli/smb/smb_constants.h|   2 +
 selftest/knownfail|   1 +
 source3/lib/dbwrap/dbwrap_open.c  |   4 +
 source3/libsmb/clidfs.c   |  44 ---
 source3/registry/reg_backend_db.c |   9 +++
 source3/rpc_server/rpc_handles.c  |  20 -
 source3/script/tests/test_deadtime.sh |  67 +
 source3/selftest/tests.py |   4 +
 source3/smbd/dosmode.c|  20 +
 source3/smbd/filename.c   |   5 ++
 source3/smbd/globals.h|   4 +
 source3/smbd/smb2_ioctl.c |  25 +++
 source3/smbd/smb2_read.c  |  14 +++-
 source4/torture/smb2/create.c |  63 
 source4/torture/smb2/read.c   | 136 ++
 22 files changed, 596 insertions(+), 129 deletions(-)
 create mode 100755 source3/script/tests/test_deadtime.sh


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index d05f3595233..8ab61a550f0 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=13
-SAMBA_VERSION_RELEASE=10
+SAMBA_VERSION_RELEASE=11
 
 
 # If a official release has a serious bug  #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index c141d32b62e..4b33797845e 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,3 +1,58 @@
+   ===
+   Release Notes for Samba 4.13.11
+ September 07, 2021
+   ===
+
+
+This is the latest stable release of the Samba 4.13 release series.
+
+
+Changes since 4.13.10
+-
+
+o  Jeremy Allison 
+   * BUG 14769: smbd panic on force-close share during offload write.
+
+o  Ralph Boehme 
+   * BUG 14731: Fix returned attributes on fake quota file handle and avoid
+ hitting the VFS.
+   * BUG 14783: smbd "deadtime" parameter doesn't work anymore.
+   * BUG 14787: net conf list crashes when run as normal user.
+
+o  Stefan Metzmacher 
+   * BUG 14607: Work around special SMB2 READ response behavior of NetApp Ontap
+ 7.3.7.
+   * BUG 14793: Start the SMB encryption as soon as possible.
+
+o  Andreas Schneider 
+   * BUG 14792: Winbind should not start if the socket path for the privileged
+ pipe is too long.
+
+
+###
+Reporting bugs & Development Discussion
+###
+
+Please discuss this release on the samba-technical mailing list or by
+joining the #samba-technical IRC channel on irc.f

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

2021-09-07 Thread Jule Anger
The annotated tag, samba-4.13.11 has been created
at  6650393c8411728b1aa557e111faaf70832b869d (tag)
   tagging  2119f9f9f66b66ae07fb6dea84c74f5b8b735880 (commit)
  replaces  samba-4.13.10
 tagged by  Jule Anger
on  Tue Sep 7 09:08:56 2021 +0200

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

iQIzBAABCgAdFiEEgfXigyvSVFoYl7cTqplEL7aAtiAFAmE3EAgACgkQqplEL7aA
tiCHfQ/+Is1MvmSW01O20H3Z1kayzhLIHhBxgp8q7t1WbnQrwGNOgQXJyYs+gEJU
XnJrMU51QCYo5fQY91hjBGC5sfWEDhqIqBRUWP9dPr3GZJaBxwE49iuEpfYKsmMH
arwS2Drbcc9SmU+wDqfqeu99UtQqY2pg0n7AniXWItV/zkxaOSLreSY16dir3mrS
+cMtyPRxHbCFhTD31D8jjnmxzz2Don3rX8upUnqw7QMAIDsCmd+XK0xWjxWiMlM9
TR56pl2BtQRx08vC/b9nnq7+0oRqCM8b7VqyEHFcG/UTNOegHB7l7fp0IZd3tQB/
WdwdN39WTgA5y0UQAv5UeTjwPrbUduQUE8DxP+qESYqHvyVLl+nh21VEcW6TkcG+
86X9zuMAH5zQg0yvVmeyFjKGJpM4apmHq+EgxuwDNmKGdAEQEeIWP+HxSImWbyrx
1KFQLMXeUwswa1fopUQANUbrKKBAVcfNYYlfyaDQXHcKxJvjAwOot+51GskS/RqC
Gz1RjJAEUu7QxfW5/cjYktveZdSP0foqW4XeZ0p9nZaCw7yx0whESE8IrHLrh/+Z
Q3qeLhQlQ3Zn9fPhHnxe2ebeqARvmrvw/fqD8AIbPL+mkj9eXzzy5OvCh3/sA8To
6rHux7Qv4m7q8kJRhSLPAxs9IaGH9IfuwmEAcd20ZjKPqHIMyc8=
=RgkY
-END PGP SIGNATURE-

Andreas Schneider (1):
  configure: Do not put arguments into double quotes

Jeremy Allison (1):
  s3: smbd: For FSCTL calls that go async, add the outstanding tevent_reqs 
to the aio list on the file handle.

Jule Anger (2):
  WHATSNEW: Add release notes for Samba 4.13.11.
  VERSION: Disable GIT_SNAPSHOT for the 4.13.11 release.

Karolin Seeger (1):
  VERSION: Bump version up to Samba 4.13.11...

Ralph Boehme (7):
  smbtorture: verify attributes on fake quota file handle
  smbd: handle fake file handles in dos_mode()
  smbd: return correct timestamps for quota fake file
  selftest: add a test for the "deadtime" parameter
  s3/rpc_server: track the number of policy handles with a talloc destructor
  s3/lib/dbwrap: check if global_messaging_context() succeeded
  registry: check for running as root in clustering mode

Stefan Metzmacher (6):
  s4:torture/smb2: add smb2.read.bug14607 test
  s3:smbd: introduce a body_size variable in smbd_smb2_request_read_done
  s3:smbd: implement FSCTL_SMBTORTURE_GLOBAL_READ_RESPONSE_BODY_PADDING8
  libcli/smb: make smb2cli_ioctl_parse_buffer() available as 
smb2cli_parse_dyn_buffer()
  libcli/smb: allow unexpected padding in SMB2 READ responses
  s3:libsmb: start encryption as soon as possible after the session setup

---


-- 
Samba Shared Repository