[SCM] Samba Shared Repository - branch master updated

2017-03-31 Thread Volker Lendecke
The branch, master has been updated
   via  3a9ea18 s4: messaging. Add imessaging_reinit_all() function.
  from  5f49795 selftest: Define template homedir for 'ad_member' env

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


- Log -
commit 3a9ea1873ca8e07fad18d5aa07097f8ead335270
Author: Jeremy Allison 
Date:   Wed Mar 29 11:11:37 2017 -0700

s4: messaging. Add imessaging_reinit_all() function.

Ensure it is called from process_standard.c after
every fork().

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

Autobuild-User(master): Volker Lendecke 
Autobuild-Date(master): Fri Mar 31 14:48:17 CEST 2017 on sn-devel-144

---

Summary of changes:
 source4/lib/messaging/messaging.c | 43 +++
 source4/lib/messaging/messaging.h |  1 +
 source4/smbd/process_standard.c   | 14 +
 source4/smbd/wscript_build|  2 +-
 4 files changed, 59 insertions(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/source4/lib/messaging/messaging.c 
b/source4/lib/messaging/messaging.c
index 80ef597..844466d 100644
--- a/source4/lib/messaging/messaging.c
+++ b/source4/lib/messaging/messaging.c
@@ -271,6 +271,49 @@ void imessaging_dgm_unref_all(void)
}
 }
 
+static NTSTATUS imessaging_reinit(struct imessaging_context *msg)
+{
+   int ret = -1;
+
+   TALLOC_FREE(msg->msg_dgm_ref);
+
+   msg->server_id.pid = getpid();
+
+   msg->msg_dgm_ref = messaging_dgm_ref(msg,
+   msg->ev,
+   &msg->server_id.unique_id,
+   msg->sock_dir,
+   msg->lock_dir,
+   imessaging_dgm_recv,
+   msg,
+   &ret);
+
+   if (msg->msg_dgm_ref == NULL) {
+   DEBUG(2, ("messaging_dgm_ref failed: %s\n",
+   strerror(ret)));
+   return map_nt_error_from_unix_common(ret);
+   }
+
+   server_id_db_reinit(msg->names, msg->server_id);
+   return NT_STATUS_OK;
+}
+
+/*
+ * Must be called after a fork.
+ */
+NTSTATUS imessaging_reinit_all(void)
+{
+   struct imessaging_context *msg = NULL;
+
+   for (msg = msg_ctxs; msg != NULL; msg = msg->next) {
+   NTSTATUS status = imessaging_reinit(msg);
+   if (!NT_STATUS_IS_OK(status)) {
+   return status;
+   }
+   }
+   return NT_STATUS_OK;
+}
+
 /*
   create the listening socket and setup the dispatcher
 */
diff --git a/source4/lib/messaging/messaging.h 
b/source4/lib/messaging/messaging.h
index 3b76b45..e587fdf 100644
--- a/source4/lib/messaging/messaging.h
+++ b/source4/lib/messaging/messaging.h
@@ -45,6 +45,7 @@ struct imessaging_context *imessaging_init(TALLOC_CTX 
*mem_ctx,
   struct server_id server_id,
   struct tevent_context *ev);
 void imessaging_dgm_unref_all(void);
