1 =============================
2 Release Notes for Samba 3.3.0
4 =============================
6 This is the first stable release of Samba 3.3.0.
8 Major enhancements in Samba 3.3.0 include:
11 o The passdb tdbsam version has been raised.
13 Configuration/installation:
14 o Splitting of library directory into library directory and separate
16 o The default value of "ldap ssl" has been changed to "start tls".
19 o Extended Cluster support.
20 o New experimental VFS modules "vfs_acl_xattr" and "vfs_acl_tdb"
21 to store NTFS ACLs on Samba file servers.
24 o Simplified idmap configuration.
25 o New idmap backends "adex" and "hash".
26 o Added new parameter "winbind reconnect delay".
27 o Added support for user and group aliasing.
28 o Added support for multiple domains to idmap_ad.
31 o The destination "all" of smbcontrol does now affect all running
32 daemons including nmbd and winbindd.
33 o New 'net rpc vampire keytab' and 'net rpc vampire ldif' commands.
34 o The 'net' utility can now use kerberos for joining and authentication.
35 o The 'wbinfo' utility can now add, modify and remove identity mapping entries.
38 o NetApi library implements various new calls for User- and Group
45 The passdb tdbsam version has been raised as among other things the RID counter
46 has been moved from the winbindd_idmap.tdb to the passdb.tdb file to make
47 "passdb backend = tdbsam" working in clustered environments.
49 Please note that an updated passdb.tdb file is _not_ compatible with Samba
50 versions before 3.3.0! Please backup your passdb.tdb file if
51 you use "passdb backend = tdbsam". That can be achieved by running
53 'tdbbackup /etc/samba/passdb.tdb'
61 The configure option "--with-libdir" has been removed. The library
62 directory can still be specified by using the existing "--libdir" option.
63 A new option "--with-modulesdir" has been added to allow the specification
64 of a separate directory for the shared modules.
70 The default value of "ldap ssl" has been changed to "start tls". This means,
71 Samba will use the LDAPv3 StartTLS extended operation (RFC2830) for
72 communicating with directory servers by default. If your directory servers
73 do not support this extended operation, you will have to set
74 "ldap ssl = no". Otherwise, Samba could not contact the directory servers
78 Winbind idmap backend changes
79 =============================
81 The idmap configuration has changed with version 3.3 to something that
82 allows a smoother upgrade path from pre-3.0.25 configurations that use
83 "idmap backend". The reason for this change is that to many, also to Samba
84 developers, the 3.0.25 style configuration with "idmap config" turned out
85 to be very complex. Version 3.3 no longer deprecates the "idmap backend"
86 parameter, instead with "idmap backend" the default idmap backend is
89 Accordingly, the "idmap config <domain> : default = yes" setting is no
90 longer being looked at.
92 The alloc backend defaults to the default backend, which should be able to
93 allocate IDs. In the default distribution the tdb and ldap backends can
94 allocate, the ad and rid backends can not. The idmap alloc range is now
95 being set with the "old" parameters "idmap uid" and "idmap gid".
97 The "idmap domains" parameter has been removed.
100 winbind reconnect delay
101 =======================
103 This is a new parameter which specifies the number of seconds the Winbind
104 daemon will wait between attempts to contact a Domain controller for a domain
105 that is determined to be down or not contactable.
108 Winbind's Name Aliasing
109 =======================
111 Name aliasing in Winbind is a feature that allows an administrator to
112 map a fully qualified user or group name from a Windows domain to a
113 convenient short name for Unix access. This is similar to the username
114 map functionality supported by smbd but is primary intended for
115 clients and servers making use of Winbind's PAM and NSS libraries.
117 For example, the user "DOMAIN\fred" has been mapped to the Unix name
120 $ getent passwd "DOMAIN\fred"
121 freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
123 $ getent passwd freddie
124 freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
126 The name aliasing support is provided by individual nss_info plugins.
127 For example, the new "adex" plugin reads the uid attribute from Active
128 Directory to make a short login name to the fully qualified name.
129 While the new "hash" module utilizes a local file to map "short_name
130 = QUALIFIED\name". Both user and group name mapping is supported.
131 Please refer to the "winbind nss info" option in smb.conf(5) and
132 to individual plugin man pages for further details.
138 The idmap_hash plugin provides similar support as the idmap_rid
139 module. However, uids and gids are generated from the full domain
140 SID using a hashing algorithm that maps the lower 19 bits from the user
141 or group RID to bits 0 - 19 in the Unix id and hashes 96 bits from
142 the domain SID to bits 20 - 30 in the Unix id. The result is a 31 bit
143 uid or gid that is consistent across machines and provides support for
146 Please refer to the idmap_hash(8) man page for more details.
152 The adex idmap/nss_info plugin is an adaptation of the Likewise
153 Enterprise plugin with support for OU based cells removed
154 (since the Windows pieces to manage the cells are not available).
158 * The RFC2307 schema for users and groups.
159 * Connections to trusted domains
160 * Global catalog searches
161 * Cross forest trusts
162 * User and group aliases
164 Prerequisite: Add the following attributes to the Partial Attribute
165 Set in global catalog:
171 A basic config using the current trunk code would look like:
175 idmap uid = 10000 - 29999
176 idmap gid = 10000 - 29999
177 winbind nss info = adex
179 winbind normalize names = yes
180 winbind refresh tickets = yes
181 template homedir = /home/%D/%U
182 template shell = /bin/bash
184 Please refer to the idmap_adex(8) man page for more details.
187 ######################################################################
194 Parameter Name Description Default
195 -------------- ----------- -------
196 cups connection timeout New 30
197 idmap config DOM:range Removed
198 idmap domains Removed
199 init logon delayed hosts New ""
200 init logon delay New 100
201 ldap ssl Changed Default start tls
202 share modes Deprecated
203 winbind reconnect delay New 30
206 Changes since 3.3.0rc2:
207 -----------------------
210 o Jeremy Allison <jra@samba.org>
211 * BUG 4308: Fix corrupting of file ACLs during Excel save operations.
212 * BUG 5979: Fix level 2 oplocks being granted improperly.
213 * BUG 5980: Race condition when granting level2 oplocks can cause break
215 * BUG 5986: Editing a stream is broken (rename problems).
216 * BUG 5990: Strict allocate should be checked before ftruncate.
217 * BUG 6009: Setting "min receivefile size = 1" breaks writes.
218 * BUG 6016: Alternate Data Streams / Extended Attributes seem to conflict.
219 * BUG 6017: Fix magic scripts.
220 * BUG 6019: Fix file corruption in Clustered SMB/NFS environment managed via
222 * BUG 6021: smbclient du command does not recuse properly.
223 * BUG 6024: Deprecate the "share modes" parameter.
224 * BUG 6030: Add missing <th> header in Status page.
225 * BUG 6035: Fix possible race between fcntl F_SETLKW and alarm delivery.
226 * BUG 6040: Calling Samba print server with an aliased DNS-name fails.
227 * Fix gcc 4.3.2 warnings.
228 * Fix more asprintf errors and error code paths.
229 * Attempt to fix crash seen with new CUPS async printcap loading code.
230 * Add winbindd_reinit_after_fork(), cleaning out all possible events
232 * Make winbindd_cm.c use winbindd_reinit_after_fork().
233 * Fix race condition in alarm lock processing.
234 * Fixes crash bug in SWAT.
237 o Michael Adam <obnox@samba.org>
238 * Fix build of pam_winbind.so on older Linux systems.
239 * Packaging RHEL-CTDB: Fix build of [u]mount.cifs.
240 * Prevent access to root filesystem when connecting with empty service name.
241 * Fix distclean target and add realdistclean target in the docs build.
242 * Add manpage for idmap_tdb2.
243 * Clarify idmap manpages.
246 o Kai Blin <kai@samba.org>
247 * BUG 5953: Fix smbclient crashes.
250 o Gerald (Jerry) Carter <jerry@samba.org>
251 * Fix "allow trusted domain" so it disables trusted domains.
252 * Return immediately on a failed GC connection in ads_connect.
255 o SATOH Fumiyasu <fumiyas@osstech.jp>
256 * Fix gmem->numgids and gmem->maxgids breakage on Solaris 64-bit.
257 * Fix SIGBUS on non-x86 CPUs in libsmbclient.
258 * Fix a compile-time warning.
261 o Holger Hetterich <hhetter@novell.com>
262 * Add a simple tdb integrity check to tdbtool.
265 o Björn Jacke <bj@sernet.de>
266 * Correct the description of the "ldap timeout" parameter.
269 o Volker Lendecke <vl@samba.org>
270 * BUG 5913: Fix build error with at least GCC 4.2.2.
271 * BUG 5933: Fix incrementing/decrementing of num_validated_vuids.
272 * BUG 5953: Make cli_send_smb_direct_writeX use writev.
273 * BUG 5965: Fix creation of the first share using SWAT.
274 * BUG 5969: Optimize smbclient put command.
275 * BUG 6012: Add "get_real_filename" to full_audit.
276 * BUG 6014: Fix segfault when calling mget without arguments.
277 * Fix a spinning smbd when printing.
278 * Fix a memory leak in cups_pull_comment_location.
279 * Fix a valgrind error.
280 * Fix a "ignoring function call result" warning.
281 * Fix some C++ warnings.
282 * Fix an ancient uninitialized variable read.
283 * Fix a bad memleak in vfs_full_audit.
286 o Derrell Lipman <derrell.lipman@unwireduniverse.com>
287 * BUG 6022: Make smbc_urlencode and smbc_urldecode in libsmbclient.
288 * Determine case sensitivity based on file system attributes.
291 o Stefan Metzmacher <metze@samba.org>
292 * net_status: Use dbwrap to open sessionid.tdb.
293 * Fix dbwrap_store_uint32() to match dbwrap_store_int32().
294 * Make marshalling struct samu from and to a buffer more generic.
295 * Store the next rid counter in passdb.tdb instead of winbind_idmap.tdb.
296 * Register the client connection via CTDB_CONTROL_TCP_ADD.
297 * Don't need to call messaging_reinit() twice.
298 * Raise TDBSAM_VERSION.
299 * Add manpage for vfs_fileid.
300 * Rename 'fd_event' to 'winbindd_fd_event' to avoid confusion.
301 * Recreate the per domain check_online_event without relying on global
303 * Handle the smb signing states the same in the krb5 and ntlmssp cases.
304 * Re-add 'fileid:algorithm' option to vfs_fileid.
305 * Fix CTDB IPv6 support in cluster setups.
306 * Reinit_after_fork() should reinit the event context before the
308 * Fix PCAP support in socket_wrapper.
311 o Lars Müller <lars@samba.org>
312 * Tweak with pam defines of older Linux versions.
315 o Tim Prouty <tprouty@samba.org>
316 * Fix stream marshalling to return the correct streaminfo status.
317 * Allow renames of streams via NTRENAME and fix stream error codes on
319 * Remove a few unnecessary checks from the streams xattr module.
320 * Remove a few unnecessary checks from the streams depot module and fix to
324 o Andreas Schneider <anschneider@suse.de>
325 * Fix a segfault if ? is there but the options are NULL.
326 * Avoid flooding of syslog with failing pam_putenv messages.
329 o Karolin Seeger <kseeger@samba.org>
330 * BUG 6000: Avoid bashism in perfcount.init.
331 * Change default value of "ldap ssl" to "start tls".
332 * Update version number in the manpages.
333 * Fix several small issues and typos in the manpages.
334 * Check if Unix account exists before asking for the password in smbpasswd.
337 o Todd Stecher <todd.stecher@gmail.com>
338 * Fix memory leaks and other fixes found by Coverity.
341 o Bo Yang <boyang@novell.com>
342 * Clean event context after child is forked.
343 * Fix broken krb5 refresh chain.
344 * Set entry->refresh_time to make ccache_regain_all_now() work correctly.
345 * Refresh sequence number as soon as possible.
346 * Don't set child->requests to NULL in parent after fork.
347 * Don't send message to any other child in child process.
348 * Fix bug in get_dc_name_via_netlogon(), null pointer reference.
352 "Changes since" sections of 3.3 previews and release candidates follow:
353 =======================================================================
355 Changes since 3.3.0rc1:
356 ------------------------
358 o Jeremy Allison <jra@samba.org>
359 * BUG 1254: Fix "write list" in setups using "security = share".
360 * BUG 5937: Fix filenames with "*" char hiding other files.
361 * BUG 5953: Fix segfaults in smbclient.
362 * Fix usrmgr opening a user object as non-root.
365 o Michael Adam <obnox@samba.org>
366 * BUG 3661: Add support for trusted domains to idmap_ad.
367 * Fix default backend handling for ad backends.
368 * Fix potential segfault in vfs_tsmsm.
369 * Fix several RHEL CTDB packaging issues.
372 o Guenther Deschner <gd@samba.org>
373 * BUG 5957: Do not abort rename process on valid rename script.
374 * Fix various potential memleaks in samr_SetUserInfo.
375 * Fix access bits in netapi.
378 o Steve French <stevef@smf-t60p.smfdom>
379 * BUG 5934: Use USER environment in mount.cifs when no user is specified.
383 o SATOH Fumiyasu <fumiyas@osstech.co.jp>
384 * BUG 5688: LPQ process is orphaned if socket address parameter is invalid.
385 * Vars for signals must be volatile sig_atomic_t.
388 o Henning Henkel <henning.henkel@fh-furtwangen.de>
389 * BUG 5929: Fix build of vfs_prealloc with option --with-cluster-support and
393 o Tomasz Krasuski <kr0tki@poczta.onet.pl>
394 * BUG 5928: Fix 'testparm --version'.
397 o Jeff Layton <jlayton@redhat.com>
398 * Allow mounts to ipv6 capable servers in mount.cifs.
401 o Volker Lendecke <vl@samba.org>
402 * Fix crash bug when freeing a non-malloc'ed buffer if the client sends a
403 non-encrypted packet with the crypto state set.
404 * Fix error code when smbclient puts a file over an existing directory.
405 * Pass the get_real_filename operation through the VFS.
408 o Stefan Metzmacher <metze@samba.org>
409 * BUG 5749: Re-set acctflags while joining.
410 * Fix several issues concerning Alternate Data Streams.
411 * Fix valgrind bug lp_parm_const_string().
412 * Fix setting of trust passwords using 'net rpc trustdom add'.
413 * Correctly detect if the current dc is the closest one.
416 o Tim Prouty <tprouty@samba.org>
417 * Fix a delete on close divergence from windows.
420 o Dan Sledz <dsledz@isilon.com>
421 * Fix logging to syslog.
424 o Yasuma Takeda <yasuma@osstech.co.jp>
425 * BUG 5944: Fix starting of nmbd with "socket address" set to "".
428 o Bo Yang <boyang@novell.com>
429 * Fix script installmo.sh when no .po file exists.
432 ----------------------------------------------------
434 Changes since 3.3.0pre2:
435 ------------------------
437 o Michael Adam <obnox@samba.org>
438 * Fix eventlog crash.
439 * Make keytab filename argument mandatory to "net rpc vampire keytab".
440 * Add domain prefix to username in lookup_groupmem().
441 * Honour "winbind use default domain" in lookup_groupmem().
442 * Sanely handle NULL domain in add_member().
443 * Don't list the domain twice when expanding internal aliases.
444 * Prevent negative GM/ cache entries due to broken connections.
445 * Use the reconnect methods instead of the rpc methods directly.
448 o Jeremy Allison <jra@samba.org>
449 * BUG 5080: Fix access to cups-printers with cups 1.3.4.
450 * BUG 5814: Fix Winbind crash bug while doing "rescan_trusted_domain".
451 * BUG 5818: Sort ACEs in smbcacl output properly and honor inheritance.
452 * BUG 5825: Fix account locking with an LDAP backend.
453 * BUG 5826: Fix truncated filenames when accessing old servers.
454 * BUG 5873: Fix ACL inheritance.
455 * BUG 5889: Fix "delete veto files = no".
456 * BUG 5891: Fix smbd crash when viewing the eventlog exported by "eventlog
458 * BUG 5900: Fix vfs_readonly.
459 * BUG 5903: Fix breaking of file contents in vfs_streams_xattr.
460 * BUG 5904: Fix SIGABRT while servicing getaddrinfo() request caused by
462 * BUG 5914: Fix redefinition of struct name_list.
463 * Correctly fix smbclient to terminate on eof from server.
464 * Fix client timeout when searching for a large number of cups printers.
465 * Unify access checks for lsa server functions.
466 * Remove the requirement for ldap call made as root.
467 * Cope with MAXIMUM_ALLOWED_ACCESS requests when opening handles.
468 * Fix net rpc vampire, based on an *amazing* piece of debugging work by
469 "Cooper S. Blake" <the_analogkid@yahoo.com>.
470 * Fix memory leak in error path, spotted by Martin Zielinski <mz@seh.de>.
471 * Add vfs_acl_tdb.c module to do ACLs completely in userspace.
472 * Use fxattr calls whenever possible (trying to work around the strange
473 Linux kernel oplock bug).
476 o Kai Blin <kai@samba.org>
477 * BUG 5892: Fix net rap printq info documentation.
478 * Add placeholder functions to libwbclient.
481 o Gerald (Jerry) Carter <jerry@samba.org>
482 * Use the same prerequisite for DDNS update as Windows XP.
483 * Make "lwinet ads dns register" honor the "interfaces" parameter.
486 o Steven Danneman <steven.danneman@isilon.com>
487 * Add options to manage identity mapping entries to wbinfo and Winbind.
488 * Fix to allow setting of NULL DACL/SACL.
491 o Guenther Deschner <gd@samba.org>
492 * BUG 5888: Fix remote rpc service management.
493 * Ensure consistency when reporting password complexity.
494 * Fix _lsa_GetUserName.
495 * Fix access check in _samr_QuerySecurity().
496 * _samr_DeleteUser needs to wipe out the user_handle on success.
497 * NetGroupEnum_r needs to handle servers with no groups.
498 * Fix numerous netapi issues.
499 * Add support for partial and delta netlogon replication in
501 * Add automatic machine password update in Winbind for member servers.
502 * Add German internalization for pam_winbind.
503 * Add Winbind krb5 locator plugin manpage.
504 * Add new wbclient wbcLookupDomainControllerEx call.
505 * Use autogenerated DCE/RPC routines for one more call on SVCCTL
507 * Use autogenerated NBT routines from Samba4 for Mailslot/CLDAP
509 * Fix Winbind password change code for Windows 2000 DCs.
510 * Fix PNP_HwProfInfo NDR parsing.
511 * Add wbclient wbcLogonUser and wbcLogoffUserEx functions.
512 * Add automatic home directory creation for pam_winbind.
515 o Mathias Dietz <MDIETZ@de.ibm.com>
516 * Search for gpfs functions in both libgpfs_gpl.so an libgpfs.so.
519 o Dina Fine <dina@exanet.com>
520 * BUG 5908: Fix internal change notify on share directories.
523 o Nils Goroll <nils.goroll@hamburg.de>
524 * BUG 5135: Prevent calling POSIX ACL vfs methods on zfs share.
525 * BUG 5446: Prevent calling POSIX ACL vfs methods on zfs share.
528 o Jeff Layton <jlayton@redhat.com>
529 * Have uppercase_string return success on NULL pointer in mount.cifs.
530 * Make mount.cifs return codes match the return codes for /bin/mount.
533 o Volker Lendecke <vl@samba.org>
534 * BUG 5691: Fig smbd panic on Solaris.
535 * BUG 5840: Fix segfault in "rpcclient lsaaddacctrights".
536 * BUG 5860: safe_strcpy gives a nasty error message for overlong strings.
537 * Fix the offset checks in the trans routines (CVE-2008-4314).
538 * Fix a potential NULL deref in found by the IBM Checker.
539 * Fix an uninitialized variable found by the IBM Checker.
540 * Fix an unlikely memleak found by the IBM Checker.
541 * Fix some missing error handlings.
542 * Add workaround for domain joins using a netbios name which is different
544 * Fix a valgrind error in idmap_ad_sids_to_unixids().
545 * Make memcache_add_talloc NULL out the source pointer.
546 * Fix memleak in memcache_add_talloc found by Martin Zielinski <mz@seh.de>.
547 * Fix memleak in calculate_next_machine_pwd_change.
550 o Jeff Layton <jlayton@redhat.com>
551 * mount.cifs: use lock/unlock_mtab scheme from util-linux-ng mount prog.
554 o Derrell Lipman <derrell.lipman@unwireduniverse.com>
555 * BUG 5805: Don't close stdout when calling setup_logging multiple times.
558 o Stefan Metzmacher <metze@samba.org>
559 * Return an error instead of crashing when no realm is given.
562 o TAKAHASHI Motonobu <monyo@samba.gr.jp>
563 * 5901: Fix default value for streams_depot location.
566 o Tim Prouty <tim.prouty@isilon.com>
567 * Fix several build warnings.
570 o Andreas Schneider <mail@cynapses.org>
571 * Delete the krb5 ccname variable from the PAM environment if set.
572 * Add a function out of pam_sm_close_session to delete the credentials.
573 * Fix circular dependency error with autoconf 2.6.3.
576 o Davide Sfriso <sfriso@virgilio.it>
577 * BUG 5906: Fix Winbind crash bug during 'getent group' on PDC.
580 o Dan Sledz <dsledz@isilon.com>
581 * Add FreeBSD configure check for backtrace_symbols.
582 * Allow SYSLOG_FACILITY to be modified with a new configure option called
583 --with-syslog-facility.
586 o Joe Smith <yasumoto7@gmail.com>
587 * Fix typo in source/utils/net_rap.c.
590 o Martin Schwenke <martin@meltin.net>
591 * Prevent make errors for picky makes when $(EXTRA_ALL_TARGETS) is empty.
592 * Add @CIFSUPCALL_PROGS@ to "all" target so cifs.upcall gets built at
593 compile time rather than install time.
596 o Yasuma Takeda <yasuma@osstech.co.jp>
597 * BUG 5909: Fix MS-DFS links containing multibyte characters on Vista.
600 o Bo Yang <boyang@novell.com>
601 * Fix broken msgids in ntstatus_errors.
602 * i18n/l10n pam_winbind
605 ----------------------------------------------------
607 Changes since 3.3.0pre1:
608 ------------------------
610 o Michael Adam <obnox@samba.org>
612 * BUG 5492: Fix RHEL SPEC file by removing libmsrpc stuff.
613 * BUG 5507: Fix several issues in the RHEL SPEC file.
616 o Jeremy Allison <jra@samba.org>
617 * BUG 5729: Explicitly allow "-valid".
618 * BUG 5737: Fix winbindd crash in an unusual failure mode.
619 * BUG 5751: Fix showing of ACLs on DFS in (lib)smbclient.
620 * BUG 5762: Fix opening of mangled directory name (resulted
622 * BUG 5783: Fix FindFirst where search pattern == mangled filename.
623 * BUG 5790: Fix returning of STATUS_OBJECT_NAME_NOT_FOUND on set file
625 * BUG 5797: Fix moving of readonly files.
626 * Fix crashes when looking up a non-existant uid.
627 * Fix getting/setting of NT ACLs on a file.
628 * Add st_birthtime and friends for accurate create times on *BSD
630 * Fix the wcache_invalidate_samlogon calls.
631 * Clarify usage of "force create mode".
632 * Get smbd to look (read-only) into the winbindd cache for uid/gid <--> sid
634 * Write times code update.
635 * Add experimental version of VFS module acl_xattr.
636 * Fix rename_open_files.
637 * Make SMB traffic analyzer VFS module more efficient.
640 o Gerald W. Carter <jerry@samba.org>
641 * Fix segfault when calling nss_get_info() with a NULL ads structure.
642 * Add support for name aliasing in Winbind.
643 * Add the idmap/nss-info provider from Likewise Open.
644 * Allow an admin to define the "uid" attribute for a RFC2307
645 user object in AD to be the username alias.
646 * Add new idmap backend "adex" to support RFC2307 enabled AD forests.
647 * Add new idmap backend "hash".
650 o Steven Danneman <steven.danneman@isilon.com>
651 * Fix build warnings.
652 * Cleanup of DC enumeration in get_dcs().
655 o Guenther Deschner <gd@samba.org>
656 * BUG 5710: Fix changing of machine account passwords.
657 * BUG 5784: Fix pam_winbind build issue on Solaris.
658 * Fix invalid sid copy (hit when enumerating sibling domains) in Winbind.
659 * Fix double installation of cifs.upcall.
660 * Add change-user-password command to wbinfo.
661 * Fix segfault in _srvsvc_NetShareAdd.
664 o James Ding <ding_cc@hotmail.com>
665 * BUG 5736: Fix Winbind crash bug with trusted domains.
668 o Ephi Dror <Ephi.Dror@datadomain.com>
669 * Correct the netsamlogon_clear_cached_user function.
672 o Holger Hetterich <hhetter@novell.com>
673 * Add new VFS module to analyze SMB traffic to record write and read
674 operations on the Samba server.
677 o Jeff Layton <jlayton@redhat.com>
678 * Fix build warnings in cifs.upcall.
681 o Volker Lendecke <vl@sernet.de>
682 * BUG 5707: Do proper error handling if the socket is closed.
683 * BUG 5778: Don't define 'strlcat' and 'strlcpy' if it's already defined.
684 * Fix Coverity IDs 587 and 589.
685 * Increase the default positive idmap cache time to a week.
686 * Fix calculation of useable_space for trans2 and nttrans replies.
687 * Add mapping of generic bits when setting an NFSv4 ACL.
690 o Stefan Metzmacher <metze@samba.org>
691 * Some write time fixes.
694 o Karolin Seeger <kseeger@samba.org>
695 * Add new parameter "cups connection timeout".
698 o Simo Sorce <idra@samba.org>
699 * Fix enumeration of nested group memberships in Winbind.
700 This affected only setups using "security = ads".
703 o Timur <timur@FreeBSD.org>
704 * Fix cut and paste error in quota code.
705 * Fix display of POSIX ACLs.
706 * Fix aio on FreeBSD.
709 o Andrew Tridgell <tridge@samba.org>
710 * Fix permissions of group_mapping.ldb (CVE-2008-3789).
711 * Avoid a race condition in glibc between AIO and setresuid().
712 * Add missing become root for AIO operations.
713 * Fix an errno handling bug that could lead to an infinite loop.
714 * Fix logic of tsmsm_sendfile().
715 * Fix handling of arbitrary new PAC types.
716 * Fix segfault on startup with trusted domains.
717 * Fix segfault on the CTDB destructor code.
719 * Re-add "winbind:ignore domains".
722 o Jelmer Vernooij <jelmer@samba.org>
723 * Fix segfault (Debian bug #431696).
726 o Qiao Yang <geoyang@ironport.com>
730 ######################################################################
731 Reporting bugs & Development Discussion
732 #######################################
734 Please discuss this release on the samba-technical mailing list or by
735 joining the #samba-technical IRC channel on irc.freenode.net.
737 If you do report problems then please try to send high quality
738 feedback. If you don't provide vital information to help us track down
739 the problem then you will probably be ignored. All bug reports should
740 be filed under the Samba 3.3 product in the project's Bugzilla
741 database (https://bugzilla.samba.org/).
744 ======================================================================
745 == Our Code, Our Bugs, Our Responsibility.
747 ======================================================================