1 =============================
2 Release Notes for Samba 3.4.1
4 =============================
7 This is the latest stable release of Samba 3.4.
10 Major enhancements in Samba 3.4.1 include:
12 o Fix connections of Win98 clients (bug #6551).
13 o SetPrinter fails (panics) as non root (bug #6564).
14 o Fix crash bug in spoolss_addprinterex_level_2 (bug #6607).
17 ######################################################################
25 o Jeremy Allison <jra@samba.org>
26 * BUG 6437: Make open_udp_socket() IPv6 clean.
27 * BUG 6506: Smbd server doesn't set EAs when a file is overwritten in
29 * BUG 6551: Fix connections of Win98 clients.
30 * BUG 6564: SetPrinter fails (panics) as non root.
31 * BUG 6593: Correctly implement SMB_INFO_STANDARD setfileinfo.
34 o Yannick Bergeron <burgergold@hotmail.com>
35 * Increase the max_grp value to 128 (AIX NGROUPS_MAX value) instead of 32 to
36 allow AIX to call sys_getgrouplist only once.
39 o Günther Deschner <gd@samba.org>
40 * BUG 6568: Fix _spoolss_GetPrintProcessorDirectory() implementation.
41 * BUG 6607: Fix crash bug in spoolss_addprinterex_level_2.
44 o Matt Kraai <mkraai@beckman.com>
45 * BUG 6630: Fix opening of sockets on QNX.
48 o Volker Lendecke <vl@samba.org>
49 * BUG 6611: Fix a valgrind error in chain_reply.
50 * Fix linking on Solaris.
53 o Stefan Metzmacher <metze@samba.org>
54 * BUG 6222: Default to DRSUAPI replication for net rpc vampire keytab.
55 * BUG 6538: Cancel all locks that are made before the first failure.
56 * BUG 6627: Raise the timeout for lsa_Lookup*() calls from 10 to 35 seconds.
59 o Tim Prouty <tprouty@samba.org>
60 * BUG 6620: Fix a bug in renames of directories.
63 o Rusty Russell <rusty@rustcorp.com.au>
64 * BUG 6601: Avoid global fd limits.
67 o TAKEDA Yasuma <yasuma@osstech.co.jp>
68 * BUG 5879: Update LDAP schema for Netscape DS 5.
71 o Bo Yang <boyang@samba.org>
72 * BUG 6560: Fix lookupname.
73 * BUG 6615: Fix browsing of DFS when using kerberos in libsmbclient.
76 ######################################################################
77 Reporting bugs & Development Discussion
78 #######################################
80 Please discuss this release on the samba-technical mailing list or by
81 joining the #samba-technical IRC channel on irc.freenode.net.
83 If you do report problems then please try to send high quality
84 feedback. If you don't provide vital information to help us track down
85 the problem then you will probably be ignored. All bug reports should
86 be filed under the Samba 3.4 product in the project's Bugzilla
87 database (https://bugzilla.samba.org/).
90 ======================================================================
91 == Our Code, Our Bugs, Our Responsibility.
93 ======================================================================
96 Release notes for older versions follow:
97 ----------------------------------------
99 =============================
100 Release Notes for Samba 3.4.0
102 =============================
105 This is the first stable release of Samba 3.4.
108 Major enhancements in Samba 3.4.0 include:
109 ------------------------------------------
111 Configuration changes:
112 o The default passdb backend has been changed to 'tdbsam'!
115 o Samba4 and Samba3 sources are included in the tarball
117 Authentication Changes:
118 o Changed the way smbd handles untrusted domain names given during user
122 o Various fixes including printer change notificiation for Samba spoolss
126 o The remaining hand-marshalled DCE/RPC services (ntsvcs, svcctl, eventlog
127 and spoolss) were replaced by autogenerated code based on PIDL.
128 o Samba3 and Samba4 do now share a common tevent library.
129 o The code has been cleaned up and the major basic interfaces are shared with
131 o An asynchronous API has been added.
134 Configuration changes
135 =====================
138 The default passdb backend has been changed to 'tdbsam'! That breaks existing
139 setups using the 'smbpasswd' backend without explicit declaration! Please use
140 'passdb backend = smbpasswd' if you would like to stick to the 'smbpasswd'
141 backend or convert your smbpasswd entries using e.g. 'pdbedit -i smbpasswd -e
144 The 'tdbsam' backend is much more flexible concerning per user settings
145 like 'profile path' or 'home directory' and there are some commands which do not
146 work with the 'smbpasswd' backend at all.
152 On the way towards a standalone Samba AD domain controller, Samba3 and Samba4
153 branches can be built as "merged" build. That's why Samba3 and Samba4 sources
154 are included in the tarball. The merged build is possible in Samba 3.4.0, but
155 disabled by default. To learn more about the merged build,
156 please see http://wiki.samba.org/index.php/Franky.
158 According to this one, there is no "source" directory included in the tarball at
159 all. Samba3 sources are located in "source3", Samba4 sources are located in
160 "source4". The libraries have been moved to the toplevel directory.
162 To build plain Samba3, please change to "source3" and start the build as usual.
163 To build Samba4 as well, please use the "--enable-merged-build" configure
167 Authentication Changes
168 ======================
170 Previously, when Samba was a domain member and a client was connecting using an
171 untrusted domain name, such as BOGUS\user smbd would remap the untrusted
172 domain to the primary domain smbd was a member of and attempt authentication
173 using that DOMAIN\user name. This differed from how a Windows member server
174 would behave. Now, smbd will replace the BOGUS name with it's SAM name. In
175 the case where smbd is acting as a PDC this will be DOMAIN\user. In the case
176 where smbd is acting as a domain member server this will be WORKSTATION\user.
177 Thus, smbd will never assume that an incoming user name which is not qualified
178 with the same primary domain, is part of smbd's primary domain.
180 While this behavior matches Windows, it may break some workflows which depended
181 on smbd to always pass through bogus names to the DC for verification. A new
182 parameter "map untrusted to domain" can be enabled to revert to the legacy
189 The spoolss subsystem was replaced by autogenerated code based on PIDL. That fixes
190 several printing issues including printer change notificiation on Samba print
191 servers and will stabilize the printing functionality generally.
192 The support for spoolss printing with Windows Vista has been improved.
198 The remaining hand-marshalled DCE/RPC services (ntsvcs, svcctl, eventlog and
199 spoolss) were replaced by autogenerated code based on PIDL.
200 So Günther Deschner finally corrected one of the biggest mistakes in the
201 development of Samba: Hand-marshalled RPC stubs.
205 Samba3 and Samba4 do now share a common tevent library for fd and timer events.
207 The code has been cleaned up and Samba3 and Samba4 do share the major basic
208 interfaces now. That is why the libraries were moved to the toplevel directory.
209 That is one of the first steps to share code and minimize the gap between
212 An asynchronous API has been added.
215 ######################################################################
222 Parameter Name Description Default
223 -------------- ----------- -------
225 access based share enum New No
226 dedicated keytab file New ""
227 kerberos method New default
228 map untrusted to domain New No
229 max open files Changed Default auto detected
230 passdb backend Changed Default tdbsam
231 perfcount module New ""
232 use kerberos keytab Removed
238 net eventlog Import/dump/export native win32 eventlog files.
239 net rpc service create Create a new service.
240 net rpc service delete Delete an existing service.
243 New configure options
244 ---------------------
246 --enable-external-libtalloc Enable external talloc
247 --enable-merged-build Build Samba 4 as well
248 --enable-gnutls Turn on gnutls support
249 --with-statedir=DIR Where to put persistent state files
250 --with-cachedir=DIR Where to put temporary cache files
251 --with-ncalprcdir=DIR Where to put ncalrpc sockets
252 --with-selftest-shrdir=DIR The share directory that make test will be run
254 --with-selftest-custom-conf=PATH
255 An optional custom smb.conf that is included in
256 the server smb.conf during make test
257 --with-wbclient Use external wbclient
258 --with-included-popt Use bundled popt library, not from system
259 --with-libiconv=BASEDIR Use libiconv in BASEDIR/lib and BASEDIR/include
260 --with-sqlite3 SQLITE3 backend support
261 --with-pthreads Include pthreads
262 --with-setproctitle Search for setproctitle support
269 o Steven Danneman <steven.danneman@isilon.com>
270 * Change the way smbd handles untrusted domain names given during user
274 o Guenther Deschner <gd@samba.org>
275 * Replace the hand-marshalled DCE/RPC services ntsvcs, svcctl, eventlog
276 and spoolss by autogenerated code based on PIDL.
277 * Fix several printing issues and improve support for printer change
279 * Add 'net eventlog'.
282 o Volker Lendecke <vl@samba.org>
283 * Add asynchronous API.
286 o Stefan Metzmacher <metze@samba.org>
287 * Make Samba3 and Samba4 share a tevent library.
290 o Dan Sledz <dsledz@isilon.com>
291 * Add two new parameters to control how we verify kerberos tickets.
294 o Danny Tylman <danny.tylman@insightix.com>
295 * Add 'net rpc service' subcommands 'create' and 'delete'.
298 o Jelmer Vernooij <jelmer@samba.org>
299 * Make merged build possible.
300 * Move common libraries to the shared lib/ directory.
303 Changes since 3.4.0rc1
304 ----------------------
307 o Jeremy Allison <jra@samba.org>
308 * BUG 6520: Fix time stamps when "unix extensions = yes".
311 o Michael Adam <obnox@samba.org>
312 * BUG 6509: Use gid (not uid) cache in fetch_gid_from_cache().
313 * BUG 6521: Fix building tevent_ntstatus without config.h.
314 * BUG 6531: Fix pid file name.
317 o Guenther Deschner <gd@samba.org>
318 * BUG 6512: Fix support for enumerating user forms.
321 o Bjoern Jacke <bj@sernet.de>
322 * BUG 6497: Fix calling of 'test' in configure.
323 * BUG 6459: Fix build of pam_smbpass on some distributions.
326 o Volker Lendecke <vl@samba.org>
327 * BUG 6431: Local groups from 3.0 setups no longer found.
328 * BUG 6498: Add workaround for MS KB932762.
331 o David Markey <admin@dmarkey.com>
332 * BUG 6514: Improve error message in 'net' when smb.conf is not available.
335 o Jim McDonough <jmcd@samba.org>
336 * BUG 6481: 'net ads leave' needs to try account deletion, NetUnjoinDomain
340 o Stefan Metzmacher <metze@samba.org>
341 * BUG 6526: Fix notifies in the share root directory.
344 o Bo Yang <boyang@samba.org>
345 * BUG 6499: Fix building of pam_smbpass.
348 Changes since 3.4.0pre2
349 -----------------------
352 o Jeremy Allison <jra@samba.org>
353 * BUG 6297: Owner of sticky directory cannot delete files created by
355 * BUG 6476: Fix smbd-zombies in memory when using [x]inetd.
356 * BUG 6487: Add missing DFS call in trans2 mkdir call.
357 * BUG 6488: acl_group_override() call in posix acls references an
358 uninitialized variable.
361 o Günther Deschner <gd@samba.org>
362 * BUG 5456: Fix "net ads testjoin".
363 * BUG 6253: Use correct value for password expiry calculation in
365 * BUG 6305: Correctly prompt for a password when a username was given.
366 * BUG 6451: net/libnetapi user rename using wrong access bits.
367 * BUG 6458: Fix uninitialized variable in local_password_change().
368 * BUG 6465: Fix enumeration of empty aliases.
371 o Volker Lendecke <vl@samba.org>
372 * BUG 4699: Remove pidfile on clean shutdown.
373 * BUG 6449: 'net rap user add' crashes without -C option.
376 o David Markey <admin@dmarkey.com>
377 * BUG 6328: Add support for multiple rights to
378 "net sam rights grant/revoke".
381 o Andreas Schneider <mail@cynapses.org>
382 * Improve pam_winbind documentation.
385 o Simo Sorce <idra@samba.org>
386 * BUG 6081: Make it possible to change machine account sids.
387 * BUG 6333: Consolidate create/delete account paths in pdbedit.
390 o Jelmer Vernooij <jelmer@samba.org>
391 * Remove outdated Debian package sources.
394 Changes since 3.4.0pre1
395 -----------------------
398 o Jeremy Allison <jra@samba.org>
399 * BUG 6291: Fix 'force user'.
400 * BUG 6313: ldapsam_update_sam_account() crashes while doing talloc_free on
402 * BUG 6315: Fix smbd crashes when doing vfs_full_audit on IPC$ close event.
403 * BUG 6330: Fix DFS on AIX.
404 * Fix a bunch of compiler warnings about wrong format types.
405 * Fix the core of the SAMR access functions.
406 * Fix SAMR server for winbindd access.
409 o Michael Adam <obnox@samba.org>
410 * BUG 4271: testparm should not print includes.
411 * BUG 6292: Update config.guess from gnu.org.
412 * BUG 6320: Handle registry config source in file_list.
413 * BUG 6371: Unsuccessful 'net conf setparm' leaves empty share.
414 * BUG 6387: Fix a crash bug in idmap_ldap_unixids_to_sids.
415 * BUG 6415: Filter out of range mappings in default idmap config
417 * BUG 6416: Filter out of range mappings in default idmap config
419 * BUG 6417: Filter out of range mappings in default idmap config
421 * Add dbwrap_tool - a tdb tool that is CTDB-aware.
422 * Hide "config backend" from swat.
423 * Fix linking with --disable-shared-libs.
426 o Steven Danneman <steven.danneman@isilon.com>
427 * Fix issue with missing entries when enumerating directories.
428 * Map NULL domains to our global sam name.
431 o Günther Deschner <gd@samba.org>
432 * BUG 5859: Fix renaming of samr objects failed due to samr setuserinfo
434 * BUG 6099: Fix NETLOGON credential chain.
435 * BUG 6253: Use correct value for password expiry calculation.
436 * BUG 6309: Support remote unjoining of Windows 2003 or greater.
437 * BUG 6340: Don't segfault when cleartext trustdom pwd could not be
439 * BUG 6372: usermanager only displaying 1024 groups and aliases.
440 * Fix driver upload for Xerox 4110 PS printer driver.
441 * Add "net dom renamecomputer" to rename machines in a domain.
442 * Inspect the correct computername string before enabling/disabling the
443 change button in netdomjoin-gui.
444 * Fix join prompt dialog test in netdomjoin-gui.
445 * Only gray out labels when not root and not connecting to remote
446 machines (netdomjoin-gui).
447 * Allow to switch between workgroups/domains with the same name
449 * Add NetShutdownInit and NetShutdownAbort.
450 * Fix samr access checks.
451 * Add a security model to LSA.
452 * Fix nss_wrapper build for Solaris.
455 o Geza Gemes <geza@kzsdabas.hu>
456 * BUG 6136: New AFS syscall conventions.
459 o Ole Hansen <ole@redvw.com>
460 * BUG 6359: smbclient -L does not list workgroup for hosts with both IPv4
464 o Björn Jacke <bj@sernet.de>
465 * Also handle DirX return codes.
468 o Steve Langasek <vorlon@debian.org>
469 * BUG 4831: Don't call openlog() or closelog() from pam_smbpass.
472 o Volker Lendecke <vl@samba.org>
473 * BUG 5681: Do not limit the number of network interfaces.
474 * BUG 6157: Fix handling of multi-value attribute "uid".
475 * BUG 6302: Give the VFS a chance to read from 0-byte files.
476 * BUG 6336: Fix segfault in 'net groupmap set'.
477 * BUG 6361: Make --rcfile work in smbget.
478 * Do not crash in ctdbd_traverse if ctdbd is not around.
479 * Fix Coverity ID 897.
480 * Fix a race condition in vfs_aio_fork with gpfs share modes.
481 * Fix bug disclosed by lock8 torture test.
482 * Fix a race condition in winbind leading to a panic.
483 * Attempt to fix a Debian build problem.
486 o Jim McDonough <jmcd@samba.org>
487 * Detect tight loop in tdb_find().
490 o Stefan Metzmacher <metze@samba.org>
491 * BUG 2346: Fix posix ACLs when setting an ACL without explicit ACE for the
495 o Tim Prouty <tprouty@samba.org>
496 * Fix chained sesssetupAndX/tconn messages.
497 * Fix strict locking with chained reads.
498 * Fix two bugs in sendfile.
501 o Slava Semushin <php-coder@altlinux.ru>
503 * Fix file descriptor leak.
506 o Aravind Srinivasan <aravind.srinivasan@isilon.com>
507 * Fallback to the legacy sid_to_(uid|gid) instead of returning NULL.
508 * Always allocate memory in dptr_ReadDirName.
511 o Kumar Thangavelu <Kumar.Thangavelu@riverbed.com>
512 * Fix 'net' crash during domain join.
515 o Marc VanHeyningen <marc.vanheyningen@isilon.com>
516 * Zero an uninitialized array.
517 * Allow child processes to exit gracefully if we are out of fds.
520 ######################################################################
521 Reporting bugs & Development Discussion
522 #######################################
524 Please discuss this release on the samba-technical mailing list or by
525 joining the #samba-technical IRC channel on irc.freenode.net.
527 If you do report problems then please try to send high quality
528 feedback. If you don't provide vital information to help us track down
529 the problem then you will probably be ignored. All bug reports should
530 be filed under the Samba 3.4 product in the project's Bugzilla
531 database (https://bugzilla.samba.org/).
534 ======================================================================
535 == Our Code, Our Bugs, Our Responsibility.
537 ======================================================================