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