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