source: trunk/server/WHATSNEW.txt@ 623

Last change on this file since 623 was 620, checked in by Herwig Bauernfeind, 14 years ago

Samba 3.5: Update trunk to 3.5.11

File size: 50.6 KB
RevLine 
[617]1 ==============================
[620]2 Release Notes for Samba 3.5.11
3 August 4, 2011
4 ==============================
5
6
7This is the latest stable release of Samba 3.5.
8
9Major enhancements in Samba 3.5.11 include:
10
11o Fix access to Samba shares when Windows security patch KB2536276 is installed
12 (bug #7460).
13o Fix DoS in Winbind and smbd with many file descriptors open (bug #7949).
14o Fix Winbind panics if verify_idpool() fails (bug #8253).
15
16
17Changes since 3.5.10:
18--------------------
19
20
21o Jeremy Allison <jra@samba.org>
22 * BUG 7462: Make SA_RESETHAND conditional on its existance.
23 * BUG 8254: Make "acl check permissions = no" working in all cases.
24
25
26o Gregor Beck <gbeck@sernet.de>
27 * BUG 8253: Fix Winbind panics if verify_idpool() fails.
28
29
30o David Disseldorp <ddiss@suse.de>
31 * BUG 8269: Stop spamming log with "Could not find child X -- ignoring"
32 messages in smbd.
33
34
35o Björn Jacke <bj@sernet.de>
36 * BUG 7460: Include sys/file.h only when available.
37
38
39o Volker Lendecke <vl@samba.org>
40 * BUG 7841: Explicitly pass domain_sid to wbint_LookupRids().
41 * BUG 8238: Fix access to Samba shares when Windows security patch
42 KB2536276 is installed.
43 * BUG 8322: Add HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR.
44
45
46o Stefan Metzmacher <metze@samba.org>
47 * BUG 7841: Make WINBINDD_LOOKUPRIDS ask the right domain.
48 * BUG 7949: Fix DoS in Winbind and smbd with many file descriptors open.
49 * BUG 8276: Close all sockets attached to a subnet in close_subnet().
50
51
52######################################################################
53Reporting bugs & Development Discussion
54#######################################
55
56Please discuss this release on the samba-technical mailing list or by
57joining the #samba-technical IRC channel on irc.freenode.net.
58
59If you do report problems then please try to send high quality
60feedback. If you don't provide vital information to help us track down
61the problem then you will probably be ignored. All bug reports should
62be filed under the Samba 3.5 product in the project's Bugzilla
63database (https://bugzilla.samba.org/).
64
65
66======================================================================
67== Our Code, Our Bugs, Our Responsibility.
68== The Samba Team
69======================================================================
70
71
72Release notes for older releases follow:
73----------------------------------------
74
75 ==============================
[617]76 Release Notes for Samba 3.5.10
77 July 26, 2011
78 ==============================
79
80
81This is a security release in order to address
82CVE-2011-2522 (Cross-Site Request Forgery in SWAT) and
83CVE-2011-2694 (Cross-Site Scripting vulnerability in SWAT).
84
85
86o CVE-2011-2522:
87 The Samba Web Administration Tool (SWAT) in Samba versions
88 3.0.x to 3.5.9 are affected by a cross-site request forgery.
89
90
91o CVE-2011-2694:
92 The Samba Web Administration Tool (SWAT) in Samba versions
93 3.0.x to 3.5.9 are affected by a cross-site scripting
94 vulnerability.
95
96Please note that SWAT must be enabled in order for these
97vulnerabilities to be exploitable. By default, SWAT
98is *not* enabled on a Samba install.
99
100
101Changes since 3.5.9:
102--------------------
103
104
105o Kai Blin <kai@samba.org>
106 * BUG 8289: SWAT contains a cross-site scripting vulnerability.
107 * BUG 8290: CSRF vulnerability in SWAT.
108
109
110######################################################################
111Reporting bugs & Development Discussion
112#######################################
113
114Please discuss this release on the samba-technical mailing list or by
115joining the #samba-technical IRC channel on irc.freenode.net.
116
117If you do report problems then please try to send high quality
118feedback. If you don't provide vital information to help us track down
119the problem then you will probably be ignored. All bug reports should
120be filed under the Samba 3.5 product in the project's Bugzilla
121database (https://bugzilla.samba.org/).
122
123
124======================================================================
125== Our Code, Our Bugs, Our Responsibility.
126== The Samba Team
127======================================================================
128
129
[620]130----------------------------------------------------------------------
[617]131
[620]132
[429]133 =============================
[599]134 Release Notes for Samba 3.5.9
135 June 14, 2011
136 =============================
137
138
139This is the latest stable release of Samba 3.5.
140
141Major enhancements in Samba 3.5.9 include:
142
143o Sgid bit lost on folder rename (bug #7996).
144o ACL can get lost when files are being renamed (bug #7987).
145o Respect "allow trusted domains = no" in Winbind (bug #6966).
[620]146o Samba now follows Windows behaviour as a Kerberos client,
147 requesting a CIFS/ ticket (bug #7893).
[599]148
[620]149New Kerberos behaviour
150----------------------
[599]151
[620]152A new parameter 'client use spnego principal' defaults to 'no' and
153mean Samba will use CIFS/hostname to obtain a kerberos ticket, acting
154more like Windows when using Kerberos against a CIFS server in
155smbclient, winbind and other Samba client tools. This will change
156which servers we will successfully negotiate kerberos connections to.
157This is due to Samba no longer trusting a server-provided hint which
158is not available from Windows 2008 or later. For correct operation
159with all clients, all aliases for a server should be recorded as a as
160a servicePrincipalName on the server's record in AD.
161
[599]162Changes since 3.5.8:
163--------------------
164
165o Jeremy Allison <jra@samba.org>
166 * BUG 6911: Kerberos authentication from Vista to Samba fails when security
167 blob size is greater than 16 kB.
168 * BUG 7080: Quota only shown when logged as root.
169 * BUG 7528: Fix Solaris with NIS autohome.
170 * BUG 7987: ACL can get lost when files are being renamed.
171 * BUG 7996: sgid bit lost on folder rename.
172 * BUG 8040: Fix 'smbclient' segfaults when a Cyrillic netbios name or
173 workgroup is configured.
174 * BUG 8072: Fix panic in create_file_acl_common.
175 * BUG 8038: Fix is_myname_or_ipaddr() to be robust against strange DNS
176 setups.
177 * BUG 8083: "inherit owner = yes" doesn't interact correctly with
178 vfs_acl_xattr or vfs_acl_tdb module.
179 * BUG 8088: Fix segfault in rpccli_samr_chng_pswd_auth_crap if any input
180 blobs are null.
181 * BUG 8111: CIFS VFS: Fix unexpected error on SMB posix open.
182 * BUG 8157: Fix parsing CUPS printcap files in std_pcap_cache_reload().
183 * BUG 8163: Fix our asn.1 parser to handle negative numbers.
184 * BUG 8211: "inherit owner = yes" doesn't interact correctly with "inherit
185 permissions = yes".
186
187
188o Christian Ambach <ambi@samba.org>
189 * BUG 8008: Fix a segfault in the krb5 locator plugin.
190 * BUG 8012: Use getgrset() instead of initgroups() + getgroups() when
191 getgrouplist() is not defined.
192 * BUG 8031: Convert gpfs:sharemodes and gpfs:leases parameters from a
193 global setting to a per share setting.
194
195
196o Andrew Bartlett <abartlet@samba.org>
197 * BUG 7893: Don't ever ask for machine$ principals as a target.
198
199
200o Björn Baumbach <bb@sernet.de>
201 * BUG 8074: Fix debug message.
202
203
204o Dmitry Butskoy <dmitry@butskoy.name>
205 * BUG 6966: Respect "allow trusted domains = no" in Winbind.
206
207
208o Marc A. Dahlhaus <mad@wol.de>
209 * BUG 8047: Fix mdns registration if "interfaces=" is used.
210
211
212o GÃŒnther Deschner <gd@samba.org>
213 * BUG 7993: Make sure we don't crash when publishing a single printer.
214 * BUG 8085: Fix incorrect timeout handling in ncacn_ip_tcp client code.
215 * BUG 8132: Fix filling printers location field when using CUPS.
216
217
218o David Disseldorp <ddiss@suse.de>
219 * BUG 7836: Make newly added printers visible to clients.
220 * BUG 7994: Use printcap IDL for IPC.
221
222
223o Björn Jacke <bj@sernet.de>
224 * BUG 7825: Fix GNU ld version detection with old gcc releases.
225 * BUG 8033: Add explicit configure option whether to enable dmapi
226 support or not.
227
228
229o Sergey Korsak <skif@1plus1.net>
230 * BUG 8099: setpwent() actually does endpwent() on FreeBSD.
231
232
233o Volker Lendecke <vl@samba.org>
234 * BUG 8009: Fix getting username in 'net rap session'.
235 * BUG 8011: Fix memory corruption in shadow_copy2.
236 * BUG 8016: Fix gpfs_get_xattr.
237 * BUG 8042: File creation on OS/X.
238 * BUG 8054: Winbind cache stores/retrieves wrong sizes for 16-bit ints.
239 * BUG 8066: Fix wrong output in 'smbget'.
240 * BUG 8087: Fix wbcChangeUserPasswordEx in RESPONSE mode.
241
242
243o Nikolay Martynov <mar.kolya@gmail.com>
244 * BUG 8010: Fix inode generation so nautilus can count total dir size
245 correctly.
246
247
248o Jim McDonough <jmcd@samba.org>
249 * BUG 6364: Pull realm from supplied username on libnet join.
250 * BUG 8166: Don't lockout users when offline.
251
252
253o Stefan Metzmacher <metze@samba.org>
254 * BUG 7383: Normalize IPv4 mapped IPv6 addresses in both directions.
255 * BUG 8034: SEC_STD_DELETE is always granted to the owner of a file.
256
257
258o Larry Reid <lcreid@jadesystems.ca>
259 * BUG 8055: Can't see Parts of DFS CIFS share.
260
261
262o Simo Sorce <idra@samba.org>
263 * BUG 7610: winbindd_cache.tdb grows too large when scaled.
264
265
266o Martin Vogt <martin.vogt@itwm.fraunhofer.de>
267 * BUG 6762: Fix ctdb on gpfs error with MS Office.
268
269
270
271######################################################################
272Reporting bugs & Development Discussion
273#######################################
274
275Please discuss this release on the samba-technical mailing list or by
276joining the #samba-technical IRC channel on irc.freenode.net.
277
278If you do report problems then please try to send high quality
279feedback. If you don't provide vital information to help us track down
280the problem then you will probably be ignored. All bug reports should
281be filed under the Samba 3.5 product in the project's Bugzilla
282database (https://bugzilla.samba.org/).
283
284
285======================================================================
286== Our Code, Our Bugs, Our Responsibility.
287== The Samba Team
288======================================================================
289
290
[617]291----------------------------------------------------------------------
[599]292
[617]293
[599]294 =============================
[596]295 Release Notes for Samba 3.5.8
296 March 7, 2011
297 =============================
298
299
300This is the latest stable release of Samba 3.5.
301
302Major enhancements in Samba 3.5.8 include:
303
304o Fix Winbind crash bug when no DC is available (bug #7730).
305o Fix finding users on domain members (bug #7743).
306o Fix memory leaks in Winbind (bug #7879).
307o Fix printing with Windows 7 clients (bug #7567).
308
309
310Changes since 3.5.7:
311--------------------
312
313
314o Michael Adam <obnox@samba.org>
315 * BUG 7594: Fix "log=>ndr_pull_error" in 'wbinfo -u' and 'wbinfo -g'.
316 * BUG 7871: Fix 'net ads dns register' in cluster setups.
317 * BUG 7894: Fix sporadic Winbind panic in rpc query_user_list.
318
319
320o Jeremy Allison <jra@samba.org>
321 * BUG 7409: Raise debug level for "reduce_name: couldn't get realpath"
322 messages.
323 * BUG 7716: Store unmodified copies of security descriptors in acl_xattr and
324 acl_tdb modules.
325 * BUG 7733: Fix incorrect unix mode_t caused by invalid client DOS
326 attributes on create.
327 * BUG 7734: Apply appropriate create masks when creating files with "inherit
328 ACLs" set to true.
329 * BUG 7743: Fix finding users on domain members.
330 * BUG 7744: Fix "dfree cache time" parameter.
331 * BUG 7777: Fix requesting lookups for BUILTIN sids.
332 * BUG 7785: Fix atime limit.
333 * BUG 7791: Fix copying files from a SMB share using Gnome vfs and SMB
334 signing.
335 * BUG 7812: ACL inheritance cannot be disabled in vfs_acl_xattr/vfs_acl_tdb.
336 * BUG 7835: vfs_fill_sparse() doesn't use posix_fallocate when strict
337 allocate is on.
338 * BUG 7843: Expand the local SAMs aliases.
339 * BUG 7892: Fix stale lock in open_file_fchmod().
340 * BUG 7950: Revalidate the pathname once re-constructed from a root fsp.
341
342
343o Andrew Bartlett <abartlet@samba.org>
344 * BUG 7356: Fix 'net ads dns register' in Windows 2008 R2 domains.
345
346
347o Björn Baumbach <bb@sernet.de>
348 * BUG 7875: Fix 'nmbd --port'.
349 * BUG 7880: Make 'rpcclient deldriver' delete drivers for all architectures.
350
351
352o GÃŒnther Deschner <gd@samba.org>
353 * BUG 7567: Fix printing with Windows 7 clients.
354 * BUG 7641: Handle Windows 9x adddriver calls without config file.
355 * BUG 7945: Let Winbind try to use samlogon validation level 6.
356
357
358o Holger Hetterich <hhetter@novell.com>
359 * BUG 3185: Fix 'testparm' return code when EOF in encountered in param
360 name.
361
362
363o Björn Jacke <bj@sernet.de>
364 * BUG 7821: Fix build of shared libraries on Tru64.
365
366
367o Volker Lendecke <vl@samba.org>
368 * BUG 7066: Fix "Your Password expires today" message for users of trusted
369 domains.
370 * BUG 7262: Fix maintaining of users' groups via UsrMgr.
371 * BUG 7656: Fix scalability problem with hundreds of printers.
372 * BUG 7665: Fix memory leak in the netapi routines.
373 * BUG 7730: Fix Winbind crash bug when no DC is available.
374 * BUG 7774: Fix a getgrent crash with many groups.
375 * BUG 7779: Fix smbd crash caused by expand_msdfs.
376 * BUG 7800: Make Winbind recover from a signing error.
377 * BUG 7817: Fix "force group" with ntlmssp guest session setup.
378 * BUG 7841: Make WINBINDD_LOOKUPRIDS asking the right domain.
379 * BUG 7842: Make WINBINDD_LOOKUPRIDS returning the domain name.
380 * BUG 7855: ntlm_auth: Support clients which offer a spnego mechs we don't
381 support.
382 * BUG 7879: Fix memory leaks in Winbind.
383 * BUG 7881: Fix flaky Winbind against Windows 2008.
384 * BUG 7917: Fix connections from WinCE.
385 * BUG 7940: Fix opening MS Powerpoint files.
386
387
388o Stefan Metzmacher <metze@samba.org>
389 * BUG 7567: Fix printing with Windows 7 clients.
390 * BUG 7855: ntlm_auth: Support clients which offer a spnego mechs we don't
391 support.
392 * BUG 7883: Fix SMB session setups with Kerberos against some closed source
393 SMB servers.
394 * BUG 7896: Don't set SAMR_FIELD_FULL_NAME if we just want to set the
395 account name.
396 * BUG 7899: Don't return "-1" on success in 'net rpc vampire keytab'.
397 * BUG 7942: Fix endless loops caused by inotify.
398 * BUG 7944: Catch lookup_names/sids schannel errors over ncacn_ip_tcp.
399
400
401o Jonathan Nieder <jrnieder@gmail.com>
402 * BUG 6837: Make "rlimit_max below minimum Windows limit" notification less
403 scary.
404
405
406o olivier <olivier@virtscano.fakenet>
407 * BUG 7789: vfs_scannedonly: Switch from mtime to ctime which is more reliable.
408
409
410o Rusty Russell <rusty@rustcorp.com.au>
411 * BUG 7498: Fix updating the time on close in vfs_gpfs.
412
413
414######################################################################
415Reporting bugs & Development Discussion
416#######################################
417
418Please discuss this release on the samba-technical mailing list or by
419joining the #samba-technical IRC channel on irc.freenode.net.
420
421If you do report problems then please try to send high quality
422feedback. If you don't provide vital information to help us track down
423the problem then you will probably be ignored. All bug reports should
424be filed under the Samba 3.5 product in the project's Bugzilla
425database (https://bugzilla.samba.org/).
426
427
428======================================================================
429== Our Code, Our Bugs, Our Responsibility.
430== The Samba Team
431======================================================================
432
433
[599]434----------------------------------------------------------------------
[596]435
[599]436
[596]437 =============================
[593]438 Release Notes for Samba 3.5.7
439 February 28, 2011
440 =============================
441
442
443This is a security release in order to address CVE-2011-0719.
444
445
446o CVE-2011-0719:
447 All current released versions of Samba are vulnerable to
448 a denial of service caused by memory corruption. Range
449 checks on file descriptors being used in the FD_SET macro
450 were not present allowing stack corruption. This can cause
451 the Samba code to crash or to loop attempting to select
452 on a bad file descriptor set.
453
454
455Changes since 3.5.6:
456--------------------
457
458
459o Jeremy Allison <jra@samba.org>
460 * BUG 7949: Fix DoS in Winbind and smbd with many file descriptors open.
461
462
463######################################################################
464Reporting bugs & Development Discussion
465#######################################
466
467Please discuss this release on the samba-technical mailing list or by
468joining the #samba-technical IRC channel on irc.freenode.net.
469
470If you do report problems then please try to send high quality
471feedback. If you don't provide vital information to help us track down
472the problem then you will probably be ignored. All bug reports should
473be filed under the Samba 3.5 product in the project's Bugzilla
474database (https://bugzilla.samba.org/).
475
476
477======================================================================
478== Our Code, Our Bugs, Our Responsibility.
479== The Samba Team
480======================================================================
481
482
[596]483----------------------------------------------------------------------
[593]484
[596]485
[593]486 =============================
[590]487 Release Notes for Samba 3.5.6
488 October 8, 2010
489 =============================
490
491
492This is the latest stable release of Samba 3.5.
493
494Major enhancements in Samba 3.5.6 include:
495
496 o Fix smbd panic on invalid NetBIOS session request (bug #7698).
497 o Fix smbd crash caused by "%D" in "printer admin" (bug #7541).
498 o Fix crash bug with invalid SPNEGO token (bug #7694).
499 o Fix Winbind internal error (bug #7636).
500
501
502Changes since 3.5.5
503-------------------
504
505
506o Jeremy Allison <jra@samba.org>
507 * BUG 7577: Fix SPNEGO auth when contacting Win7 system using Microsoft Live
508 Sign-in Assistant.
509 * BUG 7578: Fix 'net idmap restore' setting HWM to avoid duplicates.
510 * BUG 7581: Fix "admin users" when using vfs_acl_xattr.
511 * BUG 7583: Fix smbclient to connect to Alfresco JLAN CIFS server using
512 Kerberos.
513 * BUG 7589: Fix using cached credentials in ntlm_auth.
514 * BUG 7590: Fix Winbind offline login.
515 * BUG 7617: Fix smbd coredump due to uninitialized variables in the
516 performance counter code.
517 * BUG 7636: Fix Winbind internal error.
518 * BUG 7651: Fix mknod and mkfifo failing with "No such file or
519 directory".
520 * BUG 7693: Fix smbd changing mode of files on rename.
521 * BUG 7694: Fix crash bug with invalid SPNEGO token.
522 * BUG 7698: Fix smbd panic on invalid NetBIOS session request.
523
524
525o GÃŒnther Deschner <gd@samba.org>
526 * BUG 7541: Fix smbd crash caused by "%D" in "printer admin".
527 * BUG 7568: Make sure cm_connect_lsa_tcp does not reset the secure channel.
528 * BUG 7658: Fix "dereferencing type-punned pointer will break
529 strict-aliasing rules" warnings).
530 * BUG 7665: Fix memory leak in netapi connection manager.
531
532
533o Björn Jacke <bj@sernet.de>
534 * BUG 7244: Fall back to cups-config for underlinked libs.
535 * BUG 7474: Fix build on platforms without st_blocks and st_blksize stat
536 struct members.
537
538
539o Volker Lendecke <vl@samba.org>
540 * BUG 7336: Enable idmap_passdb module build as shared.
541 * BUG 7531: Fix the charset_pull routine.
542 * BUG 7635: Fix 'smbclient -M'.
543 * BUG 7656: Fix scalability problem with hundreds of printers.
544 * BUG 7684: Fix fd leak in libwbclient.so.
545 * BUG 7688: Fix crash bug in rpcclient.
546 * BUG 7470: Standardize S_IREAD and S_IWRITE.
547 * BUG 7715: Fix file corruption when setting Samba "write wache wize".
548
549
550o Jim McDonough <jmcd@samba.org>
551 * BUG 7280: Fix auto printers with registry config.
552
553
554o Andreas Schneider <asn@samba.org>
555 * BUG 7538: Fix GUID_from_data_blob() with length of 32.
556
557
558o Chere Zhou <chere.zhou@isilon.com>
559 * BUG 7662: Align change notify replies on 4-byte boundary.
560
561
562######################################################################
563Reporting bugs & Development Discussion
564#######################################
565
566Please discuss this release on the samba-technical mailing list or by
567joining the #samba-technical IRC channel on irc.freenode.net.
568
569If you do report problems then please try to send high quality
570feedback. If you don't provide vital information to help us track down
571the problem then you will probably be ignored. All bug reports should
572be filed under the Samba 3.5 product in the project's Bugzilla
573database (https://bugzilla.samba.org/).
574
575
576======================================================================
577== Our Code, Our Bugs, Our Responsibility.
578== The Samba Team
579======================================================================
580
581
[593]582----------------------------------------------------------------------
[590]583
[593]584
[590]585 =============================
[583]586 Release Notes for Samba 3.5.5
587 September 14, 2010
588 =============================
589
590
591This is a security release in order to address CVE-2010-3069.
592
593
594o CVE-2010-3069:
595 All current released versions of Samba are vulnerable to
596 a buffer overrun vulnerability. The sid_parse() function
597 (and related dom_sid_parse() function in the source4 code)
598 do not correctly check their input lengths when reading a
599 binary representation of a Windows SID (Security ID). This
600 allows a malicious client to send a sid that can overflow
601 the stack variable that is being used to store the SID in the
602 Samba smbd server.
603
604
605Changes since 3.5.4
606--------------------
607
608
609o Jeremy Allison <jra@samba.org>
610 * BUG 7669: Fix for CVE-2010-3069.
611
612
613o Andrew Bartlett <abartlet@samba.org>
614 * BUG 7669: Fix for CVE-2010-3069.
615
616
617######################################################################
618Reporting bugs & Development Discussion
619#######################################
620
621Please discuss this release on the samba-technical mailing list or by
622joining the #samba-technical IRC channel on irc.freenode.net.
623
624If you do report problems then please try to send high quality
625feedback. If you don't provide vital information to help us track down
626the problem then you will probably be ignored. All bug reports should
627be filed under the Samba 3.5 product in the project's Bugzilla
628database (https://bugzilla.samba.org/).
629
630
631======================================================================
632== Our Code, Our Bugs, Our Responsibility.
633== The Samba Team
634======================================================================
635
636
[590]637----------------------------------------------------------------------
[583]638
[590]639
[583]640 =============================
[480]641 Release Notes for Samba 3.5.4
642 June 23, 2010
643 =============================
644
645
646This is the latest stable release of Samba 3.5.
647
648Major enhancements in Samba 3.5.4 include:
649
650 o Fix smbd crash when sambaLMPassword and sambaNTPassword entries missing
651 from ldap (bug #7448).
652 o Fix init_sam_from_ldap storing group in sid2uid cache (bug #7507).
653
654
655Changes since 3.5.3
656-------------------
657
658
659o Michael Adam <obnox@samba.org>
660 * BUG 7507: Fix init_sam_from_ldap storing group in sid2uid cache.
661
662
663o Jeremy Allison <jra@samba.org>
664 * BUG 7188: Make ea data checks identical for trans2open and trans2mkdir.
665 * BUG 7410: Samba sends "raw" inode number as uniqueid with unix extensions.
666 * BUG 7449: Fix spnego returning incorrect mechListMIC string.
667
668
669o GÃŒnther Deschner <gd@samba.org>
670 * BUG 7341: Fix Winbind over IPv6.
671 * BUG 7459: Fix some crash bugs and missing error codes in AddDriver paths.
672 * BUG 7479: Fix crash bug in _samr_QueryUserInfo{2} level 18.
673 * BUG 7517: Fix session setup from linux kernel cifs clients with
674 "sec=ntlmv2".
675
676
677o Olaf Flebbe <o.flebbe@science-computing.de>
678 * BUG 7209: Fix build on RHEL5.
679
680
681o Björn Jacke <bj@sernet.de>
682 * BUG 7427: Using IBM xl_C compiler produces wrong results in configure.
683 * BUG 7503: Fix calculation of st_blocks in vfs_streams_xattr.
684 * BUG 7504: Fix numerous build issues.
685
686
687o Volker Lendecke <vl@samba.org>
688 * BUG 7253: Fix Samba login cache problem on Sparc Architecture.
689 * BUG 7262: Fix editing users' groups via UsrMgr.
690
691
692o Buchan Milne <bgmilne@mandriva.org>
693 * BUG 7500: Fix 'not a string literal' warning in netdomjoin-gui.
694
695
696o Matthieu Patou <mat@matws.net>
697 * BUG 7099: Allow previous password to be stored and use it to check
698 tickets.
699
700
701o Andreas Schneider <asn@samba.org>
702 * BUG 7423: Fix printing large formats.
703
704
705o Roel van Meer <rolek@bokxing.nl>
706 * BUG 7448: Fix smbd crash when sambaLMPassword and sambaNTPassword entries
707 missing from ldap.
708
709
710######################################################################
711Reporting bugs & Development Discussion
712#######################################
713
714Please discuss this release on the samba-technical mailing list or by
715joining the #samba-technical IRC channel on irc.freenode.net.
716
717If you do report problems then please try to send high quality
718feedback. If you don't provide vital information to help us track down
719the problem then you will probably be ignored. All bug reports should
720be filed under the Samba 3.5 product in the project's Bugzilla
721database (https://bugzilla.samba.org/).
722
723
724======================================================================
725== Our Code, Our Bugs, Our Responsibility.
726== The Samba Team
727======================================================================
728
729
[583]730----------------------------------------------------------------------
[480]731
[583]732
[480]733 =============================
734 Release Notes for Samba 3.5.3
735 May 19, 2010
736 =============================
737
738
739This is the latest stable release of Samba 3.5.
740
741Major enhancements in Samba 3.5.3 include:
742
743 o Fix MS-DFS functionality (bug #7339).
744 o Fix a Winbind crash when scanning trusts (bug #7389).
745 o Fix problems with SIGCHLD handling in Winbind (bug #7317).
746
747
748Changes since 3.5.2
749-------------------
750
751
752o Jeremy Allison <jra@samba.org>
753 * BUG 7288: Fix SMB job IDs in CUPS job names.
754 * BUG 7339: Fix MS-DFS functionality.
755
756
757o Andrew Bartlett <abartlet@samba.org>
758 * BUG 7354: Fix CLDAP tsocket problem on Solaris.
759
760
761o Ira Cooper <samba@ira.wakeful.net>
762 * BUG 7384: Fix bitmap leak in dptr_Close.
763
764
765o GÃŒnther Deschner <gd@samba.org>
766 * BUG 7277: Fix exporting printers via 'cupsaddsmb' command.
767 * BUG 7417: Fix setting of passwords via 'net rpc user password' command.
768 * BUG 7418: Fix 'net rpc printer list' command.
769
770
771o Olaf Flebbe <o.flebbe@science-computing.de>
772 * BUG 7421: Rename mod_name to module_name.
773
774
775o Björn Jacke <bj@sernet.de>
776 * BUG 7352: Make TIME_T_MAX defines consistent.
777 * BUG 7385: Fix building with Solaris' gcc.
778
779
780o Jeff Layton <jlayton@redhat.com>
781 * BUG 7315: Fix segfault in mount.cifs.
782
783
784o Volker Lendecke <vl@samba.org>
785 * BUG 7357: Re-fix a bug with smbd serving a windows terminal server.
786 * BUG 7389: Fix a Winbind crash when scanning trusts.
787 * BUG 7398: Fix rename problems with full_audit VFS module.
788
789
790o Jim McDonough <jmcd@samba.org>
791 * BUG 7378: Display an error on 'net conf import' failures.
792
793
794o Stefan Metzmacher <metze@samba.org>
795 * BUG 7196: Add replacement for IPV6_V6ONLY on linux systems with broken
796 headers.
797 * BUG 7317: Fix problems with SIGCHLD handling in Winbind.
798 * BUG 7354: Fix CLDAP tsocket problem on Solaris.
799
800
801o Luca Olivetti <luca@wetron.es>
802 * BUG 7263: Fix cups encryption setting.
803
804
805######################################################################
806Reporting bugs & Development Discussion
807#######################################
808
809Please discuss this release on the samba-technical mailing list or by
810joining the #samba-technical IRC channel on irc.freenode.net.
811
812If you do report problems then please try to send high quality
813feedback. If you don't provide vital information to help us track down
814the problem then you will probably be ignored. All bug reports should
815be filed under the Samba 3.5 product in the project's Bugzilla
816database (https://bugzilla.samba.org/).
817
818
819======================================================================
820== Our Code, Our Bugs, Our Responsibility.
821== The Samba Team
822======================================================================
823
824
825----------------------------------------------------------------------
826
827
828 =============================
[429]829 Release Notes for Samba 3.5.2
830 April 7, 2010
831 =============================
832
833
834This is the latest stable release of Samba 3.5.
835
836Major enhancements in Samba 3.5.2 include:
837
838 o Fix smbd segfaults in _netr_SamLogon for clients sending null domain
839 (bug #7237).
840 o Fix smbd segfaults in "waiting for connections" message (bug #7251).
841 o Fix an uninitialized variable read in smbd (bug #7254).
842 o Fix a memleak in Winbind (bug #7278).
843 o Fix Winbind reconnection to it's own domain (bug #7295).
844
845
846Changes since 3.5.1
847-------------------
848
849
850o Michael Adam <obnox@samba.org>
851 * BUG 7231: Fix automatic building of vfs_tsmsm if gpfs and dmapi are
852 present.
853 * BUG 7232: Fix race conditions in CTDB persistent transactions.
854 * BUG 7313: Make 'net conf addshare' atomic.
855 * BUG 7314: Eliminate race condition in creating/scanning sorted subkeys in
856 the registry backend.
857
858
859o Jeremy Allison <jra@samba.org>
860 * BUG 7075: Fix bug in vfs_scannedonly rmdir implementation.
861 * BUG 7159: Fix handling of bad server data returns in client rpc_transport.
862 * BUG 7234: Symlink delete fails but incorrectly reports success to client.
863 * BUG 7255: Fix "printer admin" functionality.
864 * BUG 7283: Fix smbd segfault if using vfs_acl_tdb.
865 * BUG 7297: Fix smbd crashes with CUPS printers and no [printers] share defined.
866 * BUG 7310: Fix DOS attribute inconsistency with MS Office.
867
868
869o Kai Blin <kai@samba.org>
870 * BUG 7290: Fix core dump in 'ntlm_auth' with "gss-spnego" helper.
871
872
873o GÃŒnther Deschner <gd@samba.org>
874 * BUG 6727: Fix several printing issues.
875 * BUG 7237: Fix smbd segfaults in _netr_SamLogon for clients sending
876 null domain.
877 * BUG 7256: Fix value-needed calculation in_spoolss_EnumPrinterData().
878 * BUG 7258: Fix _winreg_QueryValue crash bugs and implement Windows
879 behavior.
880
881
882o Holger Hetterich <hhetter@novell.com>
883 * BUG 7203: Fix 'net share' command.
884
885
886o Michael Karcher <samba@mkarcher.dialup.fu-berlin.de>
887 * BUG 7269: Fix job management commands for CUPS queues.
888
889
890o Jeff Layton <jlayton@redhat.com>
891 * BUG 6853: Fix race condition in mount.cifs that allows user to replace
892 mountpoint with a symlink.
893
894
895o Volker Lendecke <vl@samba.org>
896 * BUG 5198: Fix parsing of the gecos field.
897 * BUG 7202: Fix access by multi-threaded applications.
898 * BUG 7212: Fix returning of group members with 'getent group'.
899 * BUG 7216: Fix the build of net_afs.c with --fake-kaserver=yes.
900 * BUG 7229: Fix a NULL pointer dereference in smbd.
901 * BUG 7232: Fix race conditions in CTDB persistent transactions.
902 * BUG 7254: Fix an uninitialized variable read in smbd.
903 * BUG 7278: Fix a memleak in Winbind.
904
905
906o Roel van Meer <rolek@alt001.com>
907 * BUG 6814: Fix valgrind warning.
908
909
910o Stefan Metzmacher <metze@samba.org>
911 * BUG 7170: Never mark external domains as internal in Winbind.
912 * BUG 7225: Make Winbind logs more verbose for troubleshooting.
913 * BUG 7251: Fix smbd segfault in "waiting for connections" message.
914 * BUG 7295: Fix Winbind reconnection to it's own domain.
915 * BUG 7316: Winbind possibly segfaults when trying a trusted domain without
916 inbound trust.
917
918
919o SATOH Fumiyasu <fumiyas@osstech.co.jp>
920 * BUG 1206: Fix segfault if hide files or veto files has no ".AppleDouble".
921
922
923o Simo Sorce <idra@samba.org>
924 * BUG 7204: Fix DN parsing name was always null.
925
926
927o Andrew Tridgell <tridge@samba.org>
928 * BUG 7312: Many disconnecting clients render clustered Samba unusuable
929 for some time.
930
931
932o Bo Yang <boyang@samba.org>
933 * BUG 7206: Signals are processed twice in child.
934
935
936
937######################################################################
938Reporting bugs & Development Discussion
939#######################################
940
941Please discuss this release on the samba-technical mailing list or by
942joining the #samba-technical IRC channel on irc.freenode.net.
943
944If you do report problems then please try to send high quality
945feedback. If you don't provide vital information to help us track down
946the problem then you will probably be ignored. All bug reports should
947be filed under the Samba 3.5 product in the project's Bugzilla
948database (https://bugzilla.samba.org/).
949
950
951======================================================================
952== Our Code, Our Bugs, Our Responsibility.
953== The Samba Team
954======================================================================
955
[480]956----------------------------------------------------------------------
[429]957
958 =============================
959 Release Notes for Samba 3.5.1
960 March 8, 2010
961 =============================
962
963
964This is a security release in order to address CVE-2010-0728.
965
966
967o CVE-2010-0728:
968 In Samba releases 3.5.0, 3.4.6 and 3.3.11, new code
969 was added to fix a problem with Linux asynchronous IO handling.
970 This code introduced a bad security flaw on Linux platforms if the
971 binaries were built on Linux platforms with libcap support.
972 The flaw caused all smbd processes to inherit CAP_DAC_OVERRIDE
973 capabilities, allowing all file system access to be allowed
974 even when permissions should have denied access.
975
976
977Changes since 3.5.0
978-------------------
979
980
981o Jeremy Allison <jra@samba.org>
982 * BUG 7222: Fix for CVE-2010-0728.
983
984
985######################################################################
986Reporting bugs & Development Discussion
987#######################################
988
989Please discuss this release on the samba-technical mailing list or by
990joining the #samba-technical IRC channel on irc.freenode.net.
991
992If you do report problems then please try to send high quality
993feedback. If you don't provide vital information to help us track down
994the problem then you will probably be ignored. All bug reports should
995be filed under the Samba 3.5 product in the project's Bugzilla
996database (https://bugzilla.samba.org/).
997
998
999======================================================================
1000== Our Code, Our Bugs, Our Responsibility.
1001== The Samba Team
1002======================================================================
1003
1004
1005----------------------------------------------------------------------
1006
1007
1008 =============================
1009 Release Notes for Samba 3.5.0
1010 March 1, 2010
1011 ===============================
1012
1013
1014This is the first stable release of Samba 3.5.
1015
1016
1017Major enhancements in Samba 3.5.0 include:
1018
1019General changes:
1020o Add support for full Windows timestamp resolution
1021o The Using Samba HTML book has been removed.
1022o 'net', 'smbclient' and libsmbclient can use credentials cached by Winbind.
1023o The default value of "wide links" has been changed to "no".
1024
1025Protocol changes:
1026o Experimental implementation of SMB2
1027
1028Printing Changes:
1029o Add encryption support for connections to a CUPS server
1030
1031Winbind changes:
1032o Major refactoring
1033o Asynchronous
1034
1035VFS modules:
1036o New vfs_scannedonly module has been added.
1037
1038
1039General changes:
1040================
1041
1042Support for full Windows timestamp resolution has been added. This effectively
1043makes us use Windows' full 100ns timestamp resolution if supported by the
1044kernel (2.6.22 and higher) and the glibc (2.6 and higher).
1045
1046The Using Samba HTML book has been removed from the Samba tarball.
1047It is still available at http://www.samba.org/samba/docs/using_samba/toc.html.
1048
1049Samba client tools like 'net', 'smbclient' and libsmbclient can use the user
1050credentials cached by Winbind at logon time. This is very useful e.g. when
1051connecting to a Samba server using Nautilus without re-entering username and
1052password. This feature is enabled by default and can be disabled per application
1053by setting the LIBSMBCLIENT_NO_CCACHE environment variable.
1054
1055The default value of "wide links" has been changed to "no" to avoid an insecure
1056default configuration ("wide links = yes" and "unix extensions = yes"). For
1057more details, please see http://www.samba.org/samba/news/symlink_attack.html.
1058
1059
1060Protocol changes
1061================
1062
1063An EXPERIMENTAL implementation of the SMB2 protocol has been added. SMB2 can be
1064enabled by setting "max protocol = smb2". SMB2 is a new implementation of the
1065SMB protocol used by Windows Vista and higher.
1066
1067Printing Changes
1068================
1069
1070A new parameter "cups encrypt" has been added to control whether connections to
1071CUPS servers will be encrypted or not. The default is to use unencrypted
1072connections.
1073
1074Winbind changes
1075===============
1076
1077The Winbind daemon has been refactored internally to be asynchronous. The new
1078Winbind will not be blocked by running 'getent group' or 'getent passwd'.
1079
1080VFS modules
1081===========
1082
1083A new VFS module "scannedonly" has been added. This is a filter that
1084talks to an antivirus-engine and stores whether a file is clean or not.
1085Users do only see clean files on their filesystem.
1086
1087
1088######################################################################
1089Changes
1090#######
1091
1092smb.conf changes
1093----------------
1094
1095 Parameter Name Description Default
1096 -------------- ----------- -------
1097
1098 create krb5 conf New yes
1099 ctdb timeout New 0
1100 cups encrypt New no
1101 debug hires timestamp Changed Default yes
1102 ldap deref New auto
1103 ldap follow referral New auto
1104 nmbd bind explicit broadcast New no
1105 wide links Changed Default no
1106
1107
1108New configure options
1109---------------------
1110
1111--enable-external-libtdb Enable external tdb
1112--enable-netapi Turn on netapi support
1113--enable-pthreadpool Enable pthreads pool helper support
1114--with-cifsumount Include umount.cifs (Linux only) support
1115--with-codepagedir=DIR Where to put codepages
1116
1117
1118Commit Highlights
1119=================
1120
1121o Björn Jacke <bj@sernet.de>
1122 * Add support for full Windows timestamp resolution.
1123 * Add encryption support for connections to a CUPS server.
1124
1125
1126o Volker Lendecke <vl@samba.org>
1127 * Major internal refactoring of the Winbind daemon.
1128 * Make Winbind asynchronous.
1129 * Make 'net', 'smbclient' and libsmbclient use the logon credentials cached
1130 by Winbind.
1131
1132
1133o Stefan Metzmacher <metze@samba.org>
1134 * Implement the new SMB2 protocol (experimental).
1135
1136
1137Changes since 3.5.0rc3
1138----------------------
1139
1140
1141o GÃŒnther Deschner <gd@samba.org>
1142 * BUG 7181: Fix 'net ads dns' usage calls.
1143 * BUG 7182: Fix uninitialized variable in wkssvc_enumerateusers.
1144
1145
1146o Volker Lendecke <vl@samba.org>
1147 * BUG 7145: Fix duplicate sam and unix accounts.
1148 * BUG 7166: Avoid calling cli_alloc_mid twice in cli_smb_req_iov_send.
1149
1150
1151o Stefan Metzmacher <metze@samba.org>
1152 * BUG 7160: Keep the the correct negotiate_flags on the cli->dc structure.
1153
1154
1155Changes since 3.5.0rc2
1156----------------------
1157
1158
1159o Jeremy Allison <jra@samba.org>
1160 * BUG 6557: Fix vfs_full_audit.
1161 * BUG 6876: Fix duplicate initializer in the rmdir module.
1162 * BUG 7063: Fix core dump on Ubuntu 8.04 64 bit.
1163 * BUG 7067: Fix failing of smbd to respond to a read or a write caused by
1164 Linux asynchronous IO (aio).
1165 * BUG 7069: Fix 'smbget' error status.
1166 * BUG 7072: Fix unlocking of accounts from ldap.
1167 * BUG 7079 Cliconnect gets realm wrong with trusted domains.
1168 * BUG 7081: Fix vfs_expand_msdfs.
1169 * BUG 7084: Fix storing of create time on directories in an EA in new
1170 create time code.
1171 * BUG 7104: "wide links" and "unix extensions" are incompatible.
1172 * BUG 7118: Fix nmbd problems with socket address.
1173 * BUG 7122: Fix reading of large browselist.
1174 * BUG 7154: "mangling method = hash" can crash storing a name containing a '.'.
1175 * BUG 7155: Valgrind Conditional jump or move depends on uninitialised
1176 value(s) error when "mangling method = hash"..
1177
1178
1179o Steven Danneman <steven.danneman@isilon.com>
1180 * BUG 7096: Fix string buffer overflow causing heap corruption in smbd.
1181
1182
1183o GÃŒnther Deschner <gd@samba.org>
1184 * BUG 6888: Fix printing with 64 bit clients.
1185 * BUG 7130: Fix listing of printjobs in Windows 7.
1186 * BUG 7148: Fix get_acl_blob in the acl_tdb VFS module.
1187
1188
1189o Björn Jacke <bj@sernet.de>
1190 * BUG 7103: Fix build issue on Tru64.
1191 * BUG 7116: Change ldap filter to what really was intended.
1192 * Fix some wrong newlines in de translation strings.
1193
1194
1195o Jeff Layton <jlayton@redhat.com>
1196 * BUG 6868: Fix crash bug in 'cifs.upcall'.
1197
1198
1199o Volker Lendecke <vl@samba.org>
1200 * BUG 7085: Fix an early release of the global lock that can cause data
1201 corruption in libtdb.
1202 * BUG 7139: Owner of file not available with Kerberos.
1203
1204
1205o Stefan Metzmacher <metze@samba.org>
1206 * BUG 6888: Fix printing with 64 bit clients.
1207 * BUG 7098: Fix results of 'smbclient -L' with a large browse list.
1208 * BUG 7116: Add pdb_ldap performance fixes.
1209 * BUG 7118: Add new "nmbd bind explicit broadcast" parameter.
1210 * BUG 7119: Support large browselist.
1211 * BUG 7140: Fix IPv4/IPv6 problems.
1212
1213
1214o Lars MÃŒller <lars@samba.org>
1215 * BUG 7071: Fix build of 'smbfilter'.
1216 * BUG 7047: Add cross option to samba_cv_linux_getgrouplist_ok.
1217 * BUG 7102: Normalize "Changing password for" msg IDs and STRs.
1218
1219
1220o Olivier Sessink <olivier@virtscano.fakenet>
1221 * BUG 7076: Fix build of vfs_scannedonly on AIX.
1222
1223
1224o Bo Yang <boyang@samba.org>
1225 * BUG 7106: Fix malformed require_membership_of_sid.
1226
1227
1228
1229Changes since 3.5.0rc1
1230----------------------
1231
1232
1233o Michael Adam <obnox@samba.org>
1234 * BUG 4347: Check password history before increasing "badPasswordCount".
1235
1236
1237o Jeremy Allison <jra@samba.org>
1238 * BUG 5202: Fix changing of ACLs on writable file with "dos filemode=yes".
1239 * BUG 6876: Fix deletion of an object whose parent folder does not have delete
1240 rights fails even if the delete right is set on the object in
1241 vfs_acl_xattr and vfs_acl_tdb.
1242 * BUG 7033: Fix SMBrmdir error message when deleting a directory fails.
1243 * BUG 7036: Fix 'net rpc getsid' in hardened Windows environments.
1244 * BUG 7045: Fix bad (non memory copying) interfaces in smbc_setXXXX calls.
1245
1246
1247o Giovanni Bajo <rasky@develer.com>
1248 * BUG 7029: Disable sanity check in NetShareEnum for better compatibility
1249 with Windows.
1250
1251
1252o Kai Blin <kai@samba.org>
1253 * BUG 7039: Fix compile error with WITH_DNS_UPDATE. Update .po files.
1254
1255
1256o GÃŒnther Deschner <gd@samba.org>
1257 * BUG 7043: Fix crash bug in libsmbclient.
1258
1259
1260o André Hentschel <nerv@dawncrow.de>
1261 * BUG 7039: Complete German translation of 'net'.
1262
1263
1264o Björn Jacke <bj@sernet.de>
1265 * BUG 7039: Improve some German translations in 'net'.
1266
1267
1268o William Jojo <w.jojo@hvcc.edu>
1269 * BUG 7052: Fix DFS on AIX.
1270
1271
1272o Volker Lendecke <vl@samba.org>
1273 * BUG 6981: Fix large paged search with DirX LDAP servers.
1274 * BUG 7027: Fix a segfault in winbindd_dual_ccache_ntlm_auth().
1275 * BUG 7037: Fix a Winbind segfault in "trusted_domains".
1276 * BUG 7046: Fix libsmbclient crash against OpenSolaris CIFS server.
1277 * BUG 7062: Make 'net', 'smbclient' and libsmbclient use the logon
1278 credentials cached by Winbind.
1279 * Lock down some srvsvc calls according to what w2k3 seems to do.
1280
1281
1282o Stefan Metzmacher <metze@samba.org>
1283 * BUG 6157: Restore Samba 3.0.x behavior and use the first "uid" value in
1284 pdb_ldap.
1285
1286
1287o SASAJIMA Toshihiro <sasajima_t@jp.fujitsu.com>
1288 * BUG 7034: Fix segfault in vfs_cap.
1289
1290
1291o Olivier Sessink <oliviersessink@gmail.com>
1292 * BUG 7028: Add new scannedonly VFS module.
1293
1294
1295Changes since 3.5.0pre2
1296-----------------------
1297
1298o Jeremy Allison <jra@samba.org>
1299 * BUG 6837: Fix "Too many open files" when trying to access large number of
1300 files with Windows 7.
1301 * BUG 6939: Fix long filenames when "mangling method" is set to "hash".
1302 * BUG 7020: Fix smbd using 2G memory.
1303 * Ensure dos_mode can return FILE_ATTRIBUTE_NORMAL, then filter the returned
1304 attributes by protocol level.
1305 * Vector correctly through reply_openerror() (which uses the same logic).
1306 * Fix bugs with the full Windows ACL support.
1307
1308
1309o Kai Blin <kai@samba.org>
1310 * Add a few missing gettext calls to the 'net' command.
1311 * Fix up a share type translation and translate some more strings in 'net'.
1312
1313
1314o GÃŒnther Deschner <gd@samba.org>
1315 * Allow to call "pdbedit -N description -u user" without specifiyng "-r".
1316 * Add spoolss_DriverInfo7.
1317 * Fix rpcclient after setprinter IDL fixes.
1318 * Use generated krb5.conf in 'net ads testjoin'.
1319
1320
1321o Jonas Gorski <jonas.gorski+samba@gmail.com>
1322 * BUG 6992: make test for getgrouplist cacheable.
1323
1324
1325o André Hentschel <nerv@dawncrow.de>
1326 * Add some German translations for the 'net' command.
1327
1328
1329o Suresh Jayaraman <sjayaraman@suse.de>
1330 * Update mount.cifs man page with nounix option.
1331
1332
1333o Volker Lendecke <vl@samba.org>
1334 * Fix _samr_GetAliasMembership for results with 0 rids.
1335 * Fix an error case in cli_negprot.
1336 * Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dc.
1337 * Restore correct timeouts for SMB requests.
1338 * Fix a 64-bit error in libsmb.
1339 * Replace IS_DOMAIN_OFFLINE by a function in Winbind.
1340 * Simplify/cleanup Winbind code.
1341
1342
1343o Kamen Mazdrashki <kamen.mazdrashki@postpath.com>
1344 * Fix write behind memory block in libtalloc.
1345 * Fix result check for getaddrinfo().
1346
1347
1348o Jim McDonough <jmcd@samba.org>
1349 * BUG 7014: Fix Winbind crash when retrieving empty group members.
1350
1351
1352o Brian Lu <brian.lu@sun.com>
1353 * BUG 6991: Create symbol links to shared libraries.
1354
1355
1356o Stefan Metzmacher <metze@samba.org>
1357 * Add tsocket_address_bsd_sockaddr() and tsocket_address_bsd_from_sockaddr()
1358 to tsocket.
1359 * Always set tdb->tracefd to -1 to be safe on goto fail in libtdb.
1360 * Add TDB_DISALLOW_NESTING and make TDB_ALLOW_NESTING the default behavior.
1361 * Fix standalone 'make installdocs'.
1362
1363
1364o Peter Rosin <peda@lysator.liu.se>
1365 * Output %p as unsigned in snprintf replacement.
1366
1367
1368o Ronnie Sahlberg <ronniesahlberg@gmail.com>
1369 * New attempt at TDB transaction nesting allow/disallow.
1370
1371
1372o Kirill Smelkov <kirr@mns.spb.ru>
1373 * Remove swig stuff from libtdb.
1374 * Reset tdb->fd to -1 in tdb_close() in libtdb.
1375
1376
1377o Simo Sorce <idra@samba.org>
1378 * Change the way mksysms work in libtalloc.
1379
1380
1381o Jelmer Vernooij <jelmer@samba.org>
1382 * Also build and install tdb manpages from standalone tdb.
1383
1384
1385o Bo Yang <boyang@samba.org>
1386 * Fix infinite loop in NCACN_IP_TCP as there is no timeout.
1387 * Make winbindd_cache.c aware of domain offline to avoid unnecessary backend
1388 query.
1389 * List trusted domains from wcache when domain is offline.
1390
1391
1392Changes since 3.5.0pre1
1393-----------------------
1394
1395o Michael Adam <obnox@samba.org>
1396 * Fix the build when no external talloc and tdb are installed.
1397 * Fix detection of CTDB headers on systems without system-libtalloc.
1398
1399
1400o Jeremy Allison <jra@samba.org>
1401 * BUG 6802: A created folder does not properly inherit permissions from
1402 parent in vfs_acl_xattr.
1403 * BUG 6837: "Too many open files" when trying to access large number of
1404 files from Windows 7.
1405 * BUG 6938 : No hook exists to check creation rights when using acl_xattr
1406 module.
1407 * Fix vfs_acl_xattr which was failing to call the NEXT connect function.
1408 * Restructure the ACL code.
1409 * Refactor reply_rmdir to use handle based code.
1410
1411
1412o Dan Cox <dan@wep.net>
1413 * BUG 2350: Add LDAP Alias Dereferencing support.
1414
1415
1416o GÃŒnther Deschner <gd@samba.org>
1417 * BUG 6929: Fix build with recent heimdal.
1418 * Fix several printing issues.
1419 * Fix the build on Mac OS X 10.6.2.
1420 * Fix net and rpcclient after setprinterdataex changes.
1421 * Add full support for level 8 printer drivers.
1422 * Add more spoolss architectures to IDL.
1423 * Fix enumprinter key client and server.
1424 * Fix crash in EnumPrinterDataEx.
1425
1426
1427o Björn Jacke <bj@sernet.de>
1428 * Prefer posix_fallocate for doing "strict allocate".
1429
1430
1431o Matt Kraai <mkraai@beckman.com>
1432 * BUG 6860: Fix shared library build on QNX.
1433
1434
1435o Volker Lendecke <vl@samba.org>
1436 * BUG 6288: SWAT adds a second share when changing parameters of an existing
1437 share.
1438 * BUG 6435: Fix minor memory corruption.
1439 * Restore "fake directory create times" as a share parameter.
1440 * Fix explicit stat64 support.
1441 * Add support for NetWkstaGetInfo 101 and 102.
1442 * Add rpcclient wkssvc_enumerateusers.
1443 * De-deprecate "write cache size" to prevent its removal without a proper
1444 alternative.
1445 * Allow more than 1000 users in BUILTIN\Users.
1446
1447
1448o Jim McDonough <jmcd@samba.org>
1449 * BUG 6967: Prevent glibc error on 'net ads join'.
1450
1451
1452o Lars MÃŒller <lars@samba.org>
1453 * BUG 6710: Only install the cifs.upcall man page if CIFSUPCALL_PROGS was
1454 set while configure.
1455
1456
1457o Ian Puleston <ipuleston@sonicwall.com>
1458 * Complete support for NetWkstaGetInfo/NetWkstaEnumUsers.
1459
1460
1461o Karolin Seeger <kseeger@samba.org>
1462 * Fix the build of the example VFS modules.
1463
1464
1465o Bo Yang <boyang@samba.org>
1466 * BUG 6879: Fix crash in Winbind.
1467 * Fix crash in free_file_list().
1468 * Give the user a chance to change password when password will expire soon.
1469
1470
1471######################################################################
1472Reporting bugs & Development Discussion
1473#######################################
1474
1475Please discuss this release on the samba-technical mailing list or by
1476joining the #samba-technical IRC channel on irc.freenode.net.
1477
1478If you do report problems then please try to send high quality
1479feedback. If you don't provide vital information to help us track down
1480the problem then you will probably be ignored. All bug reports should
1481be filed under the Samba 3.5 product in the project's Bugzilla
1482database (https://bugzilla.samba.org/).
1483
1484
1485======================================================================
1486== Our Code, Our Bugs, Our Responsibility.
1487== The Samba Team
1488======================================================================
Note: See TracBrowser for help on using the repository browser.