WHATSNEW: Update changes since 3.3.0pre2.
[samba.git] / WHATSNEW.txt
1                    ================================
2                    Release Notes for Samba 3.3.0rc1
3                           November, 19 2008
4                    ================================
5
6 This is the first release candidate of Samba 3.3.0.  This is *not*
7 intended for production environments and is designed for testing
8 purposes only.  Please report any defects via the Samba bug reporting
9 system at https://bugzilla.samba.org/.
10
11 Major enhancements in Samba 3.3.0 include:
12
13  Configuration/installation:
14  o Splitting of library directory into library directory and separate
15    modules directory.
16
17  File Serving:
18  o Extended Cluster support.
19
20  Winbind:
21  o Simplified idmap configuration.
22  o New idmap backends "adex" and "hash".
23  o Added new parameter "winbind reconnect delay".
24  o Added support for user and group aliasing.
25
26  Administrative tools:
27  o The destination "all" of smbcontrol does now affect all running
28    daemons including nmbd and winbindd.
29  o New 'net rpc vampire keytab' and 'net rpc vampire ldif' commands.
30  o The 'net' utility can now use kerberos for joining and authentication.
31
32  Libraries:
33  o NetApi library implements various new calls for User- and Group
34    Account Management.
35
36
37 Configure changes
38 =================
39
40 The configure option "--with-libdir" has been removed. The library
41 directory can still be specified by using the existing "--libdir" option.
42 A new option "--with-modulesdir" has been added to allow the specification
43 of a separate directory for the shared modules.
44
45
46 Winbind idmap backend changes
47 =============================
48
49 The idmap configuration has changed with version 3.3 to something that
50 allows a smoother upgrade path from pre-3.0.25 configurations that use
51 "idmap backend". The reason for this change is that to many, also to Samba
52 developers, the 3.0.25 style configuration with "idmap config" turned out
53 to be very complex. Version 3.3 no longer deprecates the "idmap backend"
54 parameter, instead with "idmap backend" the default idmap backend is
55 specified.
56
57 Accordingly, the "idmap config <domain> : default = yes" setting is no
58 longer being looked at.
59
60 The alloc backend defaults to the default backend, which should be able to
61 allocate IDs. In the default distribution the tdb and ldap backends can
62 allocate, the ad and rid backends can not. The idmap alloc range is now
63 being set with the "old" parameters "idmap uid" and "idmap gid".
64
65 The "idmap domains" parameter has been removed.
66
67
68 winbind reconnect delay
69 =======================
70
71 This is a new parameter which specifies the number of seconds the Winbind
72 daemon will wait between attempts to contact a Domain controller for a domain
73 that is determined to be down or not contactable.
74
75
76 Winbind's Name Aliasing
77 =======================
78
79 Name aliasing in Winbind is a feature that allows an administrator to
80 map a fully qualified user or group name from a Windows domain to a
81 convenient short name for Unix access.  This is similar to the username
82 map functionality supported by smbd but is primary intended for
83 clients and servers making use of Winbind's PAM and NSS libraries.
84
85 For example, the user "DOMAIN\fred" has been mapped to the Unix name
86 "freddie".
87
88    $ getent passwd "DOMAIN\fred"
89    freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
90
91    $ getent passwd freddie
92    freddie:x:1000:1001:Fred Jones:/home/freddie:/bin/bash
93
94 The name aliasing support is provided by individual nss_info plugins.
95 For example, the new "adex" plugin reads the uid attribute from Active
96 Directory to make a short login name to the fully qualified name.
97 While the new "hash" module utilizes a local file to map "short_name
98 = QUALIFIED\name".  Both user and group name mapping is supported.
99 Please refer to the "winbind nss info" option in smb.conf(5) and
100 to individual plugin man pages for further details.
101
102
103 idmap_hash
104 ==========
105
106 The idmap_hash plugin provides similar support as the idmap_rid
107 module.  However, uids and gids are generated from the full domain
108 SID using a hashing algorithm that maps the lower 19 bits from the user
109 or group RID to bits 0 - 19 in the Unix id and hashes 96 bits from
110 the domain SID to bits 20 - 30 in the Unix id.  The result is a 31 bit
111 uid or gid that is consistent across machines and provides support for
112 trusted domains.
113
114 Please refer to the idmap_hash(8) man page for more details.
115
116
117 idmap_adex
118 ==========
119
120 The adex idmap/nss_info plugin is an adaptation of the Likewise
121 Enterprise plugin with support for OU based cells removed
122 (since the Windows pieces to manage the cells are not available).
123
124 This plugin supports
125
126       * The RFC2307 schema for users and groups.
127       * Connections to trusted domains
128       * Global catalog searches
129       * Cross forest trusts
130       * User and group aliases
131
132 Prerequisite: Add the following attributes to the Partial Attribute
133 Set in global catalog:
134
135       * uidNumber
136       * uid
137       * gidNumber
138
139 A basic config using the current trunk code would look like:
140
141 [global]
142         idmap backend = adex
143         idmap uid = 10000 - 29999
144         idmap gid = 10000 - 29999
145         winbind nss info = adex
146
147         winbind normalize names = yes
148         winbind refresh tickets = yes
149         template homedir = /home/%D/%U
150         template shell = /bin/bash
151
152 Please refer to the idmap_adex(8) man page for more details.
153
154
155 ######################################################################
156 Changes
157 #######
158
159 smb.conf changes
160 ----------------
161
162     Parameter Name                      Description     Default
163     --------------                      -----------     -------
164     cups connection timeout             New             30
165     idmap domains                       Removed
166     init logon delayed hosts            New             ""
167     init logon delay                    New             100
168     winbind reconnect delay             New             30
169
170
171 Changes since 3.3.0pre2:
172 ------------------------
173
174 o   Michael Adam <obnox@samba.org>
175     * Make keytab filename argument mandatory to "net rpc vampire keytab".
176
177
178 o   Jeremy Allison <jra@samba.org>
179     * BUG 5080: Fix access to cups-printers with cups 1.3.4.
180     * BUG 5814: Fix Winbind crash bug while doing "rescan_trusted_domain".
181     * BUG 5818: Sort ACEs in smbcacl output properly and honor inheritance.
182     * BUG 5825: Fix account locking with an LDAP backend.
183     * BUG 5826: Fix truncated filenames when accessing old servers.
184     * BUG 5889: Fix "delete veto files = no".
185     * BUG 5891: Fix smbd crash when viewing the eventlog exported by "eventlog
186       list".
187     * BUG 5900: Fix vfs_readonly.
188     * Correctly fix smbclient to terminate on eof from server.
189     * Fix client timeout when searching for a large number of cups printers.
190     * Unify access checks for lsa server functions.
191     * Remove the requirement for ldap call made as root.
192     * Cope with MAXIMUM_ALLOWED_ACCESS requests when opening handles.
193     * Fix net rpc vampire, based on an *amazing* piece of debugging work by
194       "Cooper S. Blake" <the_analogkid@yahoo.com>.
195     * Fix memory leak in error path, spotted by Martin Zielinski <mz@seh.de>.
196     * Add vfs_acl_tdb.c module to do ACLs completely in userspace.
197
198
199 o   Kai Blin <kai@samba.org>
200     * BUG 5892: Fix net rap printq info documentation.
201
202
203 o   Gerald (Jerry) Carter <jerry@samba.org>
204     * Use the same prerequisite for DDNS update as Windows XP.
205     * Make "lwinet ads dns register" honor the "interfaces" parameter.
206
207
208 o   Günther Deschner <gd@samba.org>
209     * BUG 5888: Fix PNP_GetHwProfInfo().
210     * Ensure consistency when reporting password complexity.
211     * Fix _lsa_GetUserName.
212     * Fix access check in _samr_QuerySecurity().
213     * _samr_DeleteUser needs to wipe out the user_handle on success.
214     * NetGroupEnum_r needs to handle servers with no groups.
215     * Fix numerous netapi issues.
216
217
218 o   Jeff Layton <jlayton@redhat.com>
219     * Have uppercase_string return success on NULL pointer in mount.cifs.
220     * Make mount.cifs return codes match the return codes for /bin/mount.
221
222
223 o   Volker Lendecke <vl@samba.org>
224     * BUG 5691: Fig smbd panic on Solaris.
225     * BUG 5840: Fix segfault in "rpcclient lsaaddacctrights".
226     * BUG 5860: safe_strcpy gives a nasty error message for overlong strings.
227     * Fix a potential NULL deref in found by the IBM Checker.
228     * Fix an uninitialized variable found by the IBM Checker.
229     * Fix an unlikely memleak found by the IBM Checker.
230     * Fix some missing error handlings.
231     * Add workaround for domain joins using a netbios name which is different
232       from the hostname.
233     * Fix a valgrind error in idmap_ad_sids_to_unixids().
234     * Make memcache_add_talloc NULL out the source pointer.
235     * Fix memleak in memcache_add_talloc found by Martin Zielinski <mz@seh.de>.
236
237
238 o   Jeff Layton <jlayton@redhat.com>
239     * mount.cifs: use lock/unlock_mtab scheme from util-linux-ng mount prog.
240
241
242 o   Derrell Lipman <derrell.lipman@unwireduniverse.com>
243     * BUG 5805: Don't close stdout when calling setup_logging multiple times.
244
245
246 o   TAKAHASHI Motonobu <monyo@samba.gr.jp>
247     * 5901: Fix default value for streams_depot location.
248
249
250 o   Tim Prouty <tim.prouty@isilon.com>
251     * Fix several build warnings.
252
253
254 o   Andreas Schneider <mail@cynapses.org>
255     * Delete the krb5 ccname variable from the PAM environment if set.
256
257
258 o   Davide Sfriso <sfriso@virgilio.it>
259     * BUG 5906: Fix Winbind crash bug during 'getent group' on PDC.
260
261
262 o   Joe Smith <yasumoto7@gmail.com>
263     * Fix typo in source/utils/net_rap.c.
264
265
266 o   Martin Schwenke <martin@meltin.net>
267     * Prevent make errors for picky makes when $(EXTRA_ALL_TARGETS) is empty.
268     * Add @CIFSUPCALL_PROGS@ to "all" target so cifs.upcall gets built at
269       compile time rather than install time.
270
271
272 o   Bo Yang <boyang@novell.com>
273     * Fix broken msgids in ntstatus_errors.
274     * i18n/l10n pam_winbind
275
276
277 Commit Highlights:
278 ------------------
279
280 o   Michael Adam <obnox@samba.org>
281     * BUG 5609: Remove configure option "--with-libdir" and add
282       "--with-modulesdir".
283     * Extend "net rpc vampire keytab" to support differential replication
284       and storing of kerberos keys.
285     * Rework internal logic of registry tdb code.
286     * Freeze autogenerated prototype headers (good bye "make proto").
287
288
289 o   Jeremy Allison <jra@samba.org>
290     * Add new "winbind reconnect delay" parameter.
291     * Make the change to smbcontrol for "all" to mean broadcast,
292       and "smbd" to mean the main smb daemon.
293
294
295 o   Gerald W. Carter <jerry@samba.org>
296     * Add support for name aliasing in Winbind.
297     * Add the idmap/nss-info provider from Likewise Open.
298     * Allow an admin to define the "uid" attribute for a RFC2307
299       user object in AD to be the username alias.
300     * Add new idmap backend "adex" to support RFC2307 enabled AD forests.
301
302
303 o   Guenther Deschner <gd@samba.org>
304     * BUG 5710: Fix changing of machine account passwords.
305     * Add "net rpc vampire keytab" and "net rpc vampire ldif".
306
307
308 o   Volker Lendecke <vl@samba.org>
309     * Rework of the Winbind idmap backend.
310     * Fix calculation of useable_space for trans2 and nttrans replies.
311     * Add mapping of generic bits when setting an NFSv4 ACL.
312
313
314 ######################################################################
315 Reporting bugs & Development Discussion
316 #######################################
317
318 Please discuss this release on the samba-technical mailing list or by
319 joining the #samba-technical IRC channel on irc.freenode.net.
320
321 If you do report problems then please try to send high quality
322 feedback. If you don't provide vital information to help us track down
323 the problem then you will probably be ignored.  All bug reports should
324 be filed under the Samba 3.3 product in the project's Bugzilla
325 database (https://bugzilla.samba.org/).
326
327
328 ======================================================================
329 == Our Code, Our Bugs, Our Responsibility.
330 == The Samba Team
331 ======================================================================
332