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

Karolin Seeger kseeger at samba.org
Mon Jan 11 13:24:06 UTC 2016


The branch, v4-3-test has been updated
       via  ae2a575 VERSION: Bump version up to 4.3.5...
       via  0c12970 VERSION: Disable git snapshots for the 4.3.4 release.
       via  f700a19 WHATSNEW: Add release notes for Samba 4.3.4.
       via  97d39ca s3:torture: add traverse testing to LOCAL-RBTREE
       via  49f04d1 dbwrap_rbt: fix modifying the db during traverse
       via  4a0f277 dbwrap_rbt: add nested traverse protection
       via  a9071dc dbwrap_rbt: use talloc_zero_size() instead of a partial ZERO_STRUCT()
       via  c36c6e9 Revert "Fix bug #11394 -  Crash: Bad talloc magic value - access after free"
      from  234861b password_lockout: test creds.get_kerberos_state()

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


- Log -----------------------------------------------------------------
commit ae2a5752c5d9b3d8b2a3b0f85876907c0b081262
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Jan 11 10:59:43 2016 +0100

    VERSION: Bump version up to 4.3.5...
    
    and re-enable git snapshots.
    
    Signed-off-by: Karolin Seeger <kseeger at samba.org>
    
    Autobuild-User(v4-3-test): Karolin Seeger <kseeger at samba.org>
    Autobuild-Date(v4-3-test): Mon Jan 11 14:23:41 CET 2016 on sn-devel-104

commit 0c1297017c1ac3b1af5a22003398ba6f0ef600e8
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Jan 11 10:59:07 2016 +0100

    VERSION: Disable git snapshots for the 4.3.4 release.
    
    Signed-off-by: Karolin Seeger <kseeger at samba.org>

commit f700a1913bf97f6ac3a2d2e1a48f91eccffbbc55
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Jan 11 10:57:06 2016 +0100

    WHATSNEW: Add release notes for Samba 4.3.4.
    
    Signed-off-by: Karolin Seeger <kseeger at samba.org>

commit 97d39ca80e5bc70963d5f2d27f559ac2c73d05ad
Author: Stefan Metzmacher <metze at samba.org>
Date:   Wed Nov 25 00:13:17 2015 +0100

    s3:torture: add traverse testing to LOCAL-RBTREE
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11375
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11394
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): Stefan Metzmacher <metze at samba.org>
    Autobuild-Date(master): Fri Nov 27 13:16:59 CET 2015 on sn-devel-104
    
    (cherry picked from commit bb9f13ab4165f150e01a88ddcc51605a7c176f5d)

commit 49f04d19242518f818fe7d4c76d1c089d10acd05
Author: Stefan Metzmacher <metze at samba.org>
Date:   Wed Nov 25 09:22:08 2015 +0100

    dbwrap_rbt: fix modifying the db during traverse
    
    We delete and add of records rebalace the tree, but our
    traverse code doesn't handle that and skips records
    randomly.
    
    We maintain records in a linked list for now
    in addition to the rbtree and use that list during
    traverse.
    
    This add a bit overhead, but at least it works reliable.
    If someone finds a way to do reliable traverse with the
    rebalanced tree, we can replace this commit.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11375
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11394
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    (cherry picked from commit 0f46da08e160e6712e5282af14e1ec4012614fc7)

commit 4a0f277c00f8a7a82f48e9a3eb284c434bf23295
Author: Stefan Metzmacher <metze at samba.org>
Date:   Wed Nov 25 09:22:08 2015 +0100

    dbwrap_rbt: add nested traverse protection
    
    Multiple dbwrap_traverse_read() calls are possible.
    
    store() and delete() on a fetch locked record
    are rejected during dbwrap_traverse_read().
    
    A dbwrap_traverse() within a dbwrap_traverse_read()
    behaves like a dbwrap_traverse_read().
    
    Nested dbwrap_traverse() calls are not possible.
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11375
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11394
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    (cherry picked from commit 590507951fc514a679f44b8bfdd03c721189c3fa)

