WHATSNEW: Start release notes for Samba 3.6.1.
[Samba.git] / WHATSNEW.txt
blobd7e09c4598ecbb62063da333b63c5e08635a8ead
1                    =============================
2                    Release Notes for Samba 3.6.1
3                           , 2011
4                    =============================
7 This is the latest stable release of Samba 3.6.
9 Major enhancements in Samba 3.6.1 include:
12 Changes since 3.6.0:
13 --------------------
17 ######################################################################
18 Reporting bugs & Development Discussion
19 #######################################
21 Please discuss this release on the samba-technical mailing list or by
22 joining the #samba-technical IRC channel on irc.freenode.net.
24 If you do report problems then please try to send high quality
25 feedback. If you don't provide vital information to help us track down
26 the problem then you will probably be ignored.  All bug reports should
27 be filed under the Samba 3.5 product in the project's Bugzilla
28 database (https://bugzilla.samba.org/).
31 ======================================================================
32 == Our Code, Our Bugs, Our Responsibility.
33 == The Samba Team
34 ======================================================================
36 Release notes for older releases follow:
37 ----------------------------------------
39                    =============================
40                    Release Notes for Samba 3.6.0
41                           August 9, 2011
42                    =============================
45 This is the first release of Samba 3.6.0.
47 Major enhancements in Samba 3.6.0 include:
50 Changed security defaults
51 -------------------------
53 Samba 3.6 has adopted a number of improved security defaults that will
54 impact on existing users of Samba.
56  client ntlmv2 auth = yes
57  client use spnego principal = no
58  send spnego principal = no
60 The impact of 'client ntlmv2 auth = yes' is that by default we will not
61 use NTLM authentication as a client.  This applies to the Samba client
62 tools such as smbclient and winbind, but does not change the separately
63 released in-kernel CIFS client.  To re-enable the poorer NTLM encryption
64 set '--option=clientusentlmv2auth=no' on your smbclient command line, or
65 set 'client ntlmv2 auth = no' in your smb.conf
67 The impact of 'client use spnego principal = no' is that Samba will
68 use CIFS/hostname to obtain a kerberos ticket, acting more like
69 Windows when using Kerberos against a CIFS server in smbclient,
70 winbind and other Samba client tools.  This will change which servers
71 we will successfully negotiate kerberos connections to.  This is due
72 to Samba no longer trusting a server-provided hint which is not
73 available from Windows 2008 or later.  For correct operation with all
74 clients, all aliases for a server should be recorded as a as a
75 servicePrincipalName on the server's record in AD.  (For this reason,
76 this behavior change and parameter was also made in Samba 3.5.9)
78 The impact of 'send spnego principal = no' is to match Windows 2008 and
79 not to send this principal, making existing clients give more consistent
80 behaviour (more likely to fall back to NTLMSSP) between Samba and
81 Windows 2008, and between Windows versions that did and no longer use
82 this insecure hint.
85 SMB2 support
86 ------------
88 SMB2 support in 3.6.0 is fully functional (with one omission),
89 and can be enabled by setting:
91 max protocol = SMB2
93 in the [global] section of your smb.conf and re-starting
94 Samba. All features should work over SMB2 except the modification
95 of user quotas using the Windows quota management tools.
97 As this is the first release containing what we consider
98 to be a fully featured SMB2 protocol, we are not enabling
99 this by default, but encourage users to enable SMB2 and
100 test it. Once we have enough confirmation from Samba
101 users and OEMs that SMB2 support is stable in wide user
102 testing we will enable SMB2 by default in a future Samba
103 release.
106 Internal Winbind passdb changes
107 -------------------------------
109 Winbind has been changed to use the internal samr and lsa rpc pipe to get
110 local user and group information instead of calling passdb functions. The
111 reason is to use more of our infrastructure and test this infrastructure by
112 using it. With this approach more code in Winbind is shared.
115 New Spoolss code
116 ----------------
118 The spoolss and the old RAP printing code have been completely
119 overhauled and refactored.
121 All calls from lanman/printing code has been changed to go through the
122 spoolss RPC interfaces, this allows us to keep all checks in one place
123 and avoid special cases in the main printing code.
124 Printing code has been therefore confined within the spoolss code.
126 All the printing code, including the spoolss RPC interfaces has been
127 changed to use the winreg RPC interfaces to store all data.
128 All data has been migrated from custom, arbitrary TDB files to the
129 registry interface. This transition allow us to present correct data to
130 windows client accessing the server registry through the winreg RPC
131 interfaces to query for printer data. Data is served out from a real
132 registry implementation and therefore arguably 100% forward compatible.
134 Migration code from the previous TDB files formats is provided. This
135 code is automatically invoked the first time the new code is run on the
136 server. Although manual migration is also available using the 'net
137 printer migrate' command.
139 These changes not only make all the spoolss code much more closer to
140 "the spec", it also greatly improves our internal testing of both
141 spoolss and winreg interfaces, and reduces overall code duplication.
143 As part of this work, new tests have been also added to increase
144 coverage.
146 This code will also allow, in future, an easy transition to split out
147 the spooling functions into a separate daemon for those OEMs that do not
148 need printing functionality in their appliances, reducing the code
149 footprint.
152 ID Mapping Changes
153 ------------------
155 The id mapping configuration has been a source of much grief in the past.
156 For this release, id mapping has been rewritten yet again with the goal
157 of making the configuration more simple and more coherent while keeping
158 the needed flexibility and even adding to the flexibility in some respects.
160 The major change that implies the configuration simplifications is at
161 the heart of the id mapping system: The separation of the "idmap alloc
162 system" that is responsible for the unix id counters in the tdb, tdb2
163 and ldap idmap backends from the id mapping code itself has been removed.
164 The sids_to_unixids operation is now atomic and encapsulates (if needed)
165 the action of allocating a unix id for a mapping that is to be created.
166 Consequently all idmap alloc configuration parameters have vanished and
167 it is hence now also not possible any more to specify an idmap alloc
168 backend different from the idmap backend. Each idmap backend uses its
169 own idmap unixid creation mechanism transparently.
171 As a consequence of the id mapping changes, the methods that are used
172 for storing and deleting id mappings have been removed from the winbindd
173 API. The "net idmap dump/restore" commands have been rewritten to
174 not speak through winbindd any more but directly act on the databases.
175 This is currently available for the tdb and tdb2 backends, the implementation
176 for ldap still missing.
178 The allocate_id functionality is preserved for the unix id creator of the
179 default idmap configuration is also used as the source of unix ids
180 for the group mapping database and for the posix attributes in a
181 ldapsam:editposix setup.
183 As part of the changes, the default idmap configuration has been
184 changed to be more coherent with the per-domain configuration.
185 The parameters "idmap uid", "idmap gid" and "idmap range" are now
186 deprecated in favour of the systematic "idmap config * : range"
187 and "idmap config * : backend" parameters. The reason for this change
188 is that the old options only provided an incomplete and hence deceiving
189 backwards compatibility, which was a source of many problems with
190 upgrades. By introducing this change in configuration, it should be
191 brought to the conciousness of the users that even the simple
192 id mapping is not working exactly as in Samba 3.0 versions any more.
195 Endpoint Mapper
196 ---------------
198 As Microsoft is more and more relying on endpoint mapper and we didn't have a
199 complete implementation we decided to create an instance for Samba. The
200 endpoint mapper is like a DNS server but for ports. If you want to talk to a
201 certain RPC service over TCP/IP, you just ask the endpoint mapper on which
202 port it is running. Then you can connect to the service and make sure that it
203 is running.
205 The code is deactivated by default, because it needs more testing and it
206 doesn't scale yet. If you want to enable and test the endpoint mapper
207 you can set "rpc_server:epmapper = daemon" in the smb.conf file.
210 Internal restructuring
211 ----------------------
213 Ongoing internal restructuring for better separation of internal subsystem to
214 achieve a faster build, smaller binaries and cleaner dependencies for the samba3
215 waf build.
218 SMB Traffic Analyzer
219 --------------------
221 Added the new SMB Traffic Analyzer (SMBTA) VFS module protocol 2
222 featuring encryption, multiple arguments, and easier parseability. A new
223 tool 'smbta-util' has been created to control the encryption behaviour
224 of SMBTA. For compatibility, SMBTA by default operates on version 1.
225 There are programs consuming the data that the module sends.
227 More information can be found on
228 http://holger123.wordpress.com/smb-traffic-analyzer/
231 NFS quota backend on Linux
232 --------------------------
234 A new nfs quota backend for Linux has been added that is based
235 on the existing Solaris/FreeBSD implementation. This allows samba
236 to communicate correct diskfree information for nfs imports that
237 are re-exported as samba shares.
240 ######################################################################
241 Changes
242 #######
244 smb.conf changes
245 ----------------
247    Parameter Name                      Description     Default
248    --------------                      -----------     -------
250    async smb echo handler              New             No
251    client ntlmv2 auth                  Changed Default Yes
252    client use spnego principal         New             No
253    ctdb locktime warn threshold        New             0
254    idmap alloc backend                 Removed
255    log writeable files on exit         New             No
256    multicast dns register              New             Yes
257    ncalrpc dir                         New
258    send spnego principal               New             No
259    smb2 max credits                    New             128
260    smb2 max read                       New             1048576
261    smb2 max trans                      New             1048576
262    smb2 max write                      New             1048576
263    username map cache time             New             0
264    winbind max clients                 New             200
266    The variable substitutions for %i and %I no longer
267    use IPv4 addresses mapped to IPv6, e.g. '::ffff:192.168.0.1',
268    if the host has IPv6 enabled. Now %i and %I contain just
269    '192.168.0.1'.
271 Commit Highlights
272 -----------------
274 o   Michael Adam <obnox@samba.org>
275     * ID Mapping changes.
278 o   Jeremy Allison <jra@samba.org>
279     * Implement SMB2 support.
282 o   Stefan Metzmacher <metze@samba.org>
283     * Implement SMB2 support.
286 o   Andreas Schneider <asn@samba.org>
287     * Add an Endpoint Mapper daemon.
290 Changes since 3.6.0rc3
291 ----------------------
293 o   Michael Adam <obnox@samba.org>
294     * BUG 8327: Fix the reload of the configuration, also reload activated
295       registry shares.
296     * BUG 8328: Cleanup of idmap_tdb2 code.
299 o   Jeremy Allison <jra@samba.org>
300     * BUG 7462: Make SA_RESETHAND conditional on its existance.
301     * BUG 8324: smbclient cannot list directories from a big-endian machine.
302     * BUG 8335: File copy aborts with smb2_validate_message_id: bad message_id.
305 o   Christian Ambach <ambi@samba.org>
306     * BUG 8330: Fix NFSv4 ACL merging logic.
309 o   Andrew Bartlett <abartlet@samba.org>
310     * BUG 8326: WinXP cannot join a Samba3 domain with a 'even' hostname.
313 o   Björn Baumbach <bb@sernet.de>
314     * BUG 8303: db_ctdb_send_schedule_for_deletion() is not defined.
317 o   Alban Browaeys <prahal@yahoo.com>
318     * BUG 8341: Fix segfault in libsmbclient.
321 o   Björn Jacke <bj@sernet.de>
322     * BUG 8362: Fix build issue on old glibc systems.
325 o   Volker Lendecke <vlendec@samba.org>
326     * BUG 8343: Fix SMB2 crash reading with aio_fork beyond the end of file.
329 o   Stefan Metzmacher <metze@samba.org>
330     * BUG 8347: Fix regression for HP-UX, AIX and OSF.
331     * BUG 8357: Make sure we grant credits on async read/write operations.
332     * BUG 8358: Fix a bug in run_poll_events().
335 Changes since 3.6.0rc2
336 ----------------------
338 o   Michael Adam <obnox@samba.org>
339     * BUG 8213: Fixes in idmap_autorid.
340     * BUG 8217: Do not stat-check the share path in 'net conf addshare'.
341     * BUG 8281: Fix build of examples/VFS/*.
344 o   Jeremy Allison <jra@samba.org>
345     * BUG 8083: Fix "inherit owner = yes" with vfs_acl_xattr or vfs_acl_tdb
346       module.
347     * BUG 8211: Fix "inherit owner = yes" when "inherit permissions = yes"
348       is set.
349     * BUG 8219: Fix SMB Panic from Windows 7 client.
350     * BUG 8254: Fix "acl check permissions = no".
351     * BUG 8293: Fix log file rotating in SMB2.
352     * BUG 8304: Fix uninitialized variable in error path.
353     * BUG 8307: brl_close_fnum does not call SMB_VFS_BRL_UNLOCK_WINDOWS on all
354       locks.
355     * BUG 8310: toupper_ascii() is broken on big-endian systems.
356     * BUG 8314: Fix smbd crash with unknown user.
359 o   Christian Ambach <ambi@samba.org>
360     * BUG 8231: Fix crash bug in 'net cache get'.
361     * BUG 8244: Fix copying files larger than 2 GB to a Samba share.
362     * BUG 8263: Fix build with --with-fake-kaserver or --with-vfs-afsacl.
363     * BUG 8278: Fix smbd panic when CTDB is unhealthy.
364     * BUG 8286: Fix smbd crash on premature end of smb2 conn.
367 o   Andrew Bartlett <abartlet@samba.org>
368     * BUG 8230: Move .nmbd socket directory to non-hidden name PREFIX/var/nmbd.
369     * Mark 'time offset' parameter as deprecated.
372 o   Gregor Beck <gbeck@sernet.de>
373     * BUG 8193: Add new command 'enumerate_recursive'.
374     * BUG 8253: Fix Winbind panic if verify_idpool() fails.
377 o   Kai Blin <kai@samba.org>
378     * BUG 8289: Fix possible XSS attack (CVE-2011-2694).
379     * BUG 8290: Fix Cross-Site Request Forgery in SWAT (CVE-2011-2522).
382 o   Günther Deschner <gd@samba.org>
383     * BUG 7888: Deal with buggy 3.0 based PDCs.
384     * BUG 8214: Fix smbd crash on printer driver upgrade.
385     * BUG 8235: Fix smbd crash on startup caused by migrate_printer().
388 o   Björn Jacke <bj@sernet.de>
389     * BUG 8262: Fix build of vfs_commit.
392 o   Günter Kukkukk <linux@kukkukk.com>
393     * BUG 8305: Fix segfault in nmbd when using 'smbtree ...'..
396 o   Volker Lendecke <vl@samba.org>
397     * BUG 7841: Explicitly pass domain_sid to wbint_LookupRids().
398     * BUG 8102: Do not allow to change file ACLs from normal domusers.
399     * BUG 8247: Fix Coverity ID 2582: FORWARD_NULL.
402 o   Herb Lewis <hlewis@panasas.com>
403     * BUG 8216: Make Winbind returning correct results with 'sids2xids'.
406 o   Stefan Metzmacher <metze@samba.org>
407     * BUG 8102: Do not allow to change file ACLs from normal domusers.
408     * BUG 8195: Make rpc client code working against NT4 servers.
409     * BUG 8224: Fix the build on FreeBSD.
410     * BUG 8226: Use c99 initializers which are supported by old gcc 2.95
411       compilers.
412     * BUG 8260: Fix DCERPC responses with fragments larger than 1024 bytes.
413     * BUG 8264: Fix Valgrind bugs in svcctl.
414     * BUG 8276: Close all sockets attached to a subnet in close_subnet().
415     * BUG 8292: Fix a major architectural flaw in the SMB2 server code.
418 o   Andreas Schneider <asn@samba.org>
419     * BUG 8215: Fix Winbind unix username lookup.
420     * BUG 8240: Fix Valgrind warnings in winreg/spoolss code.
423 Changee since 3.6.0rc1
424 ----------------------
426 o   Michael Adam <obnox@samba.org>
427     * BUG 8200: Add support for multiple writeable ldap idmap domains.
430 o   Jeremy Allison <jra@samba.org>
431     * BUG 6911: Fix Kerberos authentication from Vista to Samba.
432     * BUG 7054: Fix X account flag when "pwdlastset" is "0".
433     * BUG 8133: Fix strange behavior for the file (whose filename first
434       character is period ) in SMB2 case.
435     * BUG 8144: Fix setting timestamp when touching files with CIFS clients.
436     * BUG 8150: Ban "dos charset = utf8".
437     * BUG 8153: Fix setting up getaddrinfo on IPv6-only machines.
438     * BUG 8156: Fix 'net ads join' using the user's Kerberos ticket.
439     * BUG 8157: Fix parsing a cups printcap file.
440     * BUG 8163: Fix our asn.1 parser to handle negative numbers.
441     * BUG 8175: Fix smbd deadlock.
442     * BUG 8191: Split the ACE flag mapping between nfs4 and Windows into two
443       separate functions.
444     * BUG 8197: Winbind does not properly detect when a DC connection is dead.
445     * BUG 8203: Winbind needs to reset the DC connection if an RPC times out.
448 o   Christian Ambach <ambi@samba.org>
449     * BUG 8152: Fix smbd crash in release_ip().
452 o   Andrew Bartlett <abartlet@samba.org>
453     * BUG 8151: Deprecate security parameters.
456 o   Gregor Beck <gbeck@sernet.de>
457     * BUG 8191: nfs4_acls: Pass ACE_FLAG_INHERITED_ACE up to the client/down
458       from the client.
459     * BUG 8192: Fix parsing of multiple flags in 'smbcacls'.
462 o   Sumit Bose <sbose@redhat.com>
463     * BUG 8142: Fix typos in LDAP schema files.
466 o   Holger Hetterich <hhetter@novell.com>
467     * BUG 8148: Default to protocol version 2 for SMB Traffic Analyzer.
468     * BUG 8154: Actually make use of SMBTA subversion numbers.
471 o   Björn Jacke <bj@sernet.de>
472     * BUG 7998: Remove warning if IOV_MAX is not defined.
475 o   Jim McDonough <jmcd@samba.org>
476     * BUG 8166: Don't lockout users when offline.
479 o   Stefan Metzmacher <metze@samba.org>
480     * BUG 8140: talloc: Fix Valgrind false positives and other backports.
481     * BUG 8141: Fix wrong permissions on lp_ncalrpc_dir().
484 o   Andreas Schneider <asn@samba.org>
485     * BUG 8155: Fix registering only named pipes on EPM for a service.
488 o   Volker Lendecke <vl@samba.org>
489     * BUG 8159: Fix memory corruption in fetching cli->server_domain from the
490       server.
491     * BUG 8185: "security=server" does not obey guest login field.
492     * BUG 8189: Support shadow copy display over SMB2.
493     * BUG 8199: Fix potential crash in smbd handling smb2.
496 o   Samuel Thibault <sthibault@debian.org>
497     * BUG 7998: Fix build on Hurd.
500 Changes since 3.6.0pre3
501 -----------------------
503 o   Jeremy Allison <jra@samba.org>
504     * BUG 8111: CIFS VFS: Fix unexpected error on SMB posix open.
505     * BUG 8112: POSIX extension opens of a directory are denied with EISDIR.
506     * Remove fstrings from client struct.
507     * BUGFIX when converting from safe_strcpy to strlcpy.
508     * Fix off-by-one calculations with strlcpy.
509     * Ensure we always write the correct incoming mid into the share mode table
510       entries.
511     * Fix the SMB2 oplock showstopper.
514 o   Christian Ambach <christian.ambach@de.ibm.com>
515     * Convert user-specified domain to uppercase in libsmb.
518 o   Günther Deschner <gd@samba.org>
519     * BUG 8132: Fix filling printers location field when using cups.
520     * Fix Coverity CID #2302: FORWARD_NULL.
521     * Fix cups_pull_comment_location().
522     * Fix double free of cups request.
523     * Make cups_pull_comment_location() work again.
524     * Fix potential crash bug in display_print_driver3().
527 o   Volker Lendecke <vl@samba.org>
528     * Properly clean up in pthreadpool_init in case of failure.
529     * Make plaintext session setup async.
530     * Reduce fd load in Winbind children.
531     * Avoid a potential 100% CPU loop in Winbind.
532     * Tune broadcast namequeries for unique names.
533     * Properly deal with exited winbind children.
534     * Fix dup_smb2_vec3.
535     * Fix return check in nss_wins.
538 Changes since 3.6.0pre2
539 -----------------------
541 o   Michael Adam <obnox@samba.org>
542     * Fix build of tdb2.
545 o   Jeremy Allison <jra@samba.org>
546     * BUG 8083: "inherit owner = yes" doesn't interact correctly with
547       vfs_acl_xattr or vfs_acl_tdb module.
548     * BUG 8088: rpccli_samr_chng_pswd_auth_crap segfaults if any input blobs
549       are null.
550     * Correctly detect and deny symlinks anywhere in a path (not just the last
551       component) if "follow symlinks = no".
554 o   Günther Deschner <gd@samba.org>
555     * BUG 8106: Fix the build of 'smbget' on HP NonStop.
556     * Fix timeout in rpc_pipe_open_tcp_port().
557     * Fix the build of "--with-profiling-data".
558     * Fix the AIX 5.3 build.
561 o   Sergey Korsak <skif@1plus1.net>
562     * BUG #8099: setpwent() actually does endpwent() and vice versa on FreeBSD.
565 o   Volker Lendecke <vl@samba.org>
566     * BUG 8066: Fix wrong output in 'smbget'.
567     * Fix Coverity IDs 986, 1340, 2047, 2299, 2307, 2325, 2335, 2336, 2470,
568       2471, 2478.
569     * nsswitch: Add 'wbinfo --lookup-sids'.
570     * nsswitch: Add 'wbinfo --sids-to-unix-ids'.
571     * Fix smbd with the async echo responder.
572     * Fix the build of vfs_gpfs.c.
573     * Add a 10-second timeout for the 445 or netbios connection to a DC.
574     * Many pthreadpool fixes.
577 o   Stefan Metzmacher <metze@samba.org>
578     * BUG 7383: Listen on IPv6 addresses with IPV6_ONLY.
581 o   Rusty Russell <rusty@rustcorp.com.au>
582     * Fix transaction recovery area for converted tdbs.
586 Changes since 3.6.0pre1
587 -----------------------
589 o   Michael Adam <obnox@samba.org>
590     * ID Mapping changes.
591     * Add "--option" to 'testparm'.
594 o   Jeremy Allison <jra@samba.org>
595     * BUG 7080: Quota only shown when logged as root.
596     * BUG 7863: Unlink may unlink wrong file when hardlinks are involved.
597     * BUG 7996: Sgid bit lost on folder rename.
598     * BUG 8040: Fix smbclient segfault with Cyrillic netbios names.
599     * Fix crash bug on smbd shutdown when using FOPENDIR().
600     * Ensure we don't return an incorrect access mask.
601     * Fix bug against the new Mac client.
602     * Fix leak in error path.
603     * Fix error where Windows client spoolss returns WERR_INVALID_DATA.
606 o   Christian Ambach <christian.ambach@de.ibm.com>
607     * Fix a segfault in the krb5 locator plugin.
608     * Enable sharesec for registry shares.
611 o   Andrew Bartlett <abartlet@samba.org>
612     * Fix memory leak in "security=share" and "force user".
615 o   Björn Baumbach <bb@sernet.de>
616     * BUG 7875: Fix 'nmbd --port'.
617     * BUG 7880: cmd_spoolss_deletedriver() returned without checking all
618       architectures.
621 o   Gregor Beck <gbeck@sernet.de>
622     * Add new 'net idmap check' command.
623     * Add new 'net idmap delete' command.
624     * Fix segfault on missing input file in 'net idmap restore'.
627 o   Olly Betts <olly@survex.com>
628     * Fix 'net usersidlist' not to skip every other user.
631 o   Günther Deschner <gd@samba.org>
632     * BUG 7690: Retry DNS updates when connection to one nameserver has failed.
633     * BUG 7945: Let winbind try to use samlogon validation level 6.
634     * Fix Coverity ID 2041.
635     * Fix potential crash bug in spoolss_PrinterEnumValues push path.
636     * Internal restructuring.
637     * Don't wipe out all printer drivers when only one should be deleted.
638     * Fix winbindd_dual_pam_auth_samlogon() for NT4 domains.
641 o   David Disseldorp <ddiss@suse.de>
642     * BUG 7915: Fix cups pcap reload with no printers.
643     * BUG 8040: Fix smbclient segfault with Cyrillic netbios names.
644     * Fix memory leak in print_cups.c.
645     * Remove duplicate cups response processing code.
646     * Follow force user/group for driver IO.
647     * Initiate pcap reload from parent smbd.
648     * Reload shares after pcap cache fill.
651 o   Björn Jacke <bj@sernet.de>
652     * BUG 8033: Add explicit configure option whether or not to enable dmapi
653       support.
656 o   Volker Lendecke <vl@samba.org>
657     * BUG 7917: Fix bug in chain_reply.
658     * BUG 7940: Fall back for utimes calls.
659     * BUG 8009: Fix getting username in 'net rap session'.
660     * BUG 8010: Use jenkins hash for str_checksum.
661     * BUG 8042: Fix file creation on OS/X.
662     * Fix numerous Coverity IDs.
663     * Fix a memory leak in check_sam_security_info3.
664     * Fix a segfault in the nss wrapper when libnss_winbind.so is not loadable.
665     * Make "net sam list [users|workstations]" list only the right things.
666     * Fix a potential memleak in secrets_fetch_trusted_domain_password.
667     * Use the right credentials in check_netlogond_security.
668     * Add support for AF_NETLINK addr notifications.
669     * Fork multiple Winbind children per domain.
670     * Fix a deadlock between smbd and ctdbd.
671     * Add 'wbinfo --dc-info'.
672     * Make "nmbd socket dir" configurable.
673     * Fix a valgrind error.
674     * Fix a memleak in receive_getdc_response.
677 o   Nikolay Martynov <mar.kolya@gmail.com>
678     * BUG 8010: Fix inode generation so nautilus can count total dir size
679       correctly.
682 o   Stefan Metzmacher <metze@samba.org>
683     * BUG 7567: Fix printing from Windows 7.
684     * BUG 7899: Don't return "-1" on success in 'net rpc vampire keytab'.
685     * BUG 7944: Catch lookup_names/sids schannel errors over ncacn_ip_tcp.
686     * Don't grant SEC_STD_DELETE always to the owner of a file.
687     * Fix segfaults on addrchange errors in Winbind.
688     * Allow machine accounts as members in groupdb.
691 o   Jonathan Nieder <jrnieder@gmail.com>
692     * BUG 6837: Make "rlimit_max below minimum Windows limit" notification less
693       scary.
696 o   Andreas Schneider <asn@samba.org>
697     * Add an Endpoint Mapper daemon.
698     * Add IPv6 support for the endpoint mapper.
699     * Free unused memory in the rpc server.
700     * Fix possible segfaults in svcctl server.
701     * Fix possible segfault with client_id in rpc server.
702     * Add a 'svcctl shutdown' function to rpc server.
703     * Fix a resource leak in net_afs.
704     * Fix a resource leak in smbta-util.
705     * Fix possible resource leak in net_usershare.
706     * Fix possible resource leak in 'smbget'.
707     * Fix possible resource leak in 'smbfilter'.
708     * Fix a possible null pointer dereference in smbd.
711 o   Pavel Shilovsky <piastry@etersoft.ru>
712     * BUG 7928: Fix problems with "kernel oplocks" option set to "no".
713     * Ensure we send the direct levelII oplock break to the correct fid.
716 o   Simo Sorce <idra@samba.org>
717     * Fix private libdir and codepages paths.
720 o   Andrew Tridgell <tridge@samba.org>
721     * Fix a valgrind error.
724 ######################################################################
725 Reporting bugs & Development Discussion
726 #######################################
728 Please discuss this release on the samba-technical mailing list or by
729 joining the #samba-technical IRC channel on irc.freenode.net.
731 If you do report problems then please try to send high quality
732 feedback. If you don't provide vital information to help us track down
733 the problem then you will probably be ignored.  All bug reports should
734 be filed under the Samba 3.6 product in the project's Bugzilla
735 database (https://bugzilla.samba.org/).
738 ======================================================================
739 == Our Code, Our Bugs, Our Responsibility.
740 == The Samba Team
741 ======================================================================