forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWHATSNEW.txt
3066 lines (2049 loc) · 105 KB
/
WHATSNEW.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
==============================
Release Notes for Samba 4.0.26
May 6, 2015
==============================
This is the last bug-fix release of the Samba 4.1 release series.
There will be security releases only starting from now.
Changes since 4.0.25:
---------------------
o Jeremy Allison <[email protected]>
* BUG 10982: s3: smbd: Fix *allocate* calls to follow POSIX error return
convention.
* BUG 11094: s3: smbclient: Allinfo leaves the file handle open.
o Christian Ambach <[email protected]>
* BUG 9629: Fix 'profiles' tool.
o Ira Cooper <[email protected]>
* BUG 11115: smbd: Stop using vfs_Chdir after SMB_VFS_DISCONNECT.
o David Disseldorp <[email protected]>
* BUG 10808: printing/cups: Pack requested-attributes with IPP_TAG_KEYWORD.
* BUG 11059: libsmb: Provide authinfo domain for encrypted session
referrals.
o Volker Lendecke <[email protected]>
* BUG 11041: smbd: Fix CID 1063259 Uninitialized scalar variable.
* BUG 11051: net: Fix 'net sam addgroupmem'.
o Stefan Metzmacher <[email protected]>
* BUG 9299: nsswitch: Fix soname of linux nss_*.so.2 modules.
* BUG 9702: s3:smb2_server: Protect against integer wrap with "smb2 max
credits = 65535".
* BUG 10949: s4:dsdb/rootdse: Expand extended dn values with the AS_SYSTEM
control.
* BUG 10958: libcli/smb: Nnly force signing of smb2 session setups when
binding a new session.
* BUG 11144: Fix memory leak in SMB2 notify handling.
* BUG 11164: s4:auth/gensec_gssapi: Let gensec_gssapi_update() return
NT_STATUS_LOGON_FAILURE for unknown errors.
o Christof Schmitt <[email protected]>
* BUG 11034: winbind: Retry after SESSION_EXPIRED error in ping-dc.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
Release notes for older releases follow:
----------------------------------------
==============================
Release Notes for Samba 4.0.25
February 23, 2015
==============================
This is a security release in order to address CVE-2015-0240 (Unexpected
code execution in smbd).
o CVE-2015-0240:
All versions of Samba from 3.5.0 to 4.2.0rc4 are vulnerable to an
unexpected code execution vulnerability in the smbd file server
daemon.
A malicious client could send packets that may set up the stack in
such a way that the freeing of memory in a subsequent anonymous
netlogon packet could allow execution of arbitrary code. This code
would execute with root privileges.
Changes since 4.0.24:
---------------------
o Jeremy Allison <[email protected]>
* BUG 11077: CVE-2015-0240: talloc free on uninitialized stack pointer
in netlogon server could lead to security vulnerability.
o Andreas Schneider <[email protected]>
* BUG 11077: CVE-2015-0240: s3-netlogon: Make sure we do not deference
a NULL pointer./auth: Make sure that creds_out is initialized with NULL.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.24
January 15, 2015
==============================
This is a security release in order to address CVE-2014-8143 (Elevation
of privilege to Active Directory Domain Controller).
o CVE-2014-8143:
Samba's AD DC allows the administrator to delegate
creation of user or computer accounts to specific users or groups.
However, all released versions of Samba's AD DC did not implement the
additional required check on the UF_SERVER_TRUST_ACCOUNT bit in the
userAccountControl attributes.
Changes since 4.0.23:
---------------------
o Andrew Bartlett <[email protected]>
* BUG 10993: CVE-2014-8143: dsdb-samldb: Check for extended access
rights before we allow changes to userAccountControl.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.23
December 08, 2014
==============================
This is the latest stable release of Samba 4.0.
Changes since 4.0.22:
---------------------
o Michael Adam <[email protected]>
* BUG 10472: Revert buildtools/wafadmin/Tools/perl.py back to upstream
state.
o Jeremy Allison <[email protected]>
* BUG 10711: s3:daemons: Ensure nmbd and winbindd are consistent in
command line processing by adding POPT_COMMON_DYNCONFIG.
* BUG 10779: pthreadpool: Slightly serialize jobs.
* BUG 10830: s3:nmbd: Ensure the main nmbd process doesn't create zombies.
* BUG 10831: SIGCLD Signal handler not correctly reinstalled on old library
code use - smbrun etc.
* BUG 10848: s3:smb2cli: Query info return length check was reversed.
* BUG 10896: s3:nmbd: Fix netbios name truncation.
o Günther Deschner <[email protected]>
* BUG 9984: s3-libnet: Make sure we do not overwrite precreated SPNs.
o David Disseldorp <[email protected]>
* BUG 10898: spoolss: Fix handling of bad EnumJobs levels.
* BUG 10905: spoolss: Fix print job enumeration.
o Björn Jacke <[email protected]>
* BUG docs: Mention incompatibility between kernel oplocks and
streams_xattr.
o Volker Lendecke <[email protected]>
* BUG 10860: registry: Don't leave dangling transactions.
* BUG 10932: pdb_tdb: Fix a TALLOC/SAFE_FREE mixup.
o Stefan Metzmacher <[email protected]>
* BUG 10472: Revert buildtools/wafadmin/Tools/perl.py back to upstream
state.
* BUG 10921: s3:smbd: Fix file corruption using "write cache size != 0".
o Christof Schmitt <[email protected]>
* BUG 10838: s3-winbindd: Do not use domain SID from LookupSids for
* Sids2UnixIDs call.
o Andreas Schneider <[email protected]>
* BUG 9984: s3-libnet: Add libnet_join_get_machine_spns().
* BUG 9985: s3-libads: Add all machine account principals to the keytab.
* BUG 10472: wafsamba: If perl can't provide defaults, define them.
* BUG 10824: nsswitch: Skip groups we were not able to map.
* BUG 10829: s3-libads: Improve service principle guessing.
o Richard Sharpe <[email protected]>
* BUG: source3/smbd/process.c::srv_send_smb() returns true on the error
path.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.22
September 15, 2014
==============================
This is the latest stable release of Samba 4.0.
Major enhancements in Samba 4.0.22 include:
o New parameter "winbind request timeout" has been added (bug #3204). Please
see smb.conf man page for details.
Changes since 4.0.21:
---------------------
o Michael Adam <[email protected]>
* BUG 10369: build: Fix configure to honour '--without-dmapi'.
o Jeremy Allison <[email protected]>
* BUG 3204: s3: winbindd: On new client connect, prune idle or hung
connections older than "winbind request timeout". Add new parameter
"winbind request timeout".
* BUG 10640: lib: tevent: make TEVENT_SIG_INCREMENT atomic.
* BUG 10650: Make "case sensitive = True" option working with
"max protocol = SMB2" or higher in large directories.
* BUG 10728: 'net time': Fix usage and core dump.
* BUG 10773: s3: smbd: POSIX ACLs. Remove incorrect check for
SECINFO_PROTECTED_DACL in incoming security_information flags in
posix_get_nt_acl_common().
* BUG 10794: vfs_dirsort: Fix an off-by-one error that can
cause uninitialized memory read.
o Björn Baumbach <[email protected]>
* BUG 10543: s3: Enforce a positive allocation_file_size for non-empty
files.
o David Disseldorp <[email protected]>
* BUG 10652: Samba 4 consuming a lot of CPU when re-reading printcap info.
* BUG 10787: dosmode: Fix FSCTL_SET_SPARSE request validation.
o Amitay Isaacs <[email protected]>
* BUG 10742: s4-rpc: dnsserver: Allow . to be specified for @ record.
o Daniel Kobras <[email protected]>
* BUG 10731: sys_poll_intr: Fix timeout arithmetic.
o Ross Lagerwall <[email protected]>
* BUG 10778: s3:libsmb: Set a max charge for SMB2 connections.
o Volker Lendecke <[email protected]>
* BUG 10758: lib: Remove unused nstrcpy.
* BUG 10782: smbd: Properly initialize mangle_hash.
o Stefan Metzmacher <[email protected]>
* BUG 10773: libcli/security: Add better detection of
SECINFO_[UN]PROTECTED_[D|S]ACL in get_sec_info().
o Marc Muehlfeld <[email protected]>
* BUG 10761: docs: Fix typos in smb.conf (inherit acls).
o Shirish Pargaonkar <[email protected]>
* BUG 10755: samba: Retain case sensitivity of cifs client.
o Arvid Requate <[email protected]>
* BUG 9570: passdb: Fix NT_STATUS_NO_SUCH_GROUP.
o Har Gagan Sahai <[email protected]>
* BUG 10759: Fix a memory leak in cli_set_mntpoint().
o Roel van Meer <[email protected]>
* BUG 10777: Don't discard result of checking grouptype.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.21
August 1, 2014
==============================
This is a security release in order to address
CVE-2014-3560 (Remote code execution in nmbd).
o CVE-2014-3560:
Samba 4.0.0 to 4.1.10 are affected by a remote code execution attack on
unauthenticated nmbd NetBIOS name services.
A malicious browser can send packets that may overwrite the heap of
the target nmbd NetBIOS name services daemon. It may be possible to
use this to generate a remote code execution vulnerability as the
superuser (root).
Changes since 4.1.20:
---------------------
o Volker Lendecke <[email protected]>
* BUG 10735: CVE-2014-3560: Fix unstrcpy macro length.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.20
July 30, 2014
==============================
This is the latest stable release of the Samba 4.0 release series.
Changes since 4.0.19:
---------------------
o Jeremy Allison <[email protected]>
* BUG 3124: s3: smb2: Fix 'xcopy /d' with samba shares.
* BUG 10653: Samba won't start on a machine configured with only IPv4.
* BUG 10673: s3: SMB2: Fix leak of blocking lock records in the database.
* BUG 10684: SMB1 blocking locks can fail notification on unlock, causing
client timeout.
* BUG 10685: s3: smbd: Locking, fix off-by one calculation in
brl_pending_overlap().
* BUG 10692: wbcCredentialCache fails if challenge_blob is not first.
o Andrew Bartlett <[email protected]>
* BUG 10627: rid_array used before status checked - segmentation fault due
to null pointer dereference.
o David Disseldorp <[email protected]>
* BUG 10612: printing: Fix purge of all print jobs.
o Björn Jacke <[email protected]>
* BUG 3263: net/doc: Make clear that net vampire is for NT4 domains only.
* BUG 10657: autobuild: Delete $NSS_MODULES in "make clean".
o Volker Lendecke <[email protected]>
* BUG 10663: msg_channel: Fix a 100% CPU loop.
* BUG 10680: smbstatus: Fix an uninitialized variable.
* BUG 10687: 'RW2' smbtorture test fails when -N <numprocs> is set to 2 due
to the invalid status check in the second client.
* BUG 10699: smbd: Avoid double-free in get_print_db_byname.
o Stefan Metzmacher <[email protected]>
* BUG 10469: ldb-samba: fix a memory leak in
ldif_canonicalise_objectCategory().
* BUG 10692: wbcCredentialCache fails if challenge_blob is not first.
* BUG 10696: Backport autobuild/selftest fixes from master.
* BUG 10706: s3:smb2_read: let smb2_sendfile_send_data() behave like
send_file_readX().
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.19
June 23, 2014
==============================
This is a security release in order to address
CVE-2014-0244 (Denial of service - CPU loop) and
CVE-2014-3493 (Denial of service - Server crash/memory corruption).
o CVE-2014-0244:
All current released versions of Samba are vulnerable to a denial of
service on the nmbd NetBIOS name services daemon. A malformed packet
can cause the nmbd server to loop the CPU and prevent any further
NetBIOS name service.
This flaw is not exploitable beyond causing the code to loop expending
CPU resources.
o CVE-2014-3493:
All current released versions of Samba are affected by a denial of service
crash involving overwriting memory on an authenticated connection to the
smbd file server.
Changes since 4.0.18:
---------------------
o Jeremy Allison <[email protected]>
* BUG 10633: CVE-2014-0244: Fix nmbd denial of service.
* BUG 10654: CVE-2014-3493: Fix segmentation fault in
smbd_marshall_dir_entry()'s SMB_FIND_FILE_UNIX handler.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.18
May 27, 2014
==============================
This is the latest stable release of Samba 4.0.
Please note that this bug fix release also addresses two minor security issues
without being a dedicated security release:
o CVE-2014-0239: dns: Don't reply to replies (bug #10609).
o CVE-2014-0178: Malformed FSCTL_SRV_ENUMERATE_SNAPSHOTS response
(bug #10549).
For more details including security advisories and patches, please see
http://www.samba.org/samba/history/security.html
Changes since 4.0.17:
---------------------
o Michael Adam <[email protected]>
* BUG 10548: build: Fix ordering problems with lib-provided and internal
RPATHs.
o Jeremy Allison <[email protected]>
* BUG 10577: SMB1 wildcard unlink fail can leave a retry record on the open
retry queue.
* BUG 10564: Fix lock order violation and file lost.
o Björn Baumbach <[email protected]>
* BUG 10239: s3-nmbd: Reset debug settings after reading config file.
* BUG 10544: s3-lib/util: set_namearray reads across end of namelist
string.
* BUG 10556: lib-util: Rename memdup to smb_memdup and fix all callers.
o Kai Blin <[email protected]>
* BUG 10609: CVE-2014-0239: dns: Don't reply to replies.
o David Disseldorp <[email protected]>
* BUG 10590: byteorder: Do not assume PowerPC is big-endian.
o Stefan Metzmacher <[email protected]>
* BUG 10472: script/autobuild: Make use of
'--with-perl-{arch,lib}-install-dir'.
o Noel Power <[email protected]>
* BUG 10554: Fix read of deleted memory in reply_writeclose()'.
o Jose A. Rivera <[email protected]>
* BUG 10151: Extra ':' in msg for Waf Cross Compile Build System with
Cross-answers command.
* BUG 10348: Fix empty body in if-statement in continue_domain_open_lookup.
o Christof Schmitt <[email protected]>
* BUG 10549: CVE-2014-0178: Malformed FSCTL_SRV_ENUMERATE_SNAPSHOTS
response.
o Andreas Schneider <[email protected]>
* BUG 10472: wafsamba: Fix the installation on FreeBSD.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.17
April 15, 2014
==============================
This is the latest stable release of Samba 4.0.
Changes since 4.0.16:
---------------------
o Jeremy Allison <[email protected]>
* BUG 9878: Make "force user" work as expected.
* BUG 9942: Fix problem with server taking too long to respond to a
MSG_PRINTER_DRVUPGRADE message.
* BUG 9993: s3-printing: Fix obvious memory leak in
printer_list_get_printer().
* BUG 10344: SessionLogoff on a signed connection with an outstanding notify
request crashes smbd.
* BUG 10431: Fix STATUS_NO_MEMORY response from Query File Posix Lock request.
* BUG 10508: smbd: Correctly add remote users into local groups.
* BUG 10534: Cleanup messages.tdb record after unclean smbd shutdown.
o Christian Ambach <[email protected]>
* BUG 9911: Fix build on AIX with IBM XL C/C++ (gettext detection issues).
* BUG 10308: Fix String Conversion Errors with Samba 4.1.0 Build on AIX 7.1.
o Andrew Bartlett <[email protected]>
* smbd: Split create_conn_struct into a fn that does not change the
working dir.
o Gregor Beck <[email protected]>
* BUG 10458: Fix 'wbinfo -i' with one-way trust.
* s3:rpc_server: Minor refactoring of process_request_pdu().
o Kai Blin <[email protected]>
* BUG 10471: Don't respond with NXDOMAIN to records that exist with another
type.
o Alexander Bokovoy <[email protected]>
* BUG 10504: lsa.idl: Define lsa.ForestTrustCollisionInfo and
ForestTrustCollisionRecord as public structs.
o Günther Deschner <[email protected]>
* BUG 10439: Increase max netbios name components.
o David Disseldorp <[email protected]>
* BUG 10188: doc: Add "spoolss: architecture" parameter usage.
* BUG 10484: Initial FSRVP rpcclient requests fail with
NT_STATUS_PIPE_NOT_AVAILABLE.
o Daniel Liberman <[email protected]>
* BUG 10387: 'net ads search' on high latency networks can return a partial
list with no error indication.
o Stefan Metzmacher <[email protected]>
* BUG 10344: SessionLogoff on a signed connection with an outstanding notify
request crashes smbd.
* BUG 10422: max xmit > 64kb leads to segmentation fault.
* BUG 10444: smbd_server_connection_terminate("CTDB_SRVID_RELEASE_IP")
panics from within ctdbd_migrate() with invalid lock_order.
* BUG 10464: samba4 services not binding on IPv6 addresses causing
connection delays.
* tevent: Fix crash bug in tevent_queue_immediate_trigger().
o Garming Sam <[email protected]>
* BUG 10378: dfs: Always call create_conn_struct with root privileges.
o Andreas Schneider <[email protected]>
* BUG 10472: pidl: waf should have an option for the dir to install perl
files and do not glob.
* BUG 10474: s3-spoolssd: Don't register spoolssd if epmd is not running.
* BUG 10481: s3-rpc_server: Fix handling of fragmented rpc requests.
o Gustavo Zacarias <[email protected]>
* BUG 10506: Make 'smbreadline' build with readline 6.3.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.16
March 11, 2014
==============================
This is a security release in order to address
CVE-2013-4496 (Password lockout not enforced for SAMR password changes) and
CVE-2013-6442 (smbcacls can remove a file or directory ACL by mistake).
o CVE-2013-4496:
Samba versions 3.4.0 and above allow the administrator to implement
locking out Samba accounts after a number of bad password attempts.
However, all released versions of Samba did not implement this check for
password changes, such as are available over multiple SAMR and RAP
interfaces, allowing password guessing attacks.
o CVE-2013-6442:
Samba versions 4.0.0 and above have a flaw in the smbcacls command. If
smbcacls is used with the "-C|--chown name" or "-G|--chgrp name"
command options it will remove the existing ACL on the object being
modified, leaving the file or directory unprotected.
Changes since 4.0.15:
---------------------
o Jeremy Allison <[email protected]>
* BUG 10327: CVE-2013-6442: ensure we don't lose an existing ACL when
setting owner or group owner.
o Andrew Bartlett <[email protected]>
* BUG 10245: CVE-2013-4496: Enforce password lockout for SAMR password
changes.
o Stefan Metzmacher <[email protected]>
* BUG 10245: CVE-2013-4496: Enforce password lockout for SAMR password
changes.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.15
February 18, 2014
==============================
This is the latest stable release of Samba 4.0.
Changes since 4.0.14:
---------------------
o Michael Adam <[email protected]>
* BUG 10259: Make shadow_copy2 module working with Windows 7.
o Alistair Leslie-Hughes <[email protected]>
* BUG 10087: ntlm_auth sometimes returns the wrong username to
mod_ntlm_auth_winbind.
o Jeremy Allison <[email protected]>
* BUG 2662: Make revamped directory handling code 64bit clean.
* BUG 10358: Fix 100% CPU utilization in winbindd when trying to free
memory in winbindd_reinit_after_fork.
* BUG 10429: s3: modules: streaminfo: As we have no VFS function
SMB_VFS_LLISTXATTR we can't cope with a symlink when lp_posix_pathnames()
is true.
o Christian Ambach <[email protected]>
* BUG 0280: s3:winbindd: Fix use of uninitialized variables.
o Andrew Bartlett <[email protected]>
* BUG 10418: Fix INTERNAL ERROR: Signal 11 in the kdc pid.
o Jeffrey Clark <[email protected]>
* BUG 10418: Add support for Heimdal's unified krb5 and hdb plugin system.
o Volker Lendecke <[email protected]>
* BUG 2191: s3-winbind: Improve performance of wb_fill_pwent_sid2uid_done().
* BUG 10415: smbd: Fix memory overwrites.
* BUG 10436: smbd: Fix an ancient oplock bug.
o Stefan Metzmacher <[email protected]>
* BUG 10442: Fix crash bug in smb2_notify code.
o Jelmer Vernooij <[email protected]>
* BUG 10418: Cope with first element in hdb_method having a different name
in different heimdal versions.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
======================================================================
== Our Code, Our Bugs, Our Responsibility.
== The Samba Team
======================================================================
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.14
January 7, 2014
==============================
This is the latest stable release of Samba 4.0.
Major enhancements in Samba 4.0.14 include:
o Fix segfault in smbd (bug #10284).
o Fix SMB2 server panic when a smb2 brlock times out (bug #10311).
Changes since 4.0.13:
---------------------
o Jeremy Allison <[email protected]>
* BUG 9870: smbd: Allow updates on directory write times on open handles.
* BUG 10297: smbd: Fix writing to a directory with -wx permissions
on a share.
* BUG 10305: ldb: Fix bad if test in ldb_comparison_fold().
* BUG 10320: s3:smbpasswd: Fix crashes on invalid input.
o David Disseldorp <[email protected]>
* BUG 10271: Send correct job-ID in print job notifications.
o Volker Lendecke <[email protected]>
* BUG 10250: smbd: Fix a talloc hierarchy problem in msg_channel.
* BUG 10284: smbd: Fix segfault.
* BUG 10297: smbd: Fix writing to a directory with -wx permissions
on a share.
* BUG 10311: Fix SMB2 server panic when a smb2 brlock times out.
o Stefan Metzmacher <[email protected]>
* BUG 10298: Reduce smb2_server processing overhead.
* BUG 10330: s3:configure: Require tevent >= 0.9.18 as external library.
o Arvid Requate <[email protected]>
* BUG 10267: spoolss: Accept XPS_PASS datatype used by Windows 8.
o Christof Schmitt <[email protected]>
* BUG 10310: Fix AIO with SMB2 and locks.
o Andreas Schneider <[email protected]>
* BUG 2191: Fix substution of %G/%g in 'template * homedir'.
######################################################################
Reporting bugs & Development Discussion
#######################################
Please discuss this release on the samba-technical mailing list or by
joining the #samba-technical IRC channel on irc.freenode.net.
If you do report problems then please try to send high quality
feedback. If you don't provide vital information to help us track down
the problem then you will probably be ignored. All bug reports should
be filed under the Samba 4.0 product in the project's Bugzilla
database (https://bugzilla.samba.org/).
----------------------------------------------------------------------
==============================
Release Notes for Samba 4.0.13