ba2bf972e032527ef45ec76381714f8c9f3d7e2c
[ira/wip.git] / WHATSNEW.txt
1                    =================================
2                    Release Notes for Samba 3.2.0pre2
3                                Feb 29, 2008
4                    =================================
5
6 This is the second preview release of Samba 3.2.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/.
10
11 Please be aware that Samba is now distributed under the version 3
12 of the new GNU General Public License.  You may refer to the COPYING
13 file that accompanies these release notes for further licensing details.
14
15 Major enhancements in Samba 3.2.0 include:
16
17   File Serving:
18   o Use of IDL generated parsing layer for several DCE/RPC
19     interfaces.
20   o Removal of the 1024 byte limit on pathnames and 256 byte limit on
21     filename components to honor the MAX_PATH setting from the host OS.
22   o Introduction of a registry based configuration system.
23   o Improved CIFS Unix Extensions support.
24   o Experimental support for file serving clusters.
25   o Support for IPv6 connections.
26   o Support for storing alternate data streams in xattrs
27
28
29   Winbind and Active Directory Integration:
30   o Full support for Windows 2003 cross-forest, transitive trusts
31     and one-way domain trusts
32   o Support for userPrincipalName logons via pam_winbind and NSS
33     lookups.
34   o Support in pam_winbind for logging on using the userPrincipalName.
35   o Expansion of nested domain groups via NSS calls.
36   o Support for Active Directory LDAP Signing policy.
37   o New LGPL Winbind client library (libwbclient.so)
38
39
40   Users & Groups:
41   o New ldb backend for local group mapping tables
42   o Raised level of security defaults for authentication operations.
43
44
45   Documentation:
46   o Inclusion of an HTLM version of the 3rd edition of "Using Samba"
47     from O'Reilly Publishing.
48
49
50 Now Licensed under the GNU GPLv3
51 ================================
52
53 The Samba Team has adopted the Version 3 of the GNU General Public
54 License for the 3.2 and later releases.   The GPLv3 is the updated
55 version of the GPLv2 license under which Samba is currently
56 distributed. It has been updated to improve compatibility with other
57 licenses and to make it easier to adopt internationally, and is an
58 improved version of the license to better suit the needs of Free
59 Software in the 21st Century.
60
61 The original announcement is available on-line at
62
63     http://news.samba.org/announcements/samba_gplv3/
64
65
66 New Security Defaults for Authentication
67 ========================================
68
69 Support for LanMan passwords is now disabled in both client and server
70 applications.  Additionally, clear text authentication requests are
71 disabled by default in client utilities such as smbclient and all
72 libsmbclient based applications.  This will affect connection both
73 to and from hosts running DOS, Windows 9x/ME, and OS/2.  Please refer
74 to the "Changes" section for details on the exact parameters that were
75 updated.
76
77
78
79 Registry Configuration Backend
80 ==============================
81
82 Samba is now able to use a registry based configuration backed to
83 supplement smb.conf setting.  This feature may be enabled by setting
84 "config backend = registry" and "registry shares = yes" in the [global]
85 section of smb.conf and may be managed using the "net conf" command.
86
87 More information may be obtained from the smb.conf(5) and net(8) man
88 pages.
89
90
91 Removed Features
92 ================
93
94 Both the Python bindings and the libmsrpc shared library have been
95 removed from the tree due to lack of an official maintainer.
96
97
98
99 ######################################################################
100 Changes
101 #######
102
103 smb.conf changes
104 ----------------
105
106     Parameter Name                      Description     Default
107     --------------                      -----------     -------
108     client lanman auth                  Changed Default No
109     client ldap sasl wrapping           New             plain
110     client plaintext auth               Changed Default No
111     clustering                          New             No
112     cluster addresses                   New             ""
113     config backend                      New             file
114     ctdb socket                         New             ""
115     debug class                         New             No
116     lanman auth                         Changed Default No
117     ldap debug level                    New             0
118     ldap debug threshold                New             10
119     mangle map                          Removed
120     open files database hashsize        Removed
121     read bmpx                           Removed                         
122     registry shares                     New             No
123     winbind expand groups               New             1
124     winbind rpc only                    New             No
125
126
127 Changes since 3.2.0pre1:
128 -----------------------
129
130 o   Michael Adam <obnox@samba.org>
131     * Add library for access to the registry configuration data.
132     * BUG 5023: Separate NFS4 and POSIX ACL code in file access checks.
133     * BUG 4308: Fix Excel save operation ACL bug.
134     * Refactor and consolidate logic for retrieving the machine
135       trust password information.
136     * VFS API cleanup (remove redundant parameter).
137     * BUG 4801: Correctly implement LSA lookup levels for LookupNames.
138     * Add new option "debug class" to control printing of the debug class.
139       in debug headers.
140     * Enable building of the zfsacl and notify_fam vfs modules.
141     * BUG 5083: Fix memleak in solarisacl module.
142     * BUG 5063: Fix build on RHEL5.
143     * New smb.conf parameter "config backend = registry" to enable registry
144       only configuration.
145     * Move "net conf" functionality into a separate module libnet_conf.c
146     * Restructure registry code, eliminating the dynamic overlay.
147       Make use of reg_api instead of backend code in most places.
148     * Add support for intercepting LDAP libraries' debug output and print
149       it in Samba's debugging system.
150     * Libreplace fixes.
151     * Build fixes.
152     * Initial support for using subsystems as shared libraries.
153       Use talloc, tdb, and libnetapi as shared libraries internally.
154
155
156 o   Jeremy Allison <jra@samba.org>
157     * Added support for IPv6 client and server connections.
158     * Add in the recvfile entry to the VFS layer.
159     * Removal of pstring data type.
160     * Remove unused utilities: smbctool and rpctorture.
161     * Fix service principal detection to match Windows Vista
162       (based on work from Andreas Schneider).
163     * Additional work on the session data privacy for clients
164       implementing the Unix CIFS Extensions.
165
166
167 o   Kai Blin <kai@samba.org>
168     * Added support for an SMB_CONF_PATH environment variable
169       containing the path to smb.conf.
170     * Various fixes to ntlm_auth.
171     * make test now supports more extensive SPOOLSS testing using vlp.
172     * Correctly handle mixed-case hostnames in NTLMv2 authentication.
173
174
175 o   Gerald (Jerry) Carter <jerry@samba.org>
176     * Add Winbind client library.
177     * Decouple static linking between smbd and winbindd's client
178       interface.
179
180
181 o   Guenther Deschner <gd@samba.org>
182     * Enhance client and server remote registry access.
183     * Add client calls for remotely joining a computer to a domain
184       (including calls from "net dom" command).
185     * Add libnetapi.so library for joining domains including
186       sample GTK+ app.
187
188
189 o   Steve Langasek <vorlon@debian.org>
190     * Integrate 2 out of 3 --with-fhs patches from Debian packaging
191       for better adherence to the FHS standard.
192
193
194 o  Volker Lendecke <vl@samba.org>
195     * Add talloc_stackframe() and talloc_pool() features.
196     * Removal of pstring data type.
197     * Add generic a in-memory cache.
198     * Import the Linux red-black tree implementation.
199     * Remove large amount of global variables.
200     * Support for storing xattrs in tdb files
201     * Support for storing alternate data streams in xattrs
202     * Implement a generic in-memory cache based on rb-trees
203     * Add implicit temporary talloc contexts via talloc_stack()
204
205
206 o   Stefan Metzmacher <metze@samba.org>
207     * Fixes for libreplace.
208     * Pidl fixes.
209     * Build fixes.
210     * Add nss_wrapper support.
211     * Start and test winbindd by 'make test'
212     * Split up child_dispatch_table into domain, idmap and locator tables
213       in winbindd.
214     * Fix for a crash bug in pidl generated client code.
215       This could have happend with [in,out,unique] pointers
216       when the client sends a valid pointer, but the server
217       responds with a NULL pointer (as samba-3.0.26a does for some calls).
218     * Change NTSTATUS into enum ndr_err_code in librpc/ndr.
219     * Remove unused calls in the struct based winbindd protocol.
220     * Add --configfile option to wbinfo.
221     * Convert winbind_env_set(), winbind_on() and winbind_off() into macros.
222     * Return rids and other_sids arrays in WBFLAG_PAM_INFO3_TEXT mode.
223     * Implement wbcErrorString() and wbcAuthenticateUserEx().
224     * Convert auth_winbind to use wbcAuthenticateUserEx().
225
226
227 o   James Peach <jpeach@samba.org>
228     * Add support for DNS Service Discovery.  Based on work from
229       Rishi Srivatsavai <rishisv@gmail.com>.
230
231
232 o   Andreas Schneider <anschneider@suse.de>
233     * Don't restart winbind if a corrupted tdb is found during
234       initialization.
235
236
237 o   Karolin Seeger <ks@sernet.de>
238     * Improve error messages of net subcommands.
239     * Add 'net rap file user'.
240     * Change LDAP search filter to find machine accounts which
241       are not located in the user suffix.
242
243
244 o   David Shaw <dshaw@jabberwocky.com>
245     * BUG 5073: Allow "delete readonly = yes" to correctly override
246       deletion of a file.
247
248
249 o   Rishi Srivatsavai <rishisv@gmail.com>
250     * Register the smb service with mDNS if mDNS is supported.
251     * Add smbclient support for basic mDNS browsing.
252
253
254 o   Andrew Tridgell <tridge@samba.org>
255     * Fix padding between Winbind 32bit/64bit client library in
256       the request/response structures.
257     * Added a syncops VFS module for file systems which do not
258       guarantee meta-data operations are immediately committed to
259       disk in stable form.
260
261
262 o   Jelmer Vernooij <jelmer@samba.org>
263     * Additional portability support for building shared libraries.
264
265
266
267 Original 3.2.0pre1 commits:
268 ---------------------------
269 o   Michael Adam <obnox@samba.org>
270     * Unified POSIX ACL detection including support for FreeBSD and
271       HP-UX.
272     * Performance improvements for Winbind's lookup functions (names,
273       SIDs, and group membership) when joined to an AD domain.
274     * Winbind cache validation support.
275     * Store domain trust passwords for Samba domain controller's in
276       the domain's passdb backend.
277     * Merged \winreg server code from the SAMBA_3_2 development branch.
278     * Fixes for libreplace.
279     * Implement new registry configuration backend.
280
281
282 o   Jeremy Allison <jra@samba.org>
283     * Add support for file system objectIDs.
284     * Winbind cache validation support.
285     * Add in the UNIX capability for 24-bit readX.
286     * Improve Delete-on-Close semantics.
287     * Removal of static file and path name buffers in SMB file serving
288       code.
289
290
291 o   Danilo Almeida <dalmeida@centeris.com>
292     * Move the machine account to the OU specified when running "net
293       ads join".
294
295
296 o   Andrew Bartlett <abartlet@samba.org>
297     * Tighten authentication protocol defaults in client tools and
298       servers.
299
300
301 o   Gerald (Jerry) Carter <jerry@samba.org>
302     * Implement support for one-way trusts and two-way cross-forest
303       transitive trust in winbindd.
304     * Fixes for Winbind's offline/disconnected logon support when
305       using remote idmap backends.
306     * Fix LookupNames and LookupSids to use the same resolution
307       heuristics as Windows XP.
308     * Fix lockups in Winbind when running nscd.
309     * UPN logon support in pam_winbind.
310     * Add support for GNU linker scripts when build shared libraries
311       (based on work by Julien Cristau <jcristau@debian.org> and James
312       Peach).
313
314
315 o   Guenther Deschner <gd@samba.org>
316     * Additional support for decoding and downloading group policy
317       objects from Active Directory.
318     * Improvements to "net ads keytab" command.
319     * Fixes for linking against Heimdal Kerberos client libs.
320     * Support LDAP range retrieval searches.
321     * Fixes for failure to refresh user ticket caches in Winbind.
322     * UPN logon support in pam_winbind.
323     * Add KDC locator plugin for MIT kerberos 1.6 or later.
324
325
326 o   Steve Langasek <vorlon@debian.org>
327     * Allow SIGTERM to cause nmbd to exit while awaiting a interface
328       to come up.
329
330
331 o   Volker Lendecke <vl@samba.org>
332     * Merge experimental cluster support patches from the ctdb branch.
333     * Add tdb storage abstraction for ctdb.
334     * Use IDL for internal message passing system.
335     * Add client support for the SamLogonEx() authentication request.
336     * Implement RPC proxy stubs in the Samba server code to allow
337       replacing implementation functions one by one.
338     * Remove static incoming and outgoing buffers from core server SMB
339       packet processing code.
340     * Add "net sam rights" command.
341
342
343 o   Steve French <sfrench@samba.org>
344     * Fixes for mount.cfs Linux utility.
345
346
347 o   Stefan Metzmacher <metze@samba.org>
348     * Fixes for libreplace.
349     * Add support for LDAP digital signing policy.
350     * Experimental clustered file system support.
351
352
353 o   Lars Mueller <lars@samba.org>
354     * Makefile and build fixes.
355     * Add pam_pwd_expire for pam_winbind (original patch from Andreas
356       Schneider).
357
358
359 o   James Peach <jpeach@apple.com>
360     * Fixes for setgroups() and *BSD and Darwin.
361     * Support membership of >16 groups on Darwin.
362
363
364 o   Jiri Sasek <Jiri.Sasek@Sun.COM>
365     * Added vfs_zfsacl module.
366
367
368 o   Karolin Seeger <ks@sernet.de>
369     * Add deletelocalgroup and unmapunixgroup subcommand to "net sam".
370     * Cleanup internal passdb functions.
371
372
373 o   Simo Sorce <idra@samba.org>
374     * Fixes for IDmap and Passdb backends.
375
376
377 o   Andrew Tridgell <tridge@samba.org>
378     * Port ldb from the Samba 4 tree and add ldb group mapping plugin.
379     * Move several file serving related tdb files to use the dbwrap
380       API internally.
381     * Cleanup the GPFS VFS plugin.
382     * Experimental clustered file system support.
383
384
385 o   Jelmer Vernooij <jelmer@samba.org>
386     * Implement NDR basic to support utilizing IDL files from Samba 4
387       tree for general DCE/RPC parsing stubs.
388
389
390
391 ######################################################################
392 Reporting bugs & Development Discussion
393 #######################################
394
395 Please discuss this release on the samba-technical mailing list or by
396 joining the #samba-technical IRC channel on irc.freenode.net.
397
398 If you do report problems then please try to send high quality
399 feedback. If you don't provide vital information to help us track down
400 the problem then you will probably be ignored.  All bug reports should
401 be filed under the Samba 3.2 product in the project's Bugzilla
402 database (https://bugzilla.samba.org/).
403
404
405 ======================================================================
406 == Our Code, Our Bugs, Our Responsibility.
407 == The Samba Team
408 ======================================================================
409