man pages: Add documentation for new parameter 'ldap connection timeout'.
[samba.git] / WHATSNEW.txt
1                    =================================
2                    Release Notes for Samba 3.2.0rc2
3                              June 10, 2008
4                    =================================
5
6 This is the second release candidate 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   o Support for Vista clients authenticating via Kerberos.
29
30   Winbind and Active Directory Integration:
31   o Full support for Windows 2003 cross-forest, transitive trusts
32     and one-way domain trusts.
33   o Support for userPrincipalName logons via pam_winbind and NSS
34     lookups.
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   o Support for establishing interdomain trust relationships with
39     Windows 2008.
40
41   Joining:
42   o New NetApi library for domain join related queries (libnetapi.so)
43     and example GTK+ Domain join gui.
44   o New client and server support for remotely joining and unjoining
45     Domains.
46   o Support for joining into Windows 2008 domains.
47
48   Users & Groups:
49   o New ldb backend for local group mapping tables
50   o Raised level of security defaults for authentication operations.
51   o New NetApi library for user account related queries.
52
53
54   Documentation:
55   o Inclusion of an HTML version of the 3rd edition of "Using Samba"
56     from O'Reilly Publishing.
57
58
59 Now Licensed under the GNU GPLv3
60 ================================
61
62 The Samba Team has adopted the Version 3 of the GNU General Public
63 License for the 3.2 and later releases.   The GPLv3 is the updated
64 version of the GPLv2 license under which Samba is currently
65 distributed. It has been updated to improve compatibility with other
66 licenses and to make it easier to adopt internationally, and is an
67 improved version of the license to better suit the needs of Free
68 Software in the 21st Century.
69
70 The original announcement is available on-line at
71
72     http://news.samba.org/announcements/samba_gplv3/
73
74
75 New Security Defaults for Authentication
76 ========================================
77
78 Support for LanMan passwords is now disabled in both client and server
79 applications.  Additionally, clear text authentication requests are
80 disabled by default in client utilities such as smbclient and all
81 libsmbclient based applications.  This will affect connection both
82 to and from hosts running DOS, Windows 9x/ME, and OS/2.  Please refer
83 to the "Changes" section for details on the exact parameters that were
84 updated.
85
86
87 Registry Configuration Backend
88 ==============================
89
90 Samba is now able to use a registry based configuration backed to
91 supplement smb.conf settings.  This feature may be enabled by setting
92 "config backend = registry" in the [global] section of smb.conf for a
93 registry only configuration, or by specifying "include = registry" to
94 include global options from registry for a mixed setup.
95
96 The new parameter "registry shares = yes" in the [global] section of
97 smb.conf can be used to activate share definitions from registry.
98 These shares are loaded on demand by the server. Registry shares are
99 automatically activated by the global registry options above.
100
101 The configuration stored in registry can be conveniently managed using
102 the "net conf" command.
103
104 More information may be obtained from the smb.conf(5) and net(8) man
105 pages.
106
107
108 Removed Features
109 ================
110
111 Both the Python bindings and the libmsrpc shared library have been
112 removed from the tree due to lack of an official maintainer.
113
114 As smbfs is no longer supported in current kernel versions, smbmount has
115 been removed in this Samba version. Please use cifs (mount.cifs) instead.
116 See examples/scripts/mount/mount.smbfs as an example for a wrapper which
117 calls mount.cifs instead of smbmount/mount.smbfs.
118
119
120 Modified API for libsmbclient
121 ==============================================================================
122
123 Maintaining ABI compatibility for libsmbclient has become increasingly
124 difficult to accomplish, while also keeping the code organization such that it
125 is easily readable.  Towards the goal of maintaining ABI compatibility and
126 also keeping the code easy to maintain and enhance, the API has been enhanced.
127 In particular, the fields in the SMBCCTX context structure are no longer
128 intended to be read/write by the user, and are marked as deprecated.  An
129 application that previously accessed the members of the SMBCCTX context
130 structure will now encounter warnings if recompiled.  This is intentional, to
131 encourage implementation of the small changes required for the new interface.
132 The number of changes is expected to be quite small for the vast majority of
133 applications, and no changes need be made for many applications.  The changes
134 required for KDE (konqueror) to conform to the new interface, for example, are
135 only four lines in only one file.
136
137 Instead of the application manually changing or reading values in the context
138 structure, there are now setter and getter functions for each configurable
139 member in that structure.  Similarly, the smbc_option_get() and
140 smbc_option_set() functions are deprecated in favor of the setter/getter
141 interface.  The setters and getters are all documented in libsmbclient.h
142 under these comment blocks:
143
144   Getters and setters for CONFIGURATION
145   Getters and setters for OPTIONS
146   Getters and setters for FUNCTIONS
147   Callable functions for files
148   Callable functions for directories
149   Callable functions applicable to both files and directories
150
151 Example changes that may be required to eliminate "deprecated" warnings:
152
153   /* Set the debug level */
154   context->debug = 99;
155 changes to:
156   smbc_setDebug(context, 99);
157
158   /* Specify the authentication callback function */
159   context->callbacks.auth_fn = auth_smbc_get_data;
160 changes to:
161   smbc_setFunctionAuthData(context, auth_smbc_get_data);
162
163   /* Specify the new-style authentication callback with context parameter */
164   smbc_option_set("auth_function", auth_smbc_get_data_with_ctx);
165 changes to:
166   smbc_setFunctionAuthDataWithContext(context, auth_smbc_get_data_with_ctx);
167
168   /* Set kerberos flags */
169   context->flags = (SMB_CTX_FLAG_USE_KERBEROS |
170                     SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS);
171 changes to:
172   smbc_setOptionUseKerberos(context, 1);
173   smbc_setOptionFallbackAfterKerberos(context, 1);
174
175
176
177
178 ######################################################################
179 Changes
180 #######
181
182 smb.conf changes
183 ----------------
184
185     Parameter Name                      Description     Default
186     --------------                      -----------     -------
187     administrative share                New             No
188     client lanman auth                  Changed Default No
189     client ldap sasl wrapping           New             plain
190     client plaintext auth               Changed Default No
191     clustering                          New             No
192     cluster addresses                   New             ""
193     config backend                      New             file
194     ctdbd socket                        New             ""
195     debug class                         New             No
196     lanman auth                         Changed Default No
197     ldap debug level                    New             0
198     ldap debug threshold                New             10
199     mangled map                         Removed
200     min receive file size               New             0
201     open files database hashsize        Removed
202     read bmpx                           Removed
203     registry shares                     New             No
204     smb encrypt                         New             Auto
205     winbind expand groups               New             1
206     winbind rpc only                    New             No
207
208     New special meaning of "include = registry".
209
210
211 Changes since 3.2.0rc1:
212 -----------------------
213
214
215 o   Jeremy Allison <jra@samba.org>
216     * BUG 5504: Fix behaviour of winbindd children receiving a SIGTERM.
217     * Security fix for CVE-2008-1105.
218     * Fix valgrind bug in debug statement.
219     * Make sure we take account of the large read/write SMB headers as
220       well as the buffer space when allocating cli buffers for large
221       read/write.
222
223
224 o   Günther Deschner <gd@samba.org>
225     * BUG 5285: Fix libcap header mismatch.
226
227
228 o   Volker Lendecke <vl@samba.org>
229     * BUG 5502: Fix security=server.
230
231
232 o   Marc VanHeyningen <marc.vanheyningen@isilon.com>
233     * Fix memory leak.
234
235
236 o   Andreas Schneider <anschneider@suse.de>
237     * BUG 5515: Fix empty input fields in SWAT.
238     * BUG 5516: Fix saving of the config file in SWAT.
239
240
241 o   Bo Yang <boyang@novell.com>
242     * Fix winbindd trusted domain child not keeping primary domain
243       online status up to date.
244
245
246 o   Chere Zhou <chere.zhou@isilon.com>
247     * Fix memory leaks. 
248
249
250 Changes since 3.2.0pre3:
251 -----------------------
252
253
254 o   Michael Adam <obnox@samba.org>
255     * Move the posix pending close functionality down into the VFS layer.
256     * Fix activation of registry globals in loadparm.
257
258
259 o   Jeremy Allison <jra@samba.org>
260     * BUG 5452: Fix smbclient put.
261     * BUG 5095: Fix Manage Documents privilege.
262     * BUG 5434: Ensure the loaded password doesn't contain the '\n' at the end.
263     * BUG 5456: Fix missing echo if we ^C at the prompt. 
264     * BUG 5460: Fix DFS referrals.
265     * BUG 5464: Fix timeout in winbindd.
266     * Fix returning a directory value for a QPATHINFO on a msdfs link
267       with a non-dfs path.
268
269
270 o   Alexander Bokovoy <ab@samba.org>
271     * Use more error-prone form of testing dm_destroy_session() return code.
272
273
274 o   Günther Deschner <gd@samba.org>
275     * BUG 5453: Fix winbindd and smbd crash when dsgetdcname is used.
276     * BUG 5465: Fix joining with createcomputer=ou1/ou2/ou3.
277     * BUG 5461: Fix issue with Citrix on Samba DCs with more than 900 groups.
278     * Fix wins null pointer crash in nss_wins module.
279     * Fix lm session key length in _netr_LogonSamLogon.
280     * Add -f switch for DsGetDCName() example and be more verbose on output.
281
282
283 o   Gerald (Jerry) Carter <jerry@samba.org>
284     * Prevent Winbind cycle in children list when reaping dead child processes.
285     * BUG 5107: Fix handling of large DNS replies on AIX and Solaris.
286     * BUG 5429: Clarify log msgs re: failure to create
287       BUILTIN\{Administrators,Users}
288     * Fix the DNS Update option of "net ads join".
289
290
291 o   Eric Cronin <ecronin@gizmolabs.org>
292     * BUG 5184: Add Missing HAVE_UPDWTMPX check before using updwtmpx().
293
294
295 o   Steven Danneman <sdanneman@sd-ubuntu.(none)>
296     * Bug 5419: Fix memory leak in ads_do_search_all_args() when enumerating 
297       1000s of entries 
298
299
300 o   Holger Hetterich <hhetter@novell.com>
301     * Recognize and allow longer UA keys in winbindd_cache.
302
303
304 o   Björn Jacke <bj@sernet.de>
305     * Fix compile warnings.
306     * Increase log level for failed setsockopt call.
307
308
309 o   Volker Lendecke <vl@samba.org>
310     * BUG 5420: Fix build on IRIX.
311     * BUG 5398: Fix compiler warning.
312     * BUG 5399: Fix compiler warning.
313     * BUG 5400: Fix compiler warning.
314     * BUG 5436: Fix signing problem in the client with transs requests.
315     * Fix a valgrind bug in the new [ug]id2sid cache.
316     * Fix Coverity IDs 565 and 222.
317     * Fix dfs_Enum: In form_junctions, correctly check for malloc failure.
318
319
320 o   Stefan Metzmacher <metze@samba.org>
321     * BUG 5443: Fix build on HP-UX.
322     * Add support for symbol versioning in shared libraries (can be
323       disabled with --disable-sysmbol-versioning).
324     * Add new function wbcLibraryDetails() to libwbclient.
325
326
327 o   Tim Prouty <tim.prouty@isilon.com>
328     * Cleanup size_t return values in convert_string_allocate.
329
330
331 o   Mike Sweet <msweet@apple.com>
332     * Fix Kerberos support for CUPS 1.3 in smbspool.
333
334
335 o   Martin Zielinski <mz@seh.de>
336     * Fix printing with Vista.
337     * Fix deletion of files when they're in use by other drivers.
338
339
340 Changes since 3.2.0pre2:
341 -----------------------
342
343
344 o   Michael Adam <obnox@samba.org>
345     * Fix session setup with security = share.
346     * Fix segfault in testparm.
347     * Fix several Makefile issues.
348     * Fix build of bin/net on Solaris.
349     * Reformat the parm table of loadparm to use named initializers.
350     * Fix %I macro expansion for IPv4 mapped IPv6 addresses.
351     * Convert registry.tdb to use dbwrap and fix memleaks.
352     * Several make test fixes and improvements.
353     * Several libreplace extensions and fixes (portet from v4-0-test).
354     * Rename libnet_conf to libsmbconf and introduce backend abstraction layer.
355     * Add text backend to libsmbconf, based on params.c.
356     * Fix handling of includes in registry libsmbconf backend.
357     * Fix net conf import by reading from text backend.
358     * Add a "net registry" command to locally access the registry.
359     * Add getvalue subcommand to "net rpc registry".
360     * Add testsuites for libsmbconf and "net registry".
361     * Fix Coverity IDs 517, 536, 545.
362     * Remove unneeded REGISTRY_HOOKS layer from reghook cache
363       to allow plugging one backend to multiple keys more easily.
364     * Add smbconf_init dispatcher taking source strings like "backend:path"
365     * Fix handling of dangling parameters (without share) in libsmbconf.
366     * Introduce special meaning of "include = registry" to complement
367       the registry-only configuration of "config backend = registry".
368     * Enhance error propagation by making several registry functions
369       return WERROR.
370     * Fix loading of registry shares in smbd by fixing the token.
371     * Fix a segfault in tdb_wrap_log().
372
373
374 o   Jeremy Allison <jra@samba.org>
375     * BUG 5311: Fix IPv6 issue with hosts allow/deny settings.
376     * BUG 5372: Fix client timeouts in large CUPS installations.
377     * Fix problem with nmbd not waiting until interfaces come up.
378     * Fix S3 to pass the test_raw_oplock_exclusive3 test.
379     * Fix MSDFS bug breaking MS clients in some cases by ensuring 
380       the target host is ourselves.
381     * Rewrite the wrap checks to deal with gcc 4.x optimisations.
382
383
384 o   Kai Blin <kai@samba.org>
385     * BUG 4235: Prevent ntlm_auth from sending BH responses without a message.
386     * Fix one BH message.
387
388
389 o   Gerald (Jerry) Carter <jerry@samba.org>
390     * Fix libtdb some to move back towards allowing out of tree builds.
391     * Ignore port when pulling IP addr from struct sockaddr_storage..
392
393
394 o   Guenther Deschner <gd@samba.org>
395     * Fix build of pam_smbpass.
396     * Fix lp_load with an empty registry and "config backend = registry".
397     * Fix build targets for bin/net.
398     * Fix _dssetup_DsRoleGetPrimaryDomainInformation().
399     * Fix the build of cifs.spnego.
400     * Migration of the SRVSVC client and server DCE/RPC code to IDL
401       based structures and autogenerated code
402     * Fix Kerberos session setup with Vista SP1 (ignore PAC type 12)
403     * Fix support for vampire of lockout policies and
404       for storing dialin/terminal server settings.
405     * Fix remote join/unjoin server implementation.
406     * BUG 5328: Fix netlogon credential chain with Windows 2008
407       (this also fixes joining Windows 2008 with rpc methods).
408     * Various fixes for establishing and validating interdomain trust
409       relationships with Windows 2008.
410     * Use IDL for storing domain controller information in dsgetdcname.
411     * Re-arranged internal structure of libnetapi.
412     * Add support for domain\dcname syntax in libnetjoin.
413     * Add support for browsing/joining OUs in netdomjoin-gui.
414     * Add various new calls to libnetapi.
415
416
417 o   Björn Jacke <bj@sernet.de>
418     * Add AC_TRY_RUN_STRICT support for Sun Studio compiler.
419
420
421 o   Volker Lendecke <vl@samba.org>
422     * Add support for async SMB requests.
423     * Add transactions to the dbwrap API.
424     * Add "net idmap aclmapset".
425     * Change default bufsize to 512k.
426     * Fix Coverity IDs 473, 481, 506, 507, 525, 526, 527, 528, 529, 530, 537,
427       538, 547, 548, 551, 552, 553, 554, 555, 557, 558, 559, 563, 564, 567.
428       ... and half a ton more
429     * Fix some warnings in the tsmsm module.
430     * Fix warnings.
431     * BUG 4901: Fix "ldap passwd sync = only".
432     * BUG 5334: Fix download of empty files using smbclient.
433     * BUG 5307: Fix notify changes.
434     * BUG 5317: Fix debug output in domain_client_validate.
435     * BUG 5338: Fix format string issue in rpcclient.
436     * Convert account_pol.tdb and share_info.tdb to dbwrap.
437     * Protect group_mapping.tdb ops with transactions.
438     * BUG 5366: "passwd program" should work on Solaris 10 again now.
439     * A level 25 setuserinfo does change the pwdlastset, fixes XP joins.
440     * BUG 5350: A Samba DC trusting NT4 should do an anon session setup.
441     * BUG 5375: Fix a segfault with "security=share" and [in]valid users.
442     * Fix printing from DOS clients -- introduced by inbuf/outbuf rewrite.
443     * Fix wbinfo -a trusted\\user%password on a Samba DC with trusts.
444     * BUG 5341: Fix async smbclient get command on Solaris.
445     * Make winbind use NetSamLogonEx when possible.
446     * Merge fixes in the 3-0-ctdb cluster code.
447     * Fix a segfault in snprintf replacement code.
448     * Fix a regression for wbinfo --group-info if winbind separator is set
449
450
451 o   Derrell Lipman <derrell@samba.org>
452     * Check for NULL pointers before dereferencing them.
453     * Fix use of AuthDataWithContext capability.
454
455
456 o   Stefan Metzmacher <metze@samba.org>
457     * Add dbwrap_tdb2 backend, useful for cluster setups.
458     * Add more functions to libwbclient:
459       - wbcGetGroups()
460       - wbcInterfaceDetails()
461       - wbcListUsers()
462       - wbcListGroups()
463       - wbcLookupUserSids()
464       - wbcSetUidMapping()
465       - wbcSetGidMapping()
466       - wbcSetUidHwm()
467       - wbcSetGidHwm()
468       - wbcResolveWinsByName()
469       - wbcResolveWinsByIP()
470       - wbcCheckTrustCredentials()
471     * Let wbinfo use libwbclient where possible.
472     * Let net use only libwbclient to access winbindd.
473     * Make socket wrapper pcap support more portable.
474     * Some libreplace backports from v4-0-test.
475     * Store the write time in the locking.tdb,
476       so that smbd passes the BASE-DELAYWRITE test.
477     * Run RAW-SEARCH and BASE-DELAYWRITE by 'make test'.
478     * Let each process use its own connection to ctdb
479       in cluster mode.
480     * Add a reinit_after_fork() helper function to correct
481       reinitialize the same things in all cases.
482     * Fix a chicken and egg problem with "include = registry".
483
484
485 o   Karolin Seeger <kseeger@samba.org>
486     * Fix usage message for "net idmap dump".
487
488
489 o   Andrew Tridgell <tridge@samba.org>
490     * Suppress superfluous message.
491
492
493 o   Marc VanHeyningen <marc.vanheyningen@isilon.com>
494     * Coverity fixes.
495
496
497 Changes since 3.2.0pre1:
498 -----------------------
499
500 o   Michael Adam <obnox@samba.org>
501     * Add library for access to the registry configuration data.
502     * BUG 5023: Separate NFS4 and POSIX ACL code in file access checks.
503     * BUG 4308: Fix Excel save operation ACL bug.
504     * Refactor and consolidate logic for retrieving the machine
505       trust password information.
506     * VFS API cleanup (remove redundant parameter).
507     * BUG 4801: Correctly implement LSA lookup levels for LookupNames.
508     * Add new option "debug class" to control printing of the debug class.
509       in debug headers.
510     * Enable building of the zfsacl and notify_fam vfs modules.
511     * BUG 5083: Fix memleak in solarisacl module.
512     * BUG 5063: Fix build on RHEL5.
513     * New smb.conf parameter "config backend = registry" to enable registry
514       only configuration.
515     * Move "net conf" functionality into a separate module libnet_conf.c
516     * Restructure registry code, eliminating the dynamic overlay.
517       Make use of reg_api instead of backend code in most places.
518     * Add support for intercepting LDAP libraries' debug output and print
519       it in Samba's debugging system.
520     * Libreplace fixes.
521     * Build fixes.
522     * Initial support for using subsystems as shared libraries.
523       Use talloc, tdb, and libnetapi as shared libraries internally.
524
525
526 o   Jeremy Allison <jra@samba.org>
527     * Added support for IPv6 client and server connections.
528     * Add in the recvfile entry to the VFS layer.
529     * Removal of pstring data type.
530     * Remove unused utilities: smbctool and rpctorture.
531     * Fix service principal detection to match Windows Vista
532       (based on work from Andreas Schneider).
533     * Encrypted SMB transport in client tools and libraries, and server.
534
535
536 o   Kai Blin <kai@samba.org>
537     * Added support for an SMB_CONF_PATH environment variable
538       containing the path to smb.conf.
539     * Various fixes to ntlm_auth.
540     * make test now supports more extensive SPOOLSS testing using vlp.
541     * Correctly handle mixed-case hostnames in NTLMv2 authentication.
542
543
544 o   Gerald (Jerry) Carter <jerry@samba.org>
545     * Add Winbind client library.
546     * Decouple static linking between smbd and winbindd's client
547       interface.
548
549
550 o   Guenther Deschner <gd@samba.org>
551     * Enhance client and server remote registry access.
552     * Add client calls for remotely joining a computer to a domain
553       (including calls from "net dom" command).
554     * Add libnetapi.so library for joining domains including
555       sample GTK+ app.
556     * Fixes for Vista SP1 Kerberos authdata handling to only pickup
557       the PAC.
558     * Various error code and error message fixes.
559     * Add initial draft of libnetconf to allow programmatic
560       configuration changes.
561     * Add libnet_join internal library for programmatically joining
562       and unjoining Domains.
563     * Add various fixes and new calls to libnetapi.so library.
564     * Various fixes for DsGetDcName and conversion to IDL based
565       structures.
566     * Fixes for pidl to correctly generate WERROR based client calls.
567     * Fixes for pidl to generate output that complies to coding
568       conventions.
569     * Various IDL fixes.
570     * Add ads_get_joinable_ous() to libads to get list of joinable ous.
571     * Add get_logon_hours_from_pdb() to comply with new IDL based
572       structures.
573     * Add debugging capabilities to dump AD connections to libads
574       (using ndr_print).
575     * Add "dump-domain-list" command for smbcontrol to retrieve better
576       debugging information out of winbindd.
577     * Migration of the entire client and server DCE/RPC code to IDL
578       based structures and autogenerated code for DSSETUP, LSA, SAMR
579       and NETLOGON.
580     * Started migration of client and server DCE/RPC code to IDL based
581       structures and autogenerated code for NTSSVC, SVCCTL and
582       EVENTLOG.
583     * Use IDL and autogenerated code for samlogoncache and Kerberos
584       PAC handling.
585     * Various fixes and cleanup of Kerberos PAC handling.
586     * Fix segfault in _srv_net_file_enum.
587     * Conversion of client join and unjoin code to libnet_join.
588     * Add remote join/unjoin server-side implementation.
589     * Removed a lot of code which has become obsolete.
590
591
592 o   Steve Langasek <vorlon@debian.org>
593     * Integrate 2 out of 3 --with-fhs patches from Debian packaging
594       for better adherence to the FHS standard.
595
596
597 o   Volker Lendecke <vl@samba.org>
598     * Add talloc_stackframe() and talloc_pool() features.
599     * Removal of pstring data type.
600     * Add generic a in-memory cache.
601     * Import the Linux red-black tree implementation.
602     * Remove large amount of global variables.
603     * Support for storing xattrs in tdb files.
604     * Support for storing alternate data streams in xattrs.
605     * Implement a generic in-memory cache based on rb-trees.
606     * Add implicit temporary talloc contexts via talloc_stack().
607     * Speed up the smbclient "get" command
608     * Add the aio_fork module
609     * Fix bug 4901
610
611 o   Derrell Lipman <derrell@samba.org>
612     * Modified libsmbclient API for more easily maintaining ABI compatibility
613       while adding new features to libsmbclient.
614
615 o   Stefan Metzmacher <metze@samba.org>
616     * Refactor Winbind internal parent-child interface tables
617       to achieve better unit testing support.
618     * Add nss_wrapper API for local Winbind unit tests.
619     * Networking fixes to the libreplace library.
620     * Pidl fixes.
621     * Remove unused Winbind pipe calls.
622     * Build fixes.
623     * Fix for a crash bug in pidl generated client code.
624       This could have happend with [in,out,unique] pointers
625       when the client sends a valid pointer, but the server
626       responds with a NULL pointer (as samba-3.0.26a does for some calls).
627     * Change NTSTATUS into enum ndr_err_code in librpc/ndr.
628     * Remove unused calls in the struct based winbindd protocol.
629     * Add --configfile option to wbinfo.
630     * Convert winbind_env_set(), winbind_on() and winbind_off() into macros.
631     * Return rids and other_sids arrays in WBFLAG_PAM_INFO3_TEXT mode.
632     * Implement wbcErrorString() and wbcAuthenticateUserEx().
633     * Convert auth_winbind to use wbcAuthenticateUserEx().
634
635
636 o   James Peach <jpeach@samba.org>
637     * Add support for DNS Service Discovery.  Based on work from
638       Rishi Srivatsavai <rishisv@gmail.com>.
639
640
641 o   Andreas Schneider <anschneider@suse.de>
642     * Don't restart winbind if a corrupted tdb is found during
643       initialization.
644     * Fix Windows 2008 (Longhorn) join.
645     * Fix crashbug in winbindd.
646     * Add share parameter "administrative share".
647
648
649 o   Karolin Seeger <ks@sernet.de>
650     * Improve error messages of net subcommands.
651     * Add 'net rap file user'.
652     * Change LDAP search filter to find machine accounts which
653       are not located in the user suffix.
654     * Remove smbmount.
655
656
657 o   David Shaw <dshaw@jabberwocky.com>
658     * BUG 5073: Allow "delete readonly = yes" to correctly override
659       deletion of a file.
660
661
662 o   Rishi Srivatsavai <rishisv@gmail.com>
663     * Register the smb service with mDNS if mDNS is supported.
664     * Add smbclient support for basic mDNS browsing.
665
666
667 o   Andrew Tridgell <tridge@samba.org>
668     * Fix padding between Winbind 32bit/64bit client library in
669       the request/response structures.
670     * Added a syncops VFS module for file systems which do not
671       guarantee meta-data operations are immediately committed to
672       disk in stable form.
673
674
675 o   Jelmer Vernooij <jelmer@samba.org>
676     * Additional portability support for building shared libraries.
677
678
679 o   Corinna Vinschen <corinna@vinschen.de>
680     * Get Samba version or capability information from Windows user space.
681
682
683 Original 3.2.0pre1 commits:
684 ---------------------------
685 o   Michael Adam <obnox@samba.org>
686     * Unified POSIX ACL detection including support for FreeBSD and
687       HP-UX.
688     * Performance improvements for Winbind's lookup functions (names,
689       SIDs, and group membership) when joined to an AD domain.
690     * Winbind cache validation support.
691     * Store domain trust passwords for Samba domain controller's in
692       the domain's passdb backend.
693     * Merged \winreg server code from the SAMBA_3_2 development branch.
694     * Fixes for libreplace.
695     * Implement new registry configuration backend.
696
697
698 o   Jeremy Allison <jra@samba.org>
699     * Add support for file system objectIDs.
700     * Winbind cache validation support.
701     * Add in the UNIX capability for 24-bit readX.
702     * Improve Delete-on-Close semantics.
703     * Removal of static file and path name buffers in SMB file serving
704       code.
705
706
707 o   Danilo Almeida <dalmeida@centeris.com>
708     * Move the machine account to the OU specified when running "net
709       ads join".
710
711
712 o   Andrew Bartlett <abartlet@samba.org>
713     * Tighten authentication protocol defaults in client tools and
714       servers.
715
716
717 o   Gerald (Jerry) Carter <jerry@samba.org>
718     * Implement support for one-way trusts and two-way cross-forest
719       transitive trust in winbindd.
720     * Fixes for Winbind's offline/disconnected logon support when
721       using remote idmap backends.
722     * Fix LookupNames and LookupSids to use the same resolution
723       heuristics as Windows XP.
724     * Fix lockups in Winbind when running nscd.
725     * UPN logon support in pam_winbind.
726     * Add support for GNU linker scripts when build shared libraries
727       (based on work by Julien Cristau <jcristau@debian.org> and James
728       Peach).
729
730
731 o   Guenther Deschner <gd@samba.org>
732     * Additional support for decoding and downloading group policy
733       objects from Active Directory.
734     * Improvements to "net ads keytab" command.
735     * Fixes for linking against Heimdal Kerberos client libs.
736     * Support LDAP range retrieval searches.
737     * Fixes for failure to refresh user ticket caches in Winbind.
738     * UPN logon support in pam_winbind.
739     * Add KDC locator plugin for MIT kerberos 1.6 or later.
740
741
742 o   Steve Langasek <vorlon@debian.org>
743     * Allow SIGTERM to cause nmbd to exit while awaiting a interface
744       to come up.
745
746
747 o   Volker Lendecke <vl@samba.org>
748     * Merge experimental cluster support patches from the ctdb branch.
749     * Add tdb storage abstraction for ctdb.
750     * Use IDL for internal message passing system.
751     * Add client support for the SamLogonEx() authentication request.
752     * Implement RPC proxy stubs in the Samba server code to allow
753       replacing implementation functions one by one.
754     * Remove static incoming and outgoing buffers from core server SMB
755       packet processing code.
756     * Add "net sam rights" command.
757
758
759 o   Steve French <sfrench@samba.org>
760     * Fixes for mount.cifs Linux utility.
761
762
763 o   Stefan Metzmacher <metze@samba.org>
764     * Fixes for libreplace.
765     * Add support for LDAP digital signing policy.
766     * Experimental clustered file system support.
767
768
769 o   Lars Mueller <lars@samba.org>
770     * Makefile and build fixes.
771     * Add pam_pwd_expire for pam_winbind (original patch from Andreas
772       Schneider).
773
774
775 o   James Peach <jpeach@apple.com>
776     * Fixes for setgroups() and *BSD and Darwin.
777     * Support membership of >16 groups on Darwin.
778
779
780 o   Jiri Sasek <Jiri.Sasek@Sun.COM>
781     * Added vfs_zfsacl module.
782
783
784 o   Karolin Seeger <ks@sernet.de>
785     * Add deletelocalgroup and unmapunixgroup subcommand to "net sam".
786     * Cleanup internal passdb functions.
787
788
789 o   Simo Sorce <idra@samba.org>
790     * Fixes for IDmap and Passdb backends.
791
792
793 o   Andrew Tridgell <tridge@samba.org>
794     * Port ldb from the Samba 4 tree and add ldb group mapping plugin.
795     * Move several file serving related tdb files to use the dbwrap
796       API internally.
797     * Cleanup the GPFS VFS plugin.
798     * Experimental clustered file system support.
799
800
801 o   Jelmer Vernooij <jelmer@samba.org>
802     * Implement NDR basic to support utilizing IDL files from Samba 4
803       tree for general DCE/RPC parsing stubs.
804
805
806
807 ######################################################################
808 Reporting bugs & Development Discussion
809 #######################################
810
811 Please discuss this release on the samba-technical mailing list or by
812 joining the #samba-technical IRC channel on irc.freenode.net.
813
814 If you do report problems then please try to send high quality
815 feedback. If you don't provide vital information to help us track down
816 the problem then you will probably be ignored.  All bug reports should
817 be filed under the Samba 3.2 product in the project's Bugzilla
818 database (https://bugzilla.samba.org/).
819
820
821 ======================================================================
822 == Our Code, Our Bugs, Our Responsibility.
823 == The Samba Team
824 ======================================================================
825