commit a9071dcf8a7eec7c2f45fd17fc8b37367377e2d7
Author: Stefan Metzmacher <metze at samba.org>
Date:   Wed Nov 25 10:17:34 2015 +0100

    dbwrap_rbt: use talloc_zero_size() instead of a partial ZERO_STRUCT()
    
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11375
    BUG: https://bugzilla.samba.org/show_bug.cgi?id=11394
    
    Signed-off-by: Stefan Metzmacher <metze at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    (cherry picked from commit f3d1fc1d06822a951a2a3eeb5aa53748b9b5b299)

commit c36c6e959bcfc8862cd1abd30837dd8b7fa1bc90
Author: Karolin Seeger <kseeger at samba.org>
Date:   Mon Jan 11 11:15:19 2016 +0100

    Revert "Fix bug #11394 -  Crash: Bad talloc magic value - access after free"
    
    This reverts commit 569ce95de57511d6082196ca4cc0938d78700351.
    
    This has been committed by accident. Right patchset, but wrong authorship.
    Patchset with correct authorship to follow.

-----------------------------------------------------------------------

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


Changeset truncated at 500 lines:

diff --git a/VERSION b/VERSION
index d6dfedc..c264214 100644
--- a/VERSION
+++ b/VERSION
@@ -25,7 +25,7 @@
 ########################################################
 SAMBA_VERSION_MAJOR=4
 SAMBA_VERSION_MINOR=3
-SAMBA_VERSION_RELEASE=4
+SAMBA_VERSION_RELEASE=5
 
 ########################################################
 # If a official release has a serious bug              #
diff --git a/WHATSNEW.txt b/WHATSNEW.txt
index ba2e101..4d03b61 100644
--- a/WHATSNEW.txt
+++ b/WHATSNEW.txt
@@ -1,4 +1,77 @@
                    =============================
+                   Release Notes for Samba 4.3.4
+                         January 12, 2016
+                   =============================
+
+
+This is the latest stable release of Samba 4.3.
+
+
+Changes since 4.3.3:
+--------------------
+
+o  Michael Adam <obnox at samba.org>
+   * BUG 11619: doc: Fix a typo in the smb.conf manpage, explanation of idmap
+     config.
+   * BUG 11647: s3:smbd: Fix a corner case of the symlink verification.
+
+o  Jeremy Allison <jra at samba.org>
+   * BUG 11624: s3: libsmb: Correctly initialize the list head when keeping a
+     list of primary followed by DFS connections.
+   * BUG 11625: Reduce the memory footprint of empty string options.
+
+o  Douglas Bagnall <douglas.bagnall at catalyst.net.nz>
+   * BUG 11659: Update lastLogon and lastLogonTimestamp.
+
+o  Ralph Boehme <slow at samba.org>
+   * BUG 11065: vfs_fruit: Enable POSIX directory rename semantics.
+   * BUG 11466: Copying files with vfs_fruit fails when using vfs_streams_xattr
+     without stream prefix and type suffix.
+   * BUG 11645: smbd: Make "hide dot files" option work with "store dos
+     attributes = yes".
+
+o  Günther Deschner <gd at samba.org>
+   * BUG 11639: lib/async_req: Do not install async_connect_send_test.
+
+o  Stefan Metzmacher <metze at samba.org>
+   * BUG 11394: Crash: Bad talloc magic value - access after free.
+
+o  Rowland Penny <repenny241155 at gmail.com>
+   * BUG 11613: samba-tool: Fix uncaught exception if no fSMORoleOwner
+     attribute is given.
+
+o  Karolin Seeger <kseeger at samba.org>
+   * BUG 11619: docs: Fix some typos in the idmap backend section.
+   * BUG 11641: docs: Fix typos in man vfs_gpfs.
+
+o  Uri Simchoni <uri at samba.org>
+   * BUG 11649: smbd: Do not disable "store dos attributes" on-the-fly.
+
+
+#######################################
+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
+======================================================================
+
+
+Older release notes to follow:
+------------------------------
+
+                   =============================
                    Release Notes for Samba 4.3.3
                          December 16, 2015
                    =============================
@@ -142,8 +215,8 @@ database (https://bugzilla.samba.org/).
 ======================================================================
 
 
-Older release notes to follow:
-------------------------------
+----------------------------------------------------------------------
+
 
                    =============================
                    Release Notes for Samba 4.3.2


-- 
Samba Shared Repository



More information about the samba-cvs mailing list