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