WHATSNEW: Update changes since 3.3.0rc1.
[Samba.git] / WHATSNEW.txt
blobb5aac3ff654c10e512cb3ec546d1ac08e3be5b4e
1                    ================================
2                    Release Notes for Samba 3.3.0rc2
3                           December, 15 2008
4                    ================================
6 This is the second release candidate of Samba 3.3.0.  This is *not*
7 intended for production environments and is designed for testing
8 purposes only.  Please report any defects via the Samba bug reporting
9 system at https://bugzilla.samba.org/.
11 Major enhancements in Samba 3.3.0 include:
13  Configuration/installation:
14  o Splitting of library directory into library directory and separate
15    modules directory.
17  File Serving:
18  o Extended Cluster support.
20  Winbind:
21  o Simplified idmap configuration.
22  o New idmap backends "adex" and "hash".
23  o Added new parameter "winbind reconnect delay".
24  o Added support for user and group aliasing.
25  o Added support for multiple domains to idmap_ad.
27  Administrative tools:
28  o The destination "all" of smbcontrol does now affect all running
29    daemons including nmbd and winbindd.
30  o New 'net rpc vampire keytab' and 'net rpc vampire ldif' commands.
31  o The 'net' utility can now use kerberos for joining and authentication.
32  o The 'wbinfo' utility can now add, modify and remove identity mapping entries.
34  Libraries:
35  o NetApi library implements various new calls for User- and Group
36    Account Management.
39 Configure changes
40 =================
42 The configure option "--with-libdir" has been removed. The library
43 directory can still be specified by using the existing "--libdir" option.
44 A new option "--with-modulesdir" has been added to allow the specification
45 of a separate directory for the shared modules.
48 Winbind idmap backend changes
49 =============================
51 The idmap configuration has changed with version 3.3 to something that
52 allows a smoother upgrade path from pre-3.0.25 configurations that use
53 "idmap backend". The reason for this change is that to many, also to Samba
54 developers, the 3.0.25 style configuration with "idmap config" turned out
55 to be very complex. Version 3.3 no longer deprecates the "idmap backend"
56 parameter, instead with "idmap backend" the default idmap backend is
57 specified.
59 Accordingly, the "idmap config <domain> : default = yes" setting is no
60 longer being looked at.
62 The alloc backend defaults to the default backend, which should be able to
63 allocate IDs. In the default distribution the tdb and ldap backends can
64 allocate, the ad and rid backends can not. The idmap alloc range is now
65 being set with the "old" parameters "idmap uid" and "idmap gid".
67 The "idmap domains" parameter has been removed.
70 winbind reconnect delay
71 =======================
73 This is a new parameter which specifies the number of seconds the Winbind
74 daemon will wait between attempts to contact a Domain controller for a domain
75 that is determined to be down or not contactable.
78 Winbind's Name Aliasing
79 =======================
81 Name aliasing in Winbind is a feature that allows an administrator to
82 map a fully qualified user or group name from a Windows domain to a
83 convenient short name for Unix access.  This is similar to the username
84 map functionality supported by smbd but is primary intended for
85 clients and servers making use of Winbind's PAM and NSS libraries.
87 For example, the user "DOMAIN\fred" has been mapped to the Unix name
88 "freddie".
90    $ getent passwd "DOMAIN\fred"
91    freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
93    $ getent passwd freddie
94    freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
96 The name aliasing support is provided by individual nss_info plugins.
97 For example, the new "adex" plugin reads the uid attribute from Active
98 Directory to make a short login name to the fully qualified name.
99 While the new "hash" module utilizes a local file to map "short_name
100 = QUALIFIED\name".  Both user and group name mapping is supported.
101 Please refer to the "winbind nss info" option in smb.conf(5) and
102 to individual plugin man pages for further details.
105 idmap_hash
106 ==========
108 The idmap_hash plugin provides similar support as the idmap_rid
109 module.  However, uids and gids are generated from the full domain
110 SID using a hashing algorithm that maps the lower 19 bits from the user
111 or group RID to bits 0 - 19 in the Unix id and hashes 96 bits from
112 the domain SID to bits 20 - 30 in the Unix id.  The result is a 31 bit
113 uid or gid that is consistent across machines and provides support for
114 trusted domains.
116 Please refer to the idmap_hash(8) man page for more details.
119 idmap_adex
120 ==========
122 The adex idmap/nss_info plugin is an adaptation of the Likewise
123 Enterprise plugin with support for OU based cells removed
124 (since the Windows pieces to manage the cells are not available).
126 This plugin supports
128       * The RFC2307 schema for users and groups.
129       * Connections to trusted domains
130       * Global catalog searches
131       * Cross forest trusts
132       * User and group aliases
134 Prerequisite: Add the following attributes to the Partial Attribute
135 Set in global catalog:
137       * uidNumber
138       * uid
139       * gidNumber
141 A basic config using the current trunk code would look like:
143 [global]
144         idmap backend = adex
145         idmap uid = 10000 - 29999
146         idmap gid = 10000 - 29999
147         winbind nss info = adex
149         winbind normalize names = yes
150         winbind refresh tickets = yes
151         template homedir = /home/%D/%U
152         template shell = /bin/bash
154 Please refer to the idmap_adex(8) man page for more details.
157 ######################################################################
158 Changes
159 #######
161 smb.conf changes
162 ----------------
164     Parameter Name                      Description     Default
165     --------------                      -----------     -------
166     cups connection timeout             New             30
167     idmap domains                       Removed
168     init logon delayed hosts            New             ""
169     init logon delay                    New             100
170     winbind reconnect delay             New             30
173 Changes since 3.3.0rc1:
174 ------------------------
177 o   Jeremy Allison <jra@samba.org>
178     * BUG 1254: Fix "write list" in setups using "security = share".
179     * BUG 5937: Fix filenames with "*" char hiding other files.
180     * BUG 5953: Fix segfaults in smbclient.
181     * Fix usrmgr opening a user object as non-root.
184 o   Michael Adam <obnox@samba.org>
185     * BUG 3661: Add support for trusted domains to idmap_ad.
186     * Fix default backend handling for ad backends.
187     * Fix potential segfault in vfs_tsmsm.
188     * Fix several RHEL CTDB packaging issues.
191 o   Günther Deschner <gd@samba.org>
192     * BUG 5957: Do not abort rename process on valid rename script.
193     * Fix various potential memleaks in samr_SetUserInfo.
194     * Fix access bits in netapi.
197 o   Steve French <stevef@smf-t60p.smfdom>
198     * BUG 5934: Use USER environment in mount.cifs when no user is specified.
199     * variable
202 o   SATOH Fumiyasu <fumiyas@osstech.co.jp>
203     * BUG 5688: LPQ process is orphaned if socket address parameter is invalid.
204     * Vars for signals must be volatile sig_atomic_t.
207 o   Henning Henkel <henning.henkel@fh-furtwangen.de>
208     * BUG 5929: Fix build of vfs_prealloc with option --with-cluster-support and
209       GPFS.
212 o   Tomasz Krasuski <kr0tki@poczta.onet.pl>
213     * BUG 5928: Fix 'testparm --version'.
216 o   Jeff Layton <jlayton@redhat.com>
217     * Allow mounts to ipv6 capable servers in mount.cifs.
220 o   Volker Lendecke <vl@samba.org>
221     * Fix crash bug when freeing a non-malloc'ed buffer if the client sends a
222       non-encrypted packet with the crypto state set.
223     * Fix error code when smbclient puts a file over an existing directory.
224     * Pass the get_real_filename operation through the VFS.
227 o   Stefan Metzmacher <metze@samba.org>
228     * BUG 5749: Re-set acctflags while joining.
229     * Fix several issues concerning Alternate Data Streams.
230     * Fix valgrind bug lp_parm_const_string().
231     * Fix setting of trust passwords using 'net rpc trustdom add'.
232     * Correctly detect if the current dc is the closest one.
235 o   Tim Prouty <tprouty@samba.org>
236     * Fix a delete on close divergence from windows.
239 o   Dan Sledz <dsledz@isilon.com>
240     * Fix logging to syslog.
243 o   Yasuma Takeda <yasuma@osstech.co.jp>
244     * BUG 5944: Fix starting of nmbd with "socket address" set to "".
247 o   Bo Yang <boyang@novell.com>
248     * Fix script installmo.sh when no .po file exists.
251 ######################################################################
252 Reporting bugs & Development Discussion
253 #######################################
255 Please discuss this release on the samba-technical mailing list or by
256 joining the #samba-technical IRC channel on irc.freenode.net.
258 If you do report problems then please try to send high quality
259 feedback. If you don't provide vital information to help us track down
260 the problem then you will probably be ignored.  All bug reports should
261 be filed under the Samba 3.3 product in the project's Bugzilla
262 database (https://bugzilla.samba.org/).
265 ======================================================================
266 == Our Code, Our Bugs, Our Responsibility.
267 == The Samba Team
268 ======================================================================