WHATSNEW: Prepare 3.5.7 release notes.
[samba.git] / WHATSNEW.txt
1                    =============================
2                    Release Notes for Samba 3.5.7
3                           February 28, 2011
4                    =============================
5
6
7 This is a security release in order to address CVE-2011-0719.
8
9
10 o  CVE-2011-0719:
11    All current released versions of Samba are vulnerable to
12    a denial of service caused by memory corruption. Range
13    checks on file descriptors being used in the FD_SET macro
14    were not present allowing stack corruption. This can cause
15    the Samba code to crash or to loop attempting to select
16    on a bad file descriptor set.
17
18
19 Changes since 3.5.6:
20 --------------------
21
22
23 o   Jeremy Allison <jra@samba.org>
24     * BUG 7949: Fix DoS in Winbind and smbd with many file descriptors open.
25
26
27 ######################################################################
28 Reporting bugs & Development Discussion
29 #######################################
30
31 Please discuss this release on the samba-technical mailing list or by
32 joining the #samba-technical IRC channel on irc.freenode.net.
33
34 If you do report problems then please try to send high quality
35 feedback. If you don't provide vital information to help us track down
36 the problem then you will probably be ignored.  All bug reports should
37 be filed under the Samba 3.5 product in the project's Bugzilla
38 database (https://bugzilla.samba.org/).
39
40
41 ======================================================================
42 == Our Code, Our Bugs, Our Responsibility.
43 == The Samba Team
44 ======================================================================
45
46
47 Release notes for older releases follow:
48 ----------------------------------------
49
50                    =============================
51                    Release Notes for Samba 3.5.6
52                           October 8, 2010
53                    =============================
54
55
56 This is the latest stable release of Samba 3.5.
57
58 Major enhancements in Samba 3.5.6 include:
59
60   o Fix smbd panic on invalid NetBIOS session request (bug #7698).
61   o Fix smbd crash caused by "%D" in "printer admin" (bug #7541).
62   o Fix crash bug with invalid SPNEGO token (bug #7694).
63   o Fix Winbind internal error (bug #7636).
64
65
66 Changes since 3.5.5
67 -------------------
68
69
70 o   Jeremy Allison <jra@samba.org>
71     * BUG 7577: Fix SPNEGO auth when contacting Win7 system using Microsoft Live
72       Sign-in Assistant.
73     * BUG 7578: Fix 'net idmap restore' setting HWM to avoid duplicates.
74     * BUG 7581: Fix "admin users" when using vfs_acl_xattr.
75     * BUG 7583: Fix smbclient to connect to Alfresco JLAN CIFS server using
76       Kerberos.
77     * BUG 7589: Fix using cached credentials in ntlm_auth.
78     * BUG 7590: Fix Winbind offline login.
79     * BUG 7617: Fix smbd coredump due to uninitialized variables in the
80       performance counter code.
81     * BUG 7636: Fix Winbind internal error.
82     * BUG 7651: Fix mknod and mkfifo failing with "No such file or
83       directory".
84     * BUG 7693: Fix smbd changing mode of files on rename.
85     * BUG 7694: Fix crash bug with invalid SPNEGO token.
86     * BUG 7698: Fix smbd panic on invalid NetBIOS session request.
87
88
89 o   Günther Deschner <gd@samba.org>
90     * BUG 7541: Fix smbd crash caused by "%D" in "printer admin".
91     * BUG 7568: Make sure cm_connect_lsa_tcp does not reset the secure channel.
92     * BUG 7658: Fix "dereferencing type-punned pointer will break
93       strict-aliasing rules" warnings).
94     * BUG 7665: Fix memory leak in netapi connection manager.
95
96
97 o   Björn Jacke <bj@sernet.de>
98     * BUG 7244: Fall back to cups-config for underlinked libs.
99     * BUG 7474: Fix build on platforms without st_blocks and st_blksize stat
100       struct members.
101
102
103 o   Volker Lendecke <vl@samba.org>
104     * BUG 7336: Enable idmap_passdb module build as shared.
105     * BUG 7531: Fix the charset_pull routine.
106     * BUG 7635: Fix 'smbclient -M'.
107     * BUG 7656: Fix scalability problem with hundreds of printers.
108     * BUG 7684: Fix fd leak in libwbclient.so.
109     * BUG 7688: Fix crash bug in rpcclient.
110     * BUG 7470: Standardize S_IREAD and S_IWRITE.
111     * BUG 7715: Fix file corruption when setting Samba "write wache wize".
112
113
114 o   Jim McDonough <jmcd@samba.org>
115     * BUG 7280: Fix auto printers with registry config.
116
117
118 o   Andreas Schneider <asn@samba.org>
119     * BUG 7538: Fix GUID_from_data_blob() with length of 32.
120
121
122 o   Chere Zhou <chere.zhou@isilon.com>
123     * BUG 7662: Align change notify replies on 4-byte boundary.
124
125
126 ######################################################################
127 Reporting bugs & Development Discussion
128 #######################################
129
130 Please discuss this release on the samba-technical mailing list or by
131 joining the #samba-technical IRC channel on irc.freenode.net.
132
133 If you do report problems then please try to send high quality
134 feedback. If you don't provide vital information to help us track down
135 the problem then you will probably be ignored.  All bug reports should
136 be filed under the Samba 3.5 product in the project's Bugzilla
137 database (https://bugzilla.samba.org/).
138
139
140 ======================================================================
141 == Our Code, Our Bugs, Our Responsibility.
142 == The Samba Team
143 ======================================================================
144
145
146 ----------------------------------------------------------------------
147
148
149                    =============================
150                    Release Notes for Samba 3.5.5
151                          September 14, 2010
152                    =============================
153
154
155 This is a security release in order to address CVE-2010-3069.
156
157
158 o  CVE-2010-3069:
159    All current released versions of Samba are vulnerable to
160    a buffer overrun vulnerability. The sid_parse() function
161    (and related dom_sid_parse() function in the source4 code)
162    do not correctly check their input lengths when reading a
163    binary representation of a Windows SID (Security ID). This
164    allows a malicious client to send a sid that can overflow
165    the stack variable that is being used to store the SID in the
166    Samba smbd server.
167
168
169 Changes since 3.5.4
170 --------------------
171
172
173 o   Jeremy Allison <jra@samba.org>
174     * BUG 7669: Fix for CVE-2010-3069.
175
176
177 o   Andrew Bartlett <abartlet@samba.org>
178     * BUG 7669: Fix for CVE-2010-3069.
179
180
181 ######################################################################
182 Reporting bugs & Development Discussion
183 #######################################
184
185 Please discuss this release on the samba-technical mailing list or by
186 joining the #samba-technical IRC channel on irc.freenode.net.
187
188 If you do report problems then please try to send high quality
189 feedback. If you don't provide vital information to help us track down
190 the problem then you will probably be ignored.  All bug reports should
191 be filed under the Samba 3.5 product in the project's Bugzilla
192 database (https://bugzilla.samba.org/).
193
194
195 ======================================================================
196 == Our Code, Our Bugs, Our Responsibility.
197 == The Samba Team
198 ======================================================================
199
200
201 ----------------------------------------------------------------------
202
203
204                    =============================
205                    Release Notes for Samba 3.5.4
206                            June 23, 2010
207                    =============================
208
209
210 This is the latest stable release of Samba 3.5.
211
212 Major enhancements in Samba 3.5.4 include:
213
214   o Fix smbd crash when sambaLMPassword and sambaNTPassword entries missing
215     from ldap (bug #7448).
216   o Fix init_sam_from_ldap storing group in sid2uid cache (bug #7507).
217
218
219 Changes since 3.5.3
220 -------------------
221
222
223 o   Michael Adam <obnox@samba.org>
224     * BUG 7507: Fix init_sam_from_ldap storing group in sid2uid cache.
225
226
227 o   Jeremy Allison <jra@samba.org>
228     * BUG 7188: Make ea data checks identical for trans2open and trans2mkdir.
229     * BUG 7410: Samba sends "raw" inode number as uniqueid with unix extensions.
230     * BUG 7449: Fix spnego returning incorrect mechListMIC string.
231
232
233 o   Günther Deschner <gd@samba.org>
234     * BUG 7341: Fix Winbind over IPv6.
235     * BUG 7459: Fix some crash bugs and missing error codes in AddDriver paths.
236     * BUG 7479: Fix crash bug in _samr_QueryUserInfo{2} level 18.
237     * BUG 7517: Fix session setup from linux kernel cifs clients with
238       "sec=ntlmv2".
239
240
241 o   Olaf Flebbe <o.flebbe@science-computing.de>
242     * BUG 7209: Fix build on RHEL5.
243
244
245 o   Björn Jacke <bj@sernet.de>
246     * BUG 7427: Using IBM xl_C compiler produces wrong results in configure.
247     * BUG 7503: Fix calculation of st_blocks in vfs_streams_xattr.
248     * BUG 7504: Fix numerous build issues.
249
250
251 o   Volker Lendecke <vl@samba.org>
252     * BUG 7253: Fix Samba login cache problem on Sparc Architecture.
253     * BUG 7262: Fix editing users' groups via UsrMgr.
254
255
256 o   Buchan Milne <bgmilne@mandriva.org>
257     * BUG 7500: Fix 'not a string literal' warning in netdomjoin-gui.
258
259
260 o   Matthieu Patou <mat@matws.net>
261     * BUG 7099: Allow previous password to be stored and use it to check
262       tickets.
263
264
265 o   Andreas Schneider <asn@samba.org>
266     * BUG 7423: Fix printing large formats.
267
268
269 o   Roel van Meer <rolek@bokxing.nl>
270     * BUG 7448: Fix smbd crash when sambaLMPassword and sambaNTPassword entries
271       missing from ldap.
272
273
274 ######################################################################
275 Reporting bugs & Development Discussion
276 #######################################
277
278 Please discuss this release on the samba-technical mailing list or by
279 joining the #samba-technical IRC channel on irc.freenode.net.
280
281 If you do report problems then please try to send high quality
282 feedback. If you don't provide vital information to help us track down
283 the problem then you will probably be ignored.  All bug reports should
284 be filed under the Samba 3.5 product in the project's Bugzilla
285 database (https://bugzilla.samba.org/).
286
287
288 ======================================================================
289 == Our Code, Our Bugs, Our Responsibility.
290 == The Samba Team
291 ======================================================================
292
293
294 ----------------------------------------------------------------------
295
296
297                    =============================
298                    Release Notes for Samba 3.5.3
299                             May 19, 2010
300                    =============================
301
302
303 This is the latest stable release of Samba 3.5.
304
305 Major enhancements in Samba 3.5.3 include:
306
307   o Fix MS-DFS functionality (bug #7339).
308   o Fix a Winbind crash when scanning trusts (bug #7389).
309   o Fix problems with SIGCHLD handling in Winbind (bug #7317).
310
311
312 Changes since 3.5.2
313 -------------------
314
315
316 o   Jeremy Allison <jra@samba.org>
317     * BUG 7288: Fix SMB job IDs in CUPS job names.
318     * BUG 7339: Fix MS-DFS functionality.
319
320
321 o   Andrew Bartlett <abartlet@samba.org>
322     * BUG 7354: Fix CLDAP tsocket problem on Solaris.
323
324
325 o   Ira Cooper <samba@ira.wakeful.net>
326     * BUG 7384: Fix bitmap leak in dptr_Close.
327
328
329 o   Günther Deschner <gd@samba.org>
330     * BUG 7277: Fix exporting printers via 'cupsaddsmb' command.
331     * BUG 7417: Fix setting of passwords via 'net rpc user password' command.
332     * BUG 7418: Fix 'net rpc printer list' command.
333
334
335 o   Olaf Flebbe <o.flebbe@science-computing.de>
336     * BUG 7421: Rename mod_name to module_name.
337
338
339 o   Björn Jacke <bj@sernet.de>
340     * BUG 7352: Make TIME_T_MAX defines consistent.
341     * BUG 7385: Fix building with Solaris' gcc.
342
343
344 o   Jeff Layton <jlayton@redhat.com>
345     * BUG 7315: Fix segfault in mount.cifs.
346
347
348 o   Volker Lendecke <vl@samba.org>
349     * BUG 7357: Re-fix a bug with smbd serving a windows terminal server.
350     * BUG 7389: Fix a Winbind crash when scanning trusts.
351     * BUG 7398: Fix rename problems with full_audit VFS module.
352
353
354 o   Jim McDonough <jmcd@samba.org>
355     * BUG 7378: Display an error on 'net conf import' failures.
356
357
358 o   Stefan Metzmacher <metze@samba.org>
359     * BUG 7196: Add replacement for IPV6_V6ONLY on linux systems with broken
360       headers.
361     * BUG 7317: Fix problems with SIGCHLD handling in Winbind.
362     * BUG 7354: Fix CLDAP tsocket problem on Solaris.
363
364
365 o   Luca Olivetti <luca@wetron.es>
366     * BUG 7263: Fix cups encryption setting.
367
368
369 ######################################################################
370 Reporting bugs & Development Discussion
371 #######################################
372
373 Please discuss this release on the samba-technical mailing list or by
374 joining the #samba-technical IRC channel on irc.freenode.net.
375
376 If you do report problems then please try to send high quality
377 feedback. If you don't provide vital information to help us track down
378 the problem then you will probably be ignored.  All bug reports should
379 be filed under the Samba 3.5 product in the project's Bugzilla
380 database (https://bugzilla.samba.org/).
381
382
383 ======================================================================
384 == Our Code, Our Bugs, Our Responsibility.
385 == The Samba Team
386 ======================================================================
387
388
389 ----------------------------------------------------------------------
390
391
392                    =============================
393                    Release Notes for Samba 3.5.2
394                            April 7, 2010
395                    =============================
396
397
398 This is the latest stable release of Samba 3.5.
399
400 Major enhancements in Samba 3.5.2 include:
401
402   o Fix smbd segfaults in _netr_SamLogon for clients sending null domain
403     (bug #7237).
404   o Fix smbd segfaults in "waiting for connections" message (bug #7251).
405   o Fix an uninitialized variable read in smbd (bug #7254).
406   o Fix a memleak in Winbind (bug #7278).
407   o Fix Winbind reconnection to it's own domain (bug #7295).
408
409
410 Changes since 3.5.1
411 -------------------
412
413
414 o   Michael Adam <obnox@samba.org>
415     * BUG 7231: Fix automatic building of vfs_tsmsm if gpfs and dmapi are
416       present.
417     * BUG 7232: Fix race conditions in CTDB persistent transactions.
418     * BUG 7313: Make 'net conf addshare' atomic.
419     * BUG 7314: Eliminate race condition in creating/scanning sorted subkeys in
420       the registry backend.
421
422
423 o   Jeremy Allison <jra@samba.org>
424     * BUG 7075: Fix bug in vfs_scannedonly rmdir implementation.
425     * BUG 7159: Fix handling of bad server data returns in client rpc_transport.
426     * BUG 7234: Symlink delete fails but incorrectly reports success to client.
427     * BUG 7255: Fix "printer admin" functionality.
428     * BUG 7283: Fix smbd segfault if using vfs_acl_tdb.
429     * BUG 7297: Fix smbd crashes with CUPS printers and no [printers] share defined.
430     * BUG 7310: Fix DOS attribute inconsistency with MS Office.
431
432
433 o   Kai Blin <kai@samba.org>
434     * BUG 7290: Fix core dump in 'ntlm_auth' with "gss-spnego" helper.
435
436
437 o   Günther Deschner <gd@samba.org>
438     * BUG 6727: Fix several printing issues.
439     * BUG 7237: Fix smbd segfaults in _netr_SamLogon for clients sending
440       null domain.
441     * BUG 7256: Fix value-needed calculation in_spoolss_EnumPrinterData().
442     * BUG 7258: Fix _winreg_QueryValue crash bugs and implement Windows
443       behavior.
444
445
446 o   Holger Hetterich <hhetter@novell.com>
447     * BUG 7203: Fix 'net share' command.
448
449
450 o   Michael Karcher <samba@mkarcher.dialup.fu-berlin.de>
451     * BUG 7269: Fix job management commands for CUPS queues.
452
453
454 o   Jeff Layton <jlayton@redhat.com>
455     * BUG 6853: Fix race condition in mount.cifs that allows user to replace
456       mountpoint with a symlink.
457
458
459 o   Volker Lendecke <vl@samba.org>
460     * BUG 5198: Fix parsing of the gecos field.
461     * BUG 7202: Fix access by multi-threaded applications.
462     * BUG 7212: Fix returning of group members with 'getent group'.
463     * BUG 7216: Fix the build of net_afs.c with --fake-kaserver=yes.
464     * BUG 7229: Fix a NULL pointer dereference in smbd.
465     * BUG 7232: Fix race conditions in CTDB persistent transactions.
466     * BUG 7254: Fix an uninitialized variable read in smbd.
467     * BUG 7278: Fix a memleak in Winbind.
468
469
470 o   Roel van Meer <rolek@alt001.com>
471     * BUG 6814: Fix valgrind warning.
472
473
474 o   Stefan Metzmacher <metze@samba.org>
475     * BUG 7170: Never mark external domains as internal in Winbind.
476     * BUG 7225: Make Winbind logs more verbose for troubleshooting.
477     * BUG 7251: Fix smbd segfault in "waiting for connections" message.
478     * BUG 7295: Fix Winbind reconnection to it's own domain.
479     * BUG 7316: Winbind possibly segfaults when trying a trusted domain without
480       inbound trust.
481
482
483 o   SATOH Fumiyasu <fumiyas@osstech.co.jp>
484     * BUG 1206: Fix segfault if hide files or veto files has no ".AppleDouble".
485
486
487 o   Simo Sorce <idra@samba.org>
488     * BUG 7204: Fix DN parsing name was always null.
489
490
491 o   Andrew Tridgell <tridge@samba.org>
492     * BUG 7312: Many disconnecting clients render clustered Samba unusuable
493       for some time.
494
495
496 o   Bo Yang <boyang@samba.org>
497     * BUG 7206: Signals are processed twice in child.
498
499
500
501 ######################################################################
502 Reporting bugs & Development Discussion
503 #######################################
504
505 Please discuss this release on the samba-technical mailing list or by
506 joining the #samba-technical IRC channel on irc.freenode.net.
507
508 If you do report problems then please try to send high quality
509 feedback. If you don't provide vital information to help us track down
510 the problem then you will probably be ignored.  All bug reports should
511 be filed under the Samba 3.5 product in the project's Bugzilla
512 database (https://bugzilla.samba.org/).
513
514
515 ======================================================================
516 == Our Code, Our Bugs, Our Responsibility.
517 == The Samba Team
518 ======================================================================
519
520 ----------------------------------------------------------------------
521
522                    =============================
523                    Release Notes for Samba 3.5.1
524                             March 8, 2010
525                    =============================
526
527
528 This is a security release in order to address CVE-2010-0728.
529
530
531 o  CVE-2010-0728:
532    In Samba releases 3.5.0, 3.4.6 and 3.3.11, new code
533    was added to fix a problem with Linux asynchronous IO handling.
534    This code introduced a bad security flaw on Linux platforms if the
535    binaries were built on Linux platforms with libcap support.
536    The flaw caused all smbd processes to inherit CAP_DAC_OVERRIDE
537    capabilities, allowing all file system access to be allowed
538    even when permissions should have denied access.
539
540
541 Changes since 3.5.0
542 -------------------
543
544
545 o   Jeremy Allison <jra@samba.org>
546     * BUG 7222: Fix for CVE-2010-0728.
547
548
549 ######################################################################
550 Reporting bugs & Development Discussion
551 #######################################
552
553 Please discuss this release on the samba-technical mailing list or by
554 joining the #samba-technical IRC channel on irc.freenode.net.
555
556 If you do report problems then please try to send high quality
557 feedback. If you don't provide vital information to help us track down
558 the problem then you will probably be ignored.  All bug reports should
559 be filed under the Samba 3.5 product in the project's Bugzilla
560 database (https://bugzilla.samba.org/).
561
562
563 ======================================================================
564 == Our Code, Our Bugs, Our Responsibility.
565 == The Samba Team
566 ======================================================================
567
568
569 ----------------------------------------------------------------------
570
571
572                    =============================
573                    Release Notes for Samba 3.5.0
574                             March 1, 2010
575                    ===============================
576
577
578 This is the first stable release of Samba 3.5.
579
580
581 Major enhancements in Samba 3.5.0 include:
582
583 General changes:
584 o Add support for full Windows timestamp resolution
585 o The Using Samba HTML book has been removed.
586 o 'net', 'smbclient' and libsmbclient can use credentials cached by Winbind.
587 o The default value of "wide links" has been changed to "no".
588
589 Protocol changes:
590 o Experimental implementation of SMB2
591
592 Printing Changes:
593 o Add encryption support for connections to a CUPS server
594
595 Winbind changes:
596 o Major refactoring
597 o Asynchronous
598
599 VFS modules:
600 o New vfs_scannedonly module has been added.
601
602
603 General changes:
604 ================
605
606 Support for full Windows timestamp resolution has been added. This effectively
607 makes us use Windows' full 100ns timestamp resolution if supported by the
608 kernel (2.6.22 and higher) and the glibc (2.6 and higher).
609
610 The Using Samba HTML book has been removed from the Samba tarball.
611 It is still available at http://www.samba.org/samba/docs/using_samba/toc.html.
612
613 Samba client tools like 'net', 'smbclient' and libsmbclient can use the user
614 credentials cached by Winbind at logon time. This is very useful e.g. when
615 connecting to a Samba server using Nautilus without re-entering username and
616 password. This feature is enabled by default and can be disabled per application
617 by setting the LIBSMBCLIENT_NO_CCACHE environment variable.
618
619 The default value of "wide links" has been changed to "no" to avoid an insecure
620 default configuration ("wide links = yes" and "unix extensions = yes"). For
621 more details, please see http://www.samba.org/samba/news/symlink_attack.html.
622
623
624 Protocol changes
625 ================
626
627 An EXPERIMENTAL implementation of the SMB2 protocol has been added. SMB2 can be
628 enabled by setting "max protocol = smb2". SMB2 is a new implementation of the
629 SMB protocol used by Windows Vista and higher.
630
631 Printing Changes
632 ================
633
634 A new parameter "cups encrypt" has been added to control whether connections to
635 CUPS servers will be encrypted or not. The default is to use unencrypted
636 connections.
637
638 Winbind changes
639 ===============
640
641 The Winbind daemon has been refactored internally to be asynchronous. The new
642 Winbind will not be blocked by running 'getent group' or 'getent passwd'.
643
644 VFS modules
645 ===========
646
647 A new VFS module "scannedonly" has been added. This is a filter that
648 talks to an antivirus-engine and stores whether a file is clean or not.
649 Users do only see clean files on their filesystem.
650
651
652 ######################################################################
653 Changes
654 #######
655
656 smb.conf changes
657 ----------------
658
659    Parameter Name                      Description     Default
660    --------------                      -----------     -------
661
662    create krb5 conf                    New             yes
663    ctdb timeout                        New             0
664    cups encrypt                        New             no
665    debug hires timestamp               Changed Default yes
666    ldap deref                          New             auto
667    ldap follow referral                New             auto
668    nmbd bind explicit broadcast        New             no
669    wide links                          Changed Default no
670
671
672 New configure options
673 ---------------------
674
675 --enable-external-libtdb        Enable external tdb
676 --enable-netapi                 Turn on netapi support
677 --enable-pthreadpool            Enable pthreads pool helper support
678 --with-cifsumount               Include umount.cifs (Linux only) support
679 --with-codepagedir=DIR          Where to put codepages
680
681
682 Commit Highlights
683 =================
684
685 o   Björn Jacke <bj@sernet.de>
686     * Add support for full Windows timestamp resolution.
687     * Add encryption support for connections to a CUPS server.
688
689
690 o   Volker Lendecke <vl@samba.org>
691     * Major internal refactoring of the Winbind daemon.
692     * Make Winbind asynchronous.
693     * Make 'net', 'smbclient' and libsmbclient use the logon credentials cached
694       by Winbind.
695
696
697 o   Stefan Metzmacher <metze@samba.org>
698     * Implement the new SMB2 protocol (experimental).
699
700
701 Changes since 3.5.0rc3
702 ----------------------
703
704
705 o   Günther Deschner <gd@samba.org>
706     * BUG 7181: Fix 'net ads dns' usage calls.
707     * BUG 7182: Fix uninitialized variable in wkssvc_enumerateusers.
708
709
710 o   Volker Lendecke <vl@samba.org>
711     * BUG 7145: Fix duplicate sam and unix accounts.
712     * BUG 7166: Avoid calling cli_alloc_mid twice in cli_smb_req_iov_send.
713
714
715 o   Stefan Metzmacher <metze@samba.org>
716     * BUG 7160: Keep the the correct negotiate_flags on the cli->dc structure.
717
718
719 Changes since 3.5.0rc2
720 ----------------------
721
722
723 o   Jeremy Allison <jra@samba.org>
724     * BUG 6557: Fix vfs_full_audit.
725     * BUG 6876: Fix duplicate initializer in the rmdir module.
726     * BUG 7063: Fix core dump on Ubuntu 8.04 64 bit.
727     * BUG 7067: Fix failing of smbd to respond to a read or a write caused by
728       Linux asynchronous IO (aio).
729     * BUG 7069: Fix 'smbget' error status.
730     * BUG 7072: Fix unlocking of accounts from ldap.
731     * BUG 7079  Cliconnect gets realm wrong with trusted domains.
732     * BUG 7081: Fix vfs_expand_msdfs.
733     * BUG 7084: Fix storing of create time on directories in an EA in new
734       create time code.
735     * BUG 7104: "wide links" and "unix extensions" are incompatible.
736     * BUG 7118: Fix nmbd problems with socket address.
737     * BUG 7122: Fix reading of large browselist.
738     * BUG 7154: "mangling method = hash" can crash storing a name containing a '.'.
739     * BUG 7155: Valgrind Conditional jump or move depends on uninitialised
740       value(s) error when "mangling method = hash"..
741
742
743 o   Steven Danneman <steven.danneman@isilon.com>
744     * BUG 7096: Fix string buffer overflow causing heap corruption in smbd.
745
746
747 o   Günther Deschner <gd@samba.org>
748     * BUG 6888: Fix printing with 64 bit clients.
749     * BUG 7130: Fix listing of printjobs in  Windows 7.
750     * BUG 7148: Fix get_acl_blob in the acl_tdb VFS module.
751
752
753 o   Björn Jacke <bj@sernet.de>
754     * BUG 7103: Fix build issue on Tru64.
755     * BUG 7116: Change ldap filter to what really was intended.
756     * Fix some wrong newlines in de translation strings.
757
758
759 o   Jeff Layton <jlayton@redhat.com>
760     * BUG 6868: Fix crash bug in 'cifs.upcall'.
761
762
763 o   Volker Lendecke <vl@samba.org>
764     * BUG 7085: Fix an early release of the global lock that can cause data
765       corruption in libtdb.
766     * BUG 7139: Owner of file not available with Kerberos.
767
768
769 o   Stefan Metzmacher <metze@samba.org>
770     * BUG 6888: Fix printing with 64 bit clients.
771     * BUG 7098: Fix results of 'smbclient -L' with a large browse list.
772     * BUG 7116: Add pdb_ldap performance fixes.
773     * BUG 7118: Add new "nmbd bind explicit broadcast" parameter.
774     * BUG 7119: Support large browselist.
775     * BUG 7140: Fix IPv4/IPv6 problems.
776
777
778 o   Lars Müller <lars@samba.org>
779     * BUG 7071: Fix build of 'smbfilter'.
780     * BUG 7047: Add cross option to samba_cv_linux_getgrouplist_ok.
781     * BUG 7102: Normalize "Changing password for" msg IDs and STRs.
782
783
784 o   Olivier Sessink <olivier@virtscano.fakenet>
785     * BUG 7076: Fix build of vfs_scannedonly on AIX.
786
787
788 o   Bo Yang <boyang@samba.org>
789     * BUG 7106: Fix malformed require_membership_of_sid.
790
791
792
793 Changes since 3.5.0rc1
794 ----------------------
795
796
797 o   Michael Adam <obnox@samba.org>
798     * BUG 4347: Check password history before increasing "badPasswordCount".
799
800
801 o   Jeremy Allison <jra@samba.org>
802     * BUG 5202: Fix changing of ACLs on writable file with "dos filemode=yes".
803     * BUG 6876: Fix deletion of an object whose parent folder does not have delete
804       rights fails even if the delete right is set on the object in
805       vfs_acl_xattr and vfs_acl_tdb.
806     * BUG 7033: Fix SMBrmdir error message when deleting a directory fails.
807     * BUG 7036: Fix 'net rpc getsid' in hardened Windows environments.
808     * BUG 7045: Fix bad (non memory copying) interfaces in smbc_setXXXX calls.
809
810
811 o   Giovanni Bajo <rasky@develer.com>
812     * BUG 7029: Disable sanity check in NetShareEnum for better compatibility
813       with Windows.
814
815
816 o   Kai Blin <kai@samba.org>
817     * BUG 7039: Fix compile error with WITH_DNS_UPDATE. Update .po files.
818
819
820 o   Günther Deschner <gd@samba.org>
821     * BUG 7043: Fix crash bug in libsmbclient.
822
823
824 o   André Hentschel <nerv@dawncrow.de>
825     * BUG 7039: Complete German translation of 'net'.
826
827
828 o   Björn Jacke <bj@sernet.de>
829     * BUG 7039: Improve some German translations in 'net'.
830
831
832 o   William Jojo <w.jojo@hvcc.edu>
833     * BUG 7052: Fix DFS on AIX.
834
835
836 o   Volker Lendecke <vl@samba.org>
837     * BUG 6981: Fix large paged search with DirX LDAP servers.
838     * BUG 7027: Fix a segfault in winbindd_dual_ccache_ntlm_auth().
839     * BUG 7037: Fix a Winbind segfault in "trusted_domains".
840     * BUG 7046: Fix libsmbclient crash against OpenSolaris CIFS server.
841     * BUG 7062: Make 'net', 'smbclient' and libsmbclient use the logon
842       credentials cached by Winbind.
843     * Lock down some srvsvc calls according to what w2k3 seems to do.
844
845
846 o   Stefan Metzmacher <metze@samba.org>
847     * BUG 6157: Restore Samba 3.0.x behavior and use the first "uid" value in
848       pdb_ldap.
849
850
851 o   SASAJIMA Toshihiro <sasajima_t@jp.fujitsu.com>
852     * BUG 7034: Fix segfault in vfs_cap.
853
854
855 o   Olivier Sessink <oliviersessink@gmail.com>
856     * BUG 7028: Add new scannedonly VFS module.
857
858
859 Changes since 3.5.0pre2
860 -----------------------
861
862 o   Jeremy Allison <jra@samba.org>
863     * BUG 6837: Fix "Too many open files" when trying to access large number of
864       files with Windows 7.
865     * BUG 6939: Fix long filenames when "mangling method" is set to "hash".
866     * BUG 7020: Fix smbd using 2G memory.
867     * Ensure dos_mode can return FILE_ATTRIBUTE_NORMAL, then filter the returned
868       attributes by protocol level.
869     * Vector correctly through reply_openerror() (which uses the same logic).
870     * Fix bugs with the full Windows ACL support.
871
872
873 o   Kai Blin <kai@samba.org>
874     * Add a few missing gettext calls to the 'net' command.
875     * Fix up a share type translation and translate some more strings in 'net'.
876
877
878 o   Günther Deschner <gd@samba.org>
879     * Allow to call "pdbedit -N description -u user" without specifiyng "-r".
880     * Add spoolss_DriverInfo7.
881     * Fix rpcclient after setprinter IDL fixes.
882     * Use generated krb5.conf in 'net ads testjoin'.
883
884
885 o   Jonas Gorski <jonas.gorski+samba@gmail.com>
886     * BUG 6992: make test for getgrouplist cacheable.
887
888
889 o   André Hentschel <nerv@dawncrow.de>
890     * Add some German translations for the 'net' command.
891
892
893 o   Suresh Jayaraman <sjayaraman@suse.de>
894     * Update mount.cifs man page with nounix option.
895
896
897 o   Volker Lendecke <vl@samba.org>
898     * Fix _samr_GetAliasMembership for results with 0 rids.
899     * Fix an error case in cli_negprot.
900     * Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dc.
901     * Restore correct timeouts for SMB requests.
902     * Fix a 64-bit error in libsmb.
903     * Replace IS_DOMAIN_OFFLINE by a function in Winbind.
904     * Simplify/cleanup Winbind code.
905
906
907 o   Kamen Mazdrashki <kamen.mazdrashki@postpath.com>
908     * Fix write behind memory block in libtalloc.
909     * Fix result check for getaddrinfo().
910
911
912 o   Jim McDonough <jmcd@samba.org>
913     * BUG 7014: Fix Winbind crash when retrieving empty group members.
914
915
916 o   Brian Lu <brian.lu@sun.com>
917     * BUG 6991: Create symbol links to shared libraries.
918
919
920 o   Stefan Metzmacher <metze@samba.org>
921     * Add tsocket_address_bsd_sockaddr() and tsocket_address_bsd_from_sockaddr()
922       to tsocket.
923     * Always set tdb->tracefd to -1 to be safe on goto fail in libtdb.
924     * Add TDB_DISALLOW_NESTING and make TDB_ALLOW_NESTING the default behavior.
925     * Fix standalone 'make installdocs'.
926
927
928 o   Peter Rosin <peda@lysator.liu.se>
929     * Output %p as unsigned in snprintf replacement.
930
931
932 o   Ronnie Sahlberg <ronniesahlberg@gmail.com>
933     * New attempt at TDB transaction nesting allow/disallow.
934
935
936 o   Kirill Smelkov <kirr@mns.spb.ru>
937     * Remove swig stuff from libtdb.
938     * Reset tdb->fd to -1 in tdb_close() in libtdb.
939
940
941 o   Simo Sorce <idra@samba.org>
942     * Change the way mksysms work in libtalloc.
943
944
945 o   Jelmer Vernooij <jelmer@samba.org>
946     * Also build and install tdb manpages from standalone tdb.
947
948
949 o   Bo Yang <boyang@samba.org>
950     * Fix infinite loop in NCACN_IP_TCP as there is no timeout.
951     * Make winbindd_cache.c aware of domain offline to avoid unnecessary backend
952       query.
953     * List trusted domains from wcache when domain is offline.
954
955
956 Changes since 3.5.0pre1
957 -----------------------
958
959 o   Michael Adam <obnox@samba.org>
960     * Fix the build when no external talloc and tdb are installed.
961     * Fix detection of CTDB headers on systems without system-libtalloc.
962
963
964 o   Jeremy Allison <jra@samba.org>
965     * BUG 6802: A created folder does not properly inherit permissions from
966       parent in vfs_acl_xattr.
967     * BUG 6837: "Too many open files" when trying to access large number of
968       files from Windows 7.
969     * BUG 6938 : No hook exists to check creation rights when using acl_xattr
970       module.
971     * Fix vfs_acl_xattr which was failing to call the NEXT connect function.
972     * Restructure the ACL code.
973     * Refactor reply_rmdir to use handle based code.
974
975
976 o   Dan Cox <dan@wep.net>
977     * BUG 2350: Add LDAP Alias Dereferencing support.
978
979
980 o   Günther Deschner <gd@samba.org>
981     * BUG 6929: Fix build with recent heimdal.
982     * Fix several printing issues.
983     * Fix the build on Mac OS X 10.6.2.
984     * Fix net and rpcclient after setprinterdataex changes.
985     * Add full support for level 8 printer drivers.
986     * Add more spoolss architectures to IDL.
987     * Fix enumprinter key client and server.
988     * Fix crash in EnumPrinterDataEx.
989
990
991 o   Björn Jacke <bj@sernet.de>
992     * Prefer posix_fallocate for doing "strict allocate".
993
994
995 o   Matt Kraai <mkraai@beckman.com>
996     * BUG 6860: Fix shared library build on QNX.
997
998
999 o   Volker Lendecke <vl@samba.org>
1000     * BUG 6288: SWAT adds a second share when changing parameters of an existing
1001       share.
1002     * BUG 6435: Fix minor memory corruption.
1003     * Restore "fake directory create times" as a share parameter.
1004     * Fix explicit stat64 support.
1005     * Add support for NetWkstaGetInfo 101 and 102.
1006     * Add rpcclient wkssvc_enumerateusers.
1007     * De-deprecate "write cache size" to prevent its removal without a proper
1008       alternative.
1009     * Allow more than 1000 users in BUILTIN\Users.
1010
1011
1012 o   Jim McDonough <jmcd@samba.org>
1013     * BUG 6967: Prevent glibc error on 'net ads join'.
1014
1015
1016 o   Lars Müller <lars@samba.org>
1017     * BUG 6710: Only install the cifs.upcall man page if CIFSUPCALL_PROGS was
1018       set while configure.
1019
1020
1021 o   Ian Puleston <ipuleston@sonicwall.com>
1022     * Complete support for NetWkstaGetInfo/NetWkstaEnumUsers.
1023
1024
1025 o   Karolin Seeger <kseeger@samba.org>
1026     * Fix the build of the example VFS modules.
1027
1028
1029 o   Bo Yang <boyang@samba.org>
1030     * BUG 6879: Fix crash in Winbind.
1031     * Fix crash in free_file_list().
1032     * Give the user a chance to change password when password will expire soon.
1033
1034
1035 ######################################################################
1036 Reporting bugs & Development Discussion
1037 #######################################
1038
1039 Please discuss this release on the samba-technical mailing list or by
1040 joining the #samba-technical IRC channel on irc.freenode.net.
1041
1042 If you do report problems then please try to send high quality
1043 feedback. If you don't provide vital information to help us track down
1044 the problem then you will probably be ignored.  All bug reports should
1045 be filed under the Samba 3.5 product in the project's Bugzilla
1046 database (https://bugzilla.samba.org/).
1047
1048
1049 ======================================================================
1050 == Our Code, Our Bugs, Our Responsibility.
1051 == The Samba Team
1052 ======================================================================