s3:registry: refactor deletion of various subkey lists out of regdb_store_keys()
[obnox/samba-ctdb.git] / WHATSNEW.txt
index cd64f6df102ecb0462d9f6874bf415fa6ccda037..968fd37a923b789d86e6aeb8848fa4e7a452f1b1 100644 (file)
-                   ================================
-                   Release Notes for Samba 3.3.0rc1
-                           
-                   ================================
+                   =============================
+                   Release Notes for Samba 3.3.2
+                          March, 12 2009
+                   =============================
 
-This is the first release candidate of Samba 3.3.0.  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/.
+This is the latest bugfix release release of the Samba 3.3 series.
 
-Major enhancements in Samba 3.3.0 include:
+Major enhancements in Samba 3.3.2 include:
 
- Configuration/installation:
- o Splitting of library directory into library directory and separate
-   modules directory.
-
- File Serving:
- o Extended Cluster support.
-
- Winbind:
- o Simplified idmap configuration.
- o New idmap backends "adex" and "hash".
- o Added new parameter "winbind reconnect delay".
- o Added support for user and group aliasing.
-
- Administrative tools:
- o The destination "all" of smbcontrol does now affect all running
-   daemons including nmbd and winbindd.
- o New 'net rpc vampire keytab' and 'net rpc vampire ldif' commands.
- o The 'net' utility can now use kerberos for joining and authentication.
-
- Libraries:
- o NetApi library implements various new calls for User- and Group
-   Account Management.
-
-
-Configure changes
-=================
-
-The configure option "--with-libdir" has been removed. The library
-directory can still be specified by using the existing "--libdir" option.
-A new option "--with-modulesdir" has been added to allow the specification
-of a separate directory for the shared modules.
-
-
-Winbind idmap backend changes
-=============================
-
-The idmap configuration has changed with version 3.3 to something that
-allows a smoother upgrade path from pre-3.0.25 configurations that use
-"idmap backend". The reason for this change is that to many, also to Samba
-developers, the 3.0.25 style configuration with "idmap config" turned out
-to be very complex. Version 3.3 no longer deprecates the "idmap backend"
-parameter, instead with "idmap backend" the default idmap backend is
-specified.
-
-Accordingly, the "idmap config <domain> : default = yes" setting is no
-longer being looked at.
-
-The alloc backend defaults to the default backend, which should be able to
-allocate IDs. In the default distribution the tdb and ldap backends can
-allocate, the ad and rid backends can not. The idmap alloc range is now
-being set with the "old" parameters "idmap uid" and "idmap gid".
-
-The "idmap domains" parameter has been removed.
-
-
-winbind reconnect delay
-=======================
-
-This is a new parameter which specifies the number of seconds the Winbind
-daemon will wait between attempts to contact a Domain controller for a domain
-that is determined to be down or not contactable.
-
-
-Winbind's Name Aliasing
-=======================
-
-Name aliasing in Winbind is a feature that allows an administrator to
-map a fully qualified user or group name from a Windows domain to a
-convenient short name for Unix access.  This is similar to the username
-map functionality supported by smbd but is primary intended for
-clients and servers making use of Winbind's PAM and NSS libraries.
-
-For example, the user "DOMAIN\fred" has been mapped to the Unix name
-"freddie".
-
-   $ getent passwd "DOMAIN\fred"
-   freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
-
-   $ getent passwd freddie
-   freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
-
-The name aliasing support is provided by individual nss_info plugins.
-For example, the new "adex" plugin reads the uid attribute from Active
-Directory to make a short login name to the fully qualified name.
-While the new "hash" module utilizes a local file to map "short_name
-= QUALIFIED\name".  Both user and group name mapping is supported.
-Please refer to the "winbind nss info" option in smb.conf(5) and
-to individual plugin man pages for further details.
-
-
-idmap_hash
-==========
-
-The idmap_hash plugin provides similar support as the idmap_rid
-module.  However, uids and gids are generated from the full domain
-SID using a hashing algorithm that maps the lower 19 bits from the user
-or group RID to bits 0 - 19 in the Unix id and hashes 96 bits from
-the domain SID to bits 20 - 30 in the Unix id.  The result is a 31 bit
-uid or gid that is consistent across machines and provides support for
-trusted domains.
-
-Please refer to the idmap_hash(8) man page for more details.
-
-
-idmap_adex
-==========
-
-The adex idmap/nss_info plugin is an adaptation of the Likewise
-Enterprise plugin with support for OU based cells removed
-(since the Windows pieces to manage the cells are not available).
-
-This plugin supports
-
-      * The RFC2307 schema for users and groups.
-      * Connections to trusted domains
-      * Global catalog searches
-      * Cross forest trusts
-      * User and group aliases
-
-Prerequisite: Add the following attributes to the Partial Attribute
-Set in global catalog:
-
-      * uidNumber
-      * uid
-      * gidNumber
-
-A basic config using the current trunk code would look like:
-
-[global]
-       idmap backend = adex
-       idmap uid = 10000 - 29999
-       idmap gid = 10000 - 29999
-       winbind nss info = adex
-
-       winbind normalize names = yes
-       winbind refresh tickets = yes
-       template homedir = /home/%D/%U
-       template shell = /bin/bash
-
-Please refer to the idmap_adex(8) man page for more details.
+     * Fix "force group" (bug #6155).
+     * Fix saving of files on Samba share using MS Office 2007 (bug #6160).
+     * Fix guest authentication in setups with "security = share" and
+      "guest ok = yes" when Winbind is running.
+     * Fix corruptions of source path in tar mode of smbclient (bug #6161).
 
 
 ######################################################################
 Changes
 #######
 
-smb.conf changes
-----------------
-
-    Parameter Name                      Description     Default
-    --------------                      -----------     -------
-    cups connection timeout            New             30
-    idmap domains                      Removed
-    init logon delayed hosts           New             ""
-    init logon delay                   New             100
-    winbind reconnect delay            New             30
-
 
-Changes since 3.3.0pre2:
-------------------------
+Changes since 3.3.1:
+--------------------
 
 
 o   Jeremy Allison <jra@samba.org>
-    * BUG 5080: Fix access to cups-printers with cups 1.3.4.
-    * BUG 5814: Fix Winbind crash bug while doing "rescan_trusted_domain".
-    * BUG 5818: Sort ACEs in smbcacl output properly and honor inheritance.
-    * BUG 5826: Fix truncated filenames when accessing old servers.
-    * Correctly fix smbclient to terminate on eof from server.
-    * Fix client timeout when searching for a large number of cups printers.
-    * Unify access checks for lsa server functions.
-
-
-o   Gerald (Jerry) Carter <jerry@samba.org>
-    * Use the same prerequisite for DDNS update as Windows XP.
-    * Make "lwinet ads dns register" honor the "interfaces" parameter.
-
+    * BUG 6082: Fix renaming and deleting of directories using Windows clients.
+    * BUG 6154: Make ZFS honor admin users.
+    * BUG 6155: Fix "force group".
+    * BUG 6160: Fix saving of files on Samba share using MS Office 2007.
+    * BUG 6161: Fix corruptions of source path in tar mode of smbclient.
+    * Fix some NetBSD warnings.
+    * Fix bug in processing of open modes in POSIX open.
+    * Fix use of streams modules with CIFSFS client.
+    * Ensure ACL modules work with POSIX paths.
+    * Use fsp->posix_open in preference if we have it.
+    * Fix more POSIX path lstat calls.
 
-o   Günther Deschner <gd@samba.org>
-    * Ensure consistency when reporting password complexity.
 
+o   Andrew Tridgell <tridge@samba.org>
+    * Fix a bug in message handling for the change notify code.
 
-o   Jeff Layton <jlayton@redhat.com>
-    * Have uppercase_string return success on NULL pointer in mount.cifs.
-    * Make mount.cifs return codes match the return codes for /bin/mount.
 
+o   Steven Danneman <steven.danneman@isilon.com>
+    * Fix guest authentication in setups with "security = share" and "guest ok =
+      yes" when Winbind is running.
 
-o   Volker Lendecke <vl@samba.org>
-    * BUG 5691: Fig smbd panic on Solaris.
-    * Fix a potential NULL deref in found by the IBM Checker.
-    * Fix an uninitialized variable found by the IBM Checker.
-    * Fix an unlikely memleak found by the IBM Checker.
-    * Fix some missing error handlings.
-    * Add workaround for domain joins using a netbios name which is different
-      from the hostname.
-    * Fix a valgrind error in idmap_ad_sids_to_unixids().
-
-
-o   Derrell Lipman <derrell.lipman@unwireduniverse.com>
-    * BUG 5805: Don't close stdout when calling setup_logging multiple times.
 
+o   Steve French <smfrench@gmail.com>
+    * BUG 4640: Fix guest mounts in mount.cifs.
+    * Fix displaying the version string properly when no other parameters passed
+      in in mount.cifs.
 
-o   Tim Prouty <tim.prouty@isilon.com>
-    * Fix several build warnings.
 
+o   Björn Jacke <bj@sernet.de>
+    * Prefer gssapi header files from subdirectory.
 
-Commit Highlights:
-------------------
 
-o   Michael Adam <obnox@samba.org>
-    * BUG 5609: Remove configure option "--with-libdir" and add
-      "--with-modulesdir".
-    * Extend "net rpc vampire keytab" to support differential replication
-      and storing of kerberos keys.
-    * Rework internal logic of registry tdb code.
-    * Freeze autogenerated prototype headers (good bye "make proto").
+o   Volker Lendecke <vl@samba.org>
+    * BUG 6124: Fix the build on IRIX.
+    * BUG 6176: winbindd -n should disable the winbind idmap cache.
+    * Add a vfs_preopen module to hide fs latencies.
+    * Don't log NDR_PRINT_DEBUG at level 0, this always ends up in syslog.
+    * Fix a valgrind error / segfault in dns_register_smbd().
 
 
-o   Jeremy Allison <jra@samba.org>
-    * Add new "winbind reconnect delay" parameter.
-    * Make the change to smbcontrol for "all" to mean broadcast,
-      and "smbd" to mean the main smb daemon.
+o   Stefan Metzmacher <metze@samba.org>
+    * Fix build on SLES8.
+    * Decremented by 1 for ntcancel requests.
 
 
-o   Gerald W. Carter <jerry@samba.org>
-    * Add support for name aliasing in Winbind.
-    * Add the idmap/nss-info provider from Likewise Open.
-    * Allow an admin to define the "uid" attribute for a RFC2307
-      user object in AD to be the username alias.
-    * Add new idmap backend "adex" to support RFC2307 enabled AD forests.
+o   Tim Prouty <tprouty@samba.org>
+    * Fix creation of core files.
 
 
-o   Guenther Deschner <gd@samba.org>
-    * BUG 5710: Fix changing of machine account passwords.
-    * Add "net rpc vampire keytab" and "net rpc vampire ldif".
+o   Dan Sledz <dan.sledz@isilon.com>
+    * Fix first mapping of uids/gids in Winbind.
 
 
-o   Volker Lendecke <vl@samba.org>
-    * Rework of the Winbind idmap backend.
-    * Fix calculation of useable_space for trans2 and nttrans replies.
-    * Add mapping of generic bits when setting an NFSv4 ACL.
+o   Bo Yang <boyang@novell.com>
+    * Initialize the id_map status in idmap_ldap to avoid surprise.
+    * Fix initialization of idmap status.
 
 
 ######################################################################