+NTSTATUS imessaging_reinit_all(void);
 int imessaging_cleanup(struct imessaging_context *msg);
 struct imessaging_context *imessaging_client_init(TALLOC_CTX *mem_ctx,
   struct loadparm_context *lp_ctx,
diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c
index 1894657..ca93f93 100644
--- a/source4/smbd/process_standard.c
+++ b/source4/smbd/process_standard.c
@@ -28,6 +28,7 @@
 #include "cluster/cluster.h"
 #include "param/param.h"
 #include "ldb_wrap.h"
+#include "lib/messaging/messaging.h"
 
 struct standard_child_state {
const char *name;
@@ -270,6 +271,12 @@ static void standard_accept_connection(struct 
tevent_context *ev,
/* tdb needs special fork handling */
ldb_wrap_fork_hook();
 
+   /* Must be done after a fork() to reset messaging contexts. */
+   status = imessaging_reinit_all();
+   if (!NT_STATUS_IS_OK(status)) {
+   smb_panic("Failed to re-initialise imessaging after fork");
+   }
+
tevent_add_fd(ev, ev, child_pipe[0], TEVENT_FD_READ,
  standard_pipe_handler, NULL);
if (child_pipe[1] != -1) {
@@ -309,6 +316,7 @@ static void standard_new_task(struct tevent_context *ev,
  void *private_data)
 {
pid_t pid;
+   NTSTATUS status;
struct standard_child_state *state;
 
state = setup_standard_child_pipe(ev, service_name);
@@ -346,6 +354,12 @@ static void standard_new_task(struct tevent_context *ev,
/* ldb/tdb need special fork handling */
ldb_wrap_fork_hook();
 
+   /* Must be done after a fork() to reset messaging contexts. */
+   status = imessaging_reinit_all();
+   if (!NT_STATUS_IS_OK(status)) {
+   smb_panic("Fai

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

2017-03-31 Thread Karolin Seeger
The branch, v4-6-test has been updated
   via  925aa47 VERSION: Bump version up to 4.6.3.
   via  dd75f39 Merge tag 'samba-4.6.2' into v4-6-test
   via  36d0070 VERSION: Disable GIT_SNAPSHOTS for the 4.6.2 release.
   via  8f35980 WHATSNEW: Add release notes for 4.6.2.
   via  2b9a812 s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2
   via  9e81c83 s3: smbd: Fix "follow symlink = no" regression part 2.
   via  9e2ce69 s3: smbd: Fix "follow symlink = no" regression part 2.
   via  076f01e s3: Fixup test for CVE-2017-2619 regression with "follow 
symlinks = no"
   via  5a573c2 s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no".
   via  faea234 s3: smbd: Fix incorrect logic exposed by fix for the 
security bug 12496 (CVE-2017-2619).
   via  7b7f6a0 VERSION: Re-enable GIT_SNAPSHOTS.
   via  6cd0b59 VERSION: Bump version up to 4.6.2.
  from  cf02564 s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2

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


- Log -
commit 925aa47db2e7ca194443a189c750f6285c816a26
Author: Karolin Seeger 
Date:   Fri Mar 31 10:18:05 2017 +0200

VERSION: Bump version up to 4.6.3.

Signed-off-by: Karolin Seeger 

commit dd75f3945f689fc639f4f5bf70294c63b12210ae
Merge: cf02564 36d0070
Author: Karolin Seeger 
Date:   Fri Mar 31 10:17:48 2017 +0200

Merge tag 'samba-4.6.2' into v4-6-test

samba: tag release samba-4.6.2

---

Summary of changes:
 VERSION   |  2 +-
 WHATSNEW.txt  | 45 +++--
 selftest/target/Samba3.pm |  4 
 3 files changed, 48 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index 3a831c8..e197b1f 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=6
-SAMBA_VERSION_RELEASE=2
+SAMBA_VERSION_RELEASE=3
 
 
 # If a official release has a serious bug  #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 02935d7..a5feff8 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,4 +1,45 @@
=
+   Release Notes for Samba 4.6.2
+   March 31, 2017
+   =
+
+
+This is a bug fix release to address a regression introduced by the security
+fixes for CVE-2017-2619 (Symlink race allows access outside share definition).
+Please see https://bugzilla.samba.org/show_bug.cgi?id=12721 for details.
+
+
+Changes since 4.6.1:
+
+
+o  Jeremy Allison 
+   * BUG 12721: Fix regression with "follow symlinks = no".
+
+
+###
+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:
+
+
+   =
Release Notes for Samba 4.6.1
March 23, 2017
=
@@ -66,8 +107,8 @@ database (https://bugzilla.samba.org/).
 ==
 
 
-Release notes for older releases follow:
-
+--
+
 
   ==
Release Notes for Samba 4.6.0
diff --git a/selftest/target/Samba3.pm b/selftest/target/Samba3.pm
index d7b8d77..7722a5e 100755
--- a/selftest/target/Samba3.pm
+++ b/selftest/target/Samba3.pm
@@ -1861,6 +1861,10 @@ sub provision()
copy = tmp
acl_xattr:ignore system acls = yes
acl_xattr:default acl style = posix
+[nosymlinks]
+   copy = tmp
+   path = $nosymlinks_shrdir
+   follow symlinks = no
 [acl_xattr_ign_sysacl_windows]
copy = tmp
acl_xattr:ignore system acls = yes


-- 
Samba Shared Repository



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

2017-03-31 Thread Karolin Seeger
The branch, v4-5-test has been updated
   via  fa9bc20 VERSION: Bump version up to 4.5.9.
   via  25ed615 Merge tag 'samba-4.5.8' into v4-5-test
   via  964d1fc VERSION: Disable GIT_SNAPSHOTS for the 4.5.8 release.
   via  46032b9 WHATSNEW: Add release notes for Samba 4.5.8.
   via  e013dc8 s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2
   via  8dfe455 s3: smbd: Fix "follow symlink = no" regression part 2.
   via  95c190d s3: smbd: Fix "follow symlink = no" regression part 2.
   via  99378b7 s3: Fixup test for CVE-2017-2619 regression with "follow 
symlinks = no"
   via  29dd6b1 s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no".
   via  42fd34a s3: smbd: Fix incorrect logic exposed by fix for the 
security bug 12496 (CVE-2017-2619).
   via  4e28a8f VERSION: Re-enable GIT_SNAPSHOTS.
   via  bf889af VERSION: Up to Samba 4.5.8.
  from  342e39b s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2

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


- Log -
commit fa9bc20eecc28073be09a6644f057131213d01eb
Author: Karolin Seeger 
Date:   Fri Mar 31 10:16:13 2017 +0200

VERSION: Bump version up to 4.5.9.

Signed-off-by: Karolin Seeger 

commit 25ed6156ab8e2a14475c635e21b3c1b3c332083a
Merge: 342e39b 964d1fc
Author: Karolin Seeger 
Date:   Fri Mar 31 10:15:40 2017 +0200

Merge tag 'samba-4.5.8' into v4-5-test

samba: tag release samba-4.5.8

---

Summary of changes:
 VERSION   |  2 +-
 WHATSNEW.txt  | 45 +++--
 selftest/target/Samba3.pm |  4 
 3 files changed, 48 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index da28b78..2ecd3ac 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=5
-SAMBA_VERSION_RELEASE=8
+SAMBA_VERSION_RELEASE=9
 
 
 # If a official release has a serious bug  #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 591fbc6..5f37176 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,4 +1,45 @@
=
+   Release Notes for Samba 4.5.8
+   March 31, 2017
+   =
+
+
+This is a bug fix release to address a regression introduced by the security
+fixes for CVE-2017-2619 (Symlink race allows access outside share definition).
+Please see https://bugzilla.samba.org/show_bug.cgi?id=12721 for details.
+
+
+Changes since 4.5.7:
+
+
+o  Jeremy Allison 
+   * BUG 12721: Fix regression with "follow symlinks = no".
+
+
+###
+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:
+
+
+   =
Release Notes for Samba 4.5.7
March 23, 2017
=
@@ -66,8 +107,8 @@ database (https://bugzilla.samba.org/).
 ==
 
 
-Release notes for older releases follow:
-
+--
+
 
=
Release Notes for Samba 4.5.6
diff --git a/selftest/target/Samba3.pm b/selftest/target/Samba3.pm
index 69ea33e..ce60b52 100755
--- a/selftest/target/Samba3.pm
+++ b/selftest/target/Samba3.pm
@@ -1823,6 +1823,10 @@ sub provision()
copy = tmp
acl_xattr:ignore system acls = yes
acl_xattr:default acl style = posix
+[nosymlinks]
+   copy = tmp
+   path = $nosymlinks_shrdir
+   follow symlinks = no
 [acl_xattr_ign_sysacl_windows]
copy = tmp
acl_xattr:ignore system acls = yes


-- 
Samba Shared Repository



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

2017-03-31 Thread Karolin Seeger
The branch, v4-4-test has been updated
   via  dea3200 VERSION: Bump version up to 4.4.14.
   via  4a63ccd Merge tag 'samba-4.4.13' into v4-4-test
   via  f4f7952 VERSION: Disable GIT_SNAPSHOTS for the 4.4.13 release.
   via  cc9aec7 WHATSNEW: Add release notes for Samba 4.4.13.
   via  818fb1a s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2
   via  80b8fa0 s3: smbd: Fix "follow symlink = no" regression part 2.
   via  de57712 s3: smbd: Fix "follow symlink = no" regression part 2.
   via  ed50b9f s3: Fixup test for CVE-2017-2619 regression with "follow 
symlinks = no"
   via  75df72a s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no".
   via  aff09ec s3: smbd: Fix incorrect logic exposed by fix for the 
security bug 12496 (CVE-2017-2619).
   via  452d0dd VERSION: Re-enable GIT_SNAPSHOTS.
   via  e2df6aa VERSION: Bump version up to 4.4.13.
  from  0839f6c s3: Test for CVE-2017-2619 regression with "follow symlinks 
= no" - part 2

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


- Log -
commit dea32007147c1e392a06bf6202ce5361a21ba9fb
Author: Karolin Seeger 
Date:   Fri Mar 31 10:14:38 2017 +0200

VERSION: Bump version up to 4.4.14.

Signed-off-by: Karolin Seeger 

commit 4a63ccda037744c48e21515637c834eca6f921f2
Merge: 0839f6c f4f7952
Author: Karolin Seeger 
Date:   Fri Mar 31 10:12:52 2017 +0200

Merge tag 'samba-4.4.13' into v4-4-test

samba: tag release samba-4.4.13

---

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


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index b076ad8..909a5e6 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=4
-SAMBA_VERSION_RELEASE=13
+SAMBA_VERSION_RELEASE=14
 
 
 # If a official release has a serious bug  #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index 6ab5e5d..3ecda69 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,4 +1,45 @@
==
+   Release Notes for Samba 4.4.13
+   March 31, 2017
+   ==
+
+
+This is a bug fix release to address a regression introduced by the security
+fixes for CVE-2017-2619 (Symlink race allows access outside share definition).
+Please see https://bugzilla.samba.org/show_bug.cgi?id=12721 for details.
+
+
+Changes since 4.4.12:
+-
+
+o  Jeremy Allison 
+   * BUG 12721: Fix regression with "follow symlinks = no".
+
+
+###
+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:
+
+
+   ==
Release Notes for Samba 4.4.12
March 23, 2017
==
@@ -13,7 +54,7 @@ Details
 ===
 
 o  CVE-2017-2619:
-   All versions of Samba prior to 4.6.1, 4.5.7, 4.4.11 are vulnerable to
+   All versions of Samba prior to 4.6.1, 4.5.7, 4.4.12 are vulnerable to
a malicious client using a symlink race to allow access to areas of
the server file system not exported under the share definition.
 
@@ -66,8 +107,8 @@ database (https://bugzilla.samba.org/).
 ==
 
 
-Release notes for older releases follow:
-
+--
+
 
==
Release Notes for Samba 4.4.11


-- 
Samba Shared Repository



[SCM] Samba Website Repository - branch master updated

2017-03-31 Thread Karolin Seeger
The branch, master has been updated
   via  877f022 Fix link.
  from  3495c61 Add 4.6.2 and 4.5.8.

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


- Log -
commit 877f0222e2686c80f591cbe1b435069e5143b045
Author: Karolin Seeger 
Date:   Fri Mar 31 09:26:54 2017 +0200

Fix link.

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 posted_news/20170331-065643.4.4.13.body.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


Changeset truncated at 500 lines:

diff --git a/posted_news/20170331-065643.4.4.13.body.html 
b/posted_news/20170331-065643.4.4.13.body.html
index 06a5a47..88767e6 100644
--- a/posted_news/20170331-065643.4.4.13.body.html
+++ b/posted_news/20170331-065643.4.4.13.body.html
@@ -14,7 +14,7 @@ See https://www.samba.org/samba/history/samba-4.6.2.html";>the 4.6.2 rel
 
 The 4.5.8 source code can be https://download.samba.org/pub/samba/stable/samba-4.5.8.tar.gz";>downloaded
 now.
 A https://download.samba.org/pub/samba/patches/samba-4.5.7-4.5.8.diffs.gz";>patch
 against Samba 4.5.7 is also available.
-See https://www.samba.org/samba/history/samba-4.5.8<.html">the 4.5.8 
release notes for more info.
+See https://www.samba.org/samba/history/samba-4.5.8.html";>the 4.5.8 
release notes for more info.
 
 The 4.4.13 source code can be https://download.samba.org/pub/samba/stable/samba-4.4.13.tar.gz";>downloaded
 now.
 A https://download.samba.org/pub/samba/patches/samba-4.4.12-4.4.13.diffs.gz";>patch
 against Samba 4.4.12 is also available.


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-03-31 Thread Karolin Seeger
The branch, master has been updated
   via  3495c61 Add 4.6.2 and 4.5.8.
  from  b3f67af NEWS[4.6.2]: Samba 4.6.2, 4.5.8 and 4.4.13 Available for 
Download

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


- Log -
commit 3495c61abc4baa84cf35aeb165100739431965f5
Author: Karolin Seeger 
Date:   Fri Mar 31 09:18:13 2017 +0200

Add 4.6.2 and 4.5.8.

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 posted_news/20170331-065643.4.4.13.body.html | 21 +++--
 1 file changed, 15 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/posted_news/20170331-065643.4.4.13.body.html 
b/posted_news/20170331-065643.4.4.13.body.html
index 492b7b5..06a5a47 100644
--- a/posted_news/20170331-065643.4.4.13.body.html
+++ b/posted_news/20170331-065643.4.4.13.body.html
@@ -1,13 +1,22 @@
 
-31 March 2017
-Samba 4.4.13 Available for Download
+31 March 2017
+Samba 4.6.2, 4.5.8 and 4.4.13 Available for Download
 
-This is the latest stable release of the Samba 4.4 release series.
+These are the latest stable releases. They fix a regression introduced in Samba
+4.6.1, 4.5.7 and 4.4.12.
 
 
 The uncompressed tarball has been signed using GnuPG (ID 6F33915B6568B7EA).
-The source code can be https://download.samba.org/pub/samba/stable/samba-4.4.13.tar.gz";>downloaded
 now.
-A https://download.samba.org/pub/samba/patches/samba-4.4.12-4.4.13.diffs.gz";>patch
 against Samba 4.4.12 is also available.
-See https://www.samba.org/samba/history/samba-4.4.13.html";>the 
release notes for more info.
 
+The 4.6.2 source code can be https://download.samba.org/pub/samba/stable/samba-4.6.2.tar.gz";>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.6.1-4.6.2.diffs.gz";>patch
 against Samba 4.6.1 is also available.
+See https://www.samba.org/samba/history/samba-4.6.2.html";>the 4.6.2 
release notes for more info.
+
+The 4.5.8 source code can be https://download.samba.org/pub/samba/stable/samba-4.5.8.tar.gz";>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.5.7-4.5.8.diffs.gz";>patch
 against Samba 4.5.7 is also available.
+See https://www.samba.org/samba/history/samba-4.5.8<.html">the 4.5.8 
release notes for more info.
+
+The 4.4.13 source code can be https://download.samba.org/pub/samba/stable/samba-4.4.13.tar.gz";>downloaded
 now.
+A https://download.samba.org/pub/samba/patches/samba-4.4.12-4.4.13.diffs.gz";>patch
 against Samba 4.4.12 is also available.
+See https://www.samba.org/samba/history/samba-4.4.13.html";>the 4.4.13 
release notes for more info.
 


-- 
Samba Website Repository



[SCM] Samba Website Repository - branch master updated

2017-03-31 Thread Karolin Seeger
The branch, master has been updated
   via  b3f67af NEWS[4.6.2]: Samba 4.6.2, 4.5.8 and 4.4.13 Available for 
Download
  from  99988dd Fix hyper reference.

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


- Log -
commit b3f67af70e509f7f8630ac62e0dce8999d03e650
Author: Karolin Seeger 
Date:   Fri Mar 31 08:21:22 2017 +0200

NEWS[4.6.2]: Samba 4.6.2, 4.5.8 and 4.4.13 Available for Download

Signed-off-by: Karolin Seeger 

---

Summary of changes:
 history/header_history.html  |  3 ++
 history/samba-4.4.13.html| 40 
 history/samba-4.5.8.html | 40 
 history/samba-4.6.2.html | 40 
 posted_news/20170331-065643.4.4.13.body.html | 13 
 posted_news/20170331-065643.4.4.13.headline.html |  3 ++
 6 files changed, 139 insertions(+)
 create mode 100644 history/samba-4.4.13.html
 create mode 100644 history/samba-4.5.8.html
 create mode 100644 history/samba-4.6.2.html
 create mode 100644 posted_news/20170331-065643.4.4.13.body.html
 create mode 100644 posted_news/20170331-065643.4.4.13.headline.html


Changeset truncated at 500 lines:

diff --git a/history/header_history.html b/history/header_history.html
index ffb1956..9d66136 100755
--- a/history/header_history.html
+++ b/history/header_history.html
@@ -9,8 +9,10 @@
Release Notes


+   samba-4.6.2
samba-4.6.1
samba-4.6.0
+   samba-4.5.8
samba-4.5.7
samba-4.5.6
samba-4.5.5
@@ -19,6 +21,7 @@
samba-4.5.2
samba-4.5.1
samba-4.5.0
+   samba-4.4.13
samba-4.4.12
samba-4.4.11
samba-4.4.10
diff --git a/history/samba-4.4.13.html b/history/samba-4.4.13.html
new file mode 100644
index 000..4c163f8
--- /dev/null
+++ b/history/samba-4.4.13.html
@@ -0,0 +1,40 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+Samba 4.4.13 - Release Notes
+
+
+Samba 4.4.13 Available for Download
+
+https://download.samba.org/pub/samba/stable/samba-4.4.13.tar.gz";>Samba 
4.4.13 (gzipped)
+https://download.samba.org/pub/samba/stable/samba-4.4.13.tar.asc";>Signature
+
+
+https://download.samba.org/pub/samba/patches/samba-4.4.12-4.4.13.diffs.gz";>Patch
 (gzipped) against Samba 4.4.12
+https://download.samba.org/pub/samba/patches/samba-4.4.12-4.4.13.diffs.asc";>Signature
+
+
+
+   ==
+   Release Notes for Samba 4.4.13
+   March 31, 2017
+   ==
+
+
+This is a bug fix release to address a regression introduced by the security
+fixes for CVE-2017-2619 (Symlink race allows access outside share definition).
+Please see https://bugzilla.samba.org/show_bug.cgi?id=12721 for details.
+
+
+Changes since 4.4.12:
+-
+
+o  Jeremy Allison <j...@samba.org>
+   * BUG 12721: Fix regression with "follow symlinks = no".
+
+
+
+
+
+
diff --git a/history/samba-4.5.8.html b/history/samba-4.5.8.html
new file mode 100644
index 000..396cead
--- /dev/null
+++ b/history/samba-4.5.8.html
@@ -0,0 +1,40 @@
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+Samba 4.5.8 - Release Notes
+
+
+Samba 4.5.8 Available for Download
+
+https://download.samba.org/pub/samba/stable/samba-4.5.8.tar.gz";>Samba 
4.5.8 (gzipped)
+https://download.samba.org/pub/samba/stable/samba-4.5.8.tar.asc";>Signature
+
+
+https://download.samba.org/pub/samba/patches/samba-4.5.7-4.5.8.diffs.gz";>Patch
 (gzipped) against Samba 4.5.7
+https://download.samba.org/pub/samba/patches/samba-4.5.7-4.5.8.diffs.asc";>Signature
+
+
+
+   =
+   Release Notes for Samba 4.5.8
+   March 31, 2017
+   =
+
+
+This is a bug fix release to address a regression introduced by the security
+fixes for CVE-2017-2619 (Symlink race allows access outside share definition).
+Please see https://bugzilla.samba.org/show_bug.cgi?id=12721 for details.
+
+
+Changes since 4.5.7:
+
+
+o  Jeremy Allison <j...@samba.org>
+   * BUG 12721: Fix regression with "follow symlinks = no".
+
+
+
+
+
+
diff --git a/history/samba-4.6.2.html b/history/samba-4.6.2.html
new file mode 100