r6285: revert -r5707 to fix the XP sp2 dfs issue in FindFirst().
[Samba.git] / WHATSNEW.txt
blob7cb8628add76aa23ebba3a462c4c74c6fb8392bd
1                    ==============================
2                    Release Notes for Samba 3.0.13
3                             Mar 24, 2005
4                    ==============================
6 This is the latest stable release of Samba. This is the version
7 that production Samba servers should be running for all current
8 bug-fixes.  Please read the following important changes in this
9 release.
11 Common bugs fixed in 3.0.13 include:
13   o Infinite FindNext() loop from Windows 9x client when
14     copying or deleting files on a Samba file share using 
15     explorer.exe.
16   o Numerous smbclient bugs when listing directories.
17   o Failures in smbclient when connecting to a Windows 9x 
18     file server.
20     
21 ######################################################################
22 Changes
23 #######
25 Changes since 3.0.12
26 --------------------
28 o   Jeremy Allison <jra@samba.org>
29     * Fix typo bug in smbclient where flags overwrote info level
30       in the cli_list_new().
31     * Fix old smbclient bug where ff_searchcount was being compared 
32       to -1 resulting in processing a filename twice.
33     * Fix segv in smbclient caused by overwriting the last 2 bytes 
34       in cli_list_new().
35     * BUG 2530: Fix potential segv in smbclient when talking to a 
36       Windows 9x file server.
37     * Fix last entry offset in cli_list_new() when using a 
38       FindFirst/FindNext info level of 0x104.
39     * BUG 2501: Stop Win98 from looping doing FindNext on a 
40       singleton directory. 
41     * BUG 2521: Fix error in access checks when user group ACLs.
42       
43       
44 o   Gerald (Jerry) Carter <jerry@samba.org>
45     * BUG 2497: Fix bug in rpcclient's deletedriverex when asking 
46       to delete all versions of a driver.
47     * BUG 2517: use the realm from smb.conf for 'net ads info' when 
48       'disable netbios = yes'.
49     * BUG 2530: Ensure that smbclient correctly detects MS-DFS root
50       shares.  
51     * Update RedHat packaging files to require cups support.  Also
52       remove requirement for 'idmap {uid,gid}' settings in smb.conf
53       from winbindd init script.
54     * BUG 2516: fix compile issue on True64.
55     
56       
57       
58 o   Guenther Deschner <gd@samba.org>
59     * Check for the correct cli-struct when copying files in 'net 
60       rpc printer' routines.
63 o   Herb Lewis <herb@samba.org>
64     * Fix incorrect test in 'net rpc user' when the user is not
65       a member of any groups.
66       
67       
68 o   Jim McDonough <jmcd@us.ibm.com>
69     * Make sure that enum_group_members() searches the correct suffix.
70     
73 Release Notes for older release follow:
75       --------------------------------------------------
76                    ==============================
77                    Release Notes for Samba 3.0.12
78                             Mar 18, 2005
79                    ==============================
81 Common bugs fixed in 3.0.12 include:
83   o Winbind failures when using 'disable netbios = yes'
84   o Failure to establish a trust relationship via 'net rpc trust 
85     establish'
86   o Various portability & compiler issues.
87   o Read only file deletion failure caused by new delete semantics 
88     in Windows XP SP2 and the MS 04-044 security hotfix.
89   o Error messages from shared Excel workbooks residing on Samba 
90     file shares.
91   o Missing files in the output of smbclient -c 'dir' when run 
92     against Windows file servers.
93   o Inability for Print Administrators to pause/resume/purge print 
94     queues.
96 Additional features introduced in Samba 3.0.12:
98   o Performance enhancements when serving directories containing 
99     large number of files.
100   o MS-DFS support added to smbclient.
101   o More performance improvements when using Samba/OpenLDAP based 
102     DC's via the 'ldapsam:trusted=yes' option.
103   o Support for the Novell NDS universal password when using the
104     ldapsam passdb backend.
105   o New 'net rpc trustdom {add,del}' functionality to eventually 
106     replace 'smbpasswd {-a,-x} -i'.
107   o New libsmbclient functionality.
111 =======================
112 Large Directory Support
113 =======================
115 Samba 3.0.12pre1 introduces a specific mechanism for dealing
116 with file services that frequently contain a large number of files
117 per directory.  Historically Samba's performance has suffered 
118 in such environments due to the translation from case 
119 insensitive lookups by Windows client to the case sensitive
120 storage mechanisms used by UNIX filesystems.
122 Configuration details along with a short HOWTO can be found at:
124 http://www.samba.org/samba/ftp/HOWTO/Samba-LargeDirectory-HOWTO
127 ==================================
128 libsmbclient Binary Compatibility
129 ==================================
131 Please note that a change has been made to the _SMBCCTX structure 
132 in source/include/libsmbclient.h.  This change is not backwards
133 compatible with applications linked against the libsmbclient.so
134 library from Samba 3.0.11.  However, it is compatible with all 
135 other Samba 3.0.x releases.  This means that it will be most likely
136 be necessary to recompile any applications linked against the 
137 3.0.11 version of the library.
140 ######################################################################
141 Changes
142 #######
144 smb.conf changes
145 ----------------
147     Parameter Name                      Action
148     --------------                      ------
149     allocation roundup size             New
150     log nt token command                New
151     write cache                         Deprecated
153 Changes since 3.0.12rc1
154 -----------------------
157 o   Jeremy Allison <jra@samba.org>
158     * Debug log message cleanups.
159     * Add case insensitive search for a principal match on logon 
160       verification in the system keytab (based on patch by 
161       Michael Brown <mbrown@fensystems.co.uk>).
162     * Revert the previous SMB signing change from Nalin Dahyabhai
163       when using DES keys.
164     * Add missing RESOLVE_DFSPATH() calls for older SMB commands.
165     * Fix FindFirst() server code to deal with resume names of ".."
166       and "." (found by Jim McDonough).
167     * BUG 2451: Fix missing functions in full audit VFS module.
168     * Ensure that smbd logs failures reported by DISK_FREE()
169       (reported by Ying Li <ying.li2@hp.com>).
170     * Ensure that smbclient obeys the max protocol argument again.
171     * BUG 2335: Return correct error code for OS/2 clients (based on
172       negotiated protocol level).
173     * BUG 2460, 2464: remove dead code and unused variables 
174       (reported by Jason Mader).
177 o   Vince Brimhall <vbrimhall@novell.com>
178     * BUG 2453: Change the way pdb_nds.c handles users with no 
179       Universal or Simple Password.
180     * NDS schema file corrections.
183 o   Gerald (Jerry) Carter <jerry@samba.org>
184     * Various small compile fixes and cleanup warnings.
185     * BUG 2456: Fix compile failure on non-gcc platforms due to
186       non-standard pragma.
189 o   Guenther Deschner <gd@samba.org>
190     * Add example perl script to check for multiple LDAP entries
191       after running 'net rpc vampire'.
192     * Add more output when listing printer forms via rpcclient.
193     * Debug log message cleanup.
196 o   William Jojo <jojowil@hvcc.edu>
197     * BUG 2445: Patch to avoid default ACLs on AIX.
200 o   Derrell Lipman <derrell.lipman@unwireduniverse.com>
201     * Implement better solution for backwards binary compatibility
202       in libsmbclient while adding new fields to struct _SMBCCTX.
205 o   Mark Loeser <halcy0n@gentoo.org>
206     * BUG 2443: Compile fix for gcc4.
209 o   Jim McDonough <jmcd@us.ibm.com>
210     * BUG 2338: Fix coredump when OS/2 checks for long file name 
211       support (with .+,;=[].) (thanks to Guenter Kukkukk).
214 o   John Terpstra <jht@samba.org>
215     * Add the capability to set account description using pdbedit.
218 o   Doug VanLeuven <roamdad@sonic.net> 
219     * Add more case/realm/name permutations to the kerberos keytab.
220     
221     
222 Changes since 3.0.11
223 --------------------
225 commits
226 -------
227 o   Jeremy Allison <jra@samba.org>
228     * BUG 2146: Return correct allocation sizes so as not to crash 
229       the VC++ compiler.
230     * BUG 962: Ensure that parsing of service names in smb.conf is 
231       multibyte safe.
232     * BUG 2201, 2227: Support new delete semantics used by MS04-044
233       and XP SP2.
234     * BUG 1525: Correctly timestamps interpreted on 64-bit time_t 
235       values (patch submitted by Jay Fenlason <fenlason@redhat.com>).
236     * Add special hooks when serving directories containing large
237       numbers of files.
238     * Ensure that WINS negative name query responses and WACK 
239       packets use the correct RR type of 0xA instead of reflecting 
240       back what the query RR type was (0x20).
241     * BUG 2310: Only do 16-bit normalization on small dfree request.
242     * BUG 2323: Correct authentication failure when using plaintext 
243       passwords from Windows XP clients.
244     * BUG 2146: Add new smb.conf option 'allocation roundup size' to
245       work around issues building MS Visual Studio 6.0 project 
246       on a Samba file share while restoring the pre-3.0.21pre1 
247       behavior by default.
248     * BUG 2399 (partial): Ensure we use SMB_VFS_STAT instead of 
249       stat when checking for existence of a pathname.
250     * Check the sticky bit on the parent directory for supporting
251       the new WinXP SP2 file deletion semantics.
252     * Various oplock, share mode, and byte range locking fixes
253       found by Connectathon tests.
254     * BUG 2271: Fix resume key issues in trans2FindFirst() client 
255       code.
256     * BUG 2382, 2045: More pending modtime and delayed write fixes
257       for MS Excel (incorporates partial patches from 
258       ke_miyata@itg.hitachi.co.jp).
259       
261 o   Andrew Bartlett <abartlet@samba.org>
262     * Avoid length-limited intermediate copy of NT and LM responses 
263       in NETLOGON client.
264     * Debug message cleanups in the NTLMSSP implementation.
265       
267 o   Manuel Baena <mbaena@lcc.uma.es>
268     * Print actual error message in smbmnt.c:fullpath().
271 o   Vince Brimhall <vbrimhall@novell.com>
272     * Add support for Novell NDS universal password.
273     * BUG 2424: Ensure that uidNumber and gidNumber use match 
274       the RFC2307 schema
275     
276     
277 o   Gerald (Jerry) Carter <jerry@samba.org>
278     * Add trans2 client call for checking dfs referrals
279     * Convert smbclient to use TRANS_QPATHINFO(SMB_QUERY_FILE_BASIC_INFO) 
280       when checking directories on modern CIFS servers.
281     * Add MS-DFS support to smbclient.
282     * Code cleanup of adt_tree.[ch].
283     * Add missing checks to allow root to manage user rights.
284     * Allow domain admins to manage rights assignments on domain members
285       servers.
286     * BUG 2333: Use the lpq command to pass in the correct printer name 
287       for cups_queue_get().  CUPS backend now sets 'lpq command= %p' as 
288       the default.
289     * BUG 1439: make sure to initialize pointer to prevent invalid 
290       free()'s on exit.
291     * BUG 2329: fix to re-enable winbindd to locate DC's when 'disable 
292       netbios = yes'.
293     * Add cups-devel to BuidlRequires directive in Fedora spec file.
294     * BUG 858: Fix order of popt args evaluation so we don't crash 
295       when given no command line args.
296     * Remove dependency on bash for source/autogen.sh.
297     * Fix clitar.c compile issues caused by broken MIT 1.4 headers.
298     * Implement MS-DFS for recursive directory listings in smbclient.
299     * BUG 2394: Fix nmbd linking issue on IRIX.
300     * Only display the publish check box in the client's printer 
301       properties dialog if we are a member of an AD domain.
302     * BUG 2363: allow 'in use' driver to be removed as long as 
303       one 'Windows NT x86' driver remains.
304     * BUG 1881: Allow PRINT_SPOOL_PREFIX to be set in local.h for 
305       porting purposes.
306     * Enforce better printer.tdb cache consistency when removing 
307       jobs from a print queue via SMB.
308     * Ensure that pause/resume/purge print queue commands are run
309       with the appropriate level of privilege necessary to actually
310       work.
311     * BUG 2355: Use bsd style commands (lpq, lpr, etc...) for default
312       for 'printing = cups' installations that do not actually have 
313       libcups.
314     * BUG 2425: Remove incorrect checks for Win98 DFS clients.
315     * BUG 2215: Rewrite questionable code that was causing gcc to 
316       choke.
317     * Add server support for LsaLookupPrivValue().
318       
320 o   Kevin Dalley <kevin@kelphead.org>
321     * BUG 2398: Don't force smbclient to assume a dry run if the 
322       target tarfile is /dev/null.
323       
324       
325 o   Guenther Deschner <gd@samba.org>
326     * Fix crash bug in the client-spoolss enumdataex-call.
327     * Expand the valid-workstation-scheme by expanding names 
328       beginning with a plus (+) as a unix group.
329     * Allow own netbios name to be set in smbclient's session setup.
330     * Better handling of LDAP over IPC connections that have expired 
331       on the LDAP-Server.
332     * Fix pipe-mismatch for NETDFS in cli_dfs.c.
333     * Add examples/misc/adssearch.pl.
334     * BUG 2343: Build fixes.
335     * Support get_user_info_7 in SAMR server RPC.
336     * Fix server_role in the samr_query_dom_info calls. 
339 o   Steve French <sfrench@us.ibm.com>
340     * On failed mount (ENXIO) retry share name in uppercase (fix
341       mount to FastConnect AIX SMB server).
342     * Add missing FILE_ATTRIBUTE_XXX defines to smb.h.
343     * Ignore user_xattr mount parm (mount.cifs) so as not to confuse
344       it with a user name.
345     * Update for new CIFS POSIX info levels.
346     * Ignore users mount parm in mount.cifs.
349 o   SATOH Fumiyasu <fumiya@samba.gr.jp>
350     * BUG 1549: Don't truncate service names in smbstatus.
351     
353 o   S Murthy Kambhampaty <smk_va@yahoo.com>
354     * Add idmap_rid module to Fedora and RedHat spec files.      
355       
356       
357 o   Volker Lendecke <vl@samba.org>
358     * BUG 2401: Flush internal getpwnam() cache after deleting a 
359       user.
360     * BUG 1604: Make winbind work with more than 10 trusted domains.
361     * Cleanup various compiler warnings.
362     * Fix a memory leaks in privileges code and passdb backends.
363     * Fixes for samr_lookup_sids() client call.
364     * Optimize _samr_query_groupmem with LDAP backend for large 
365       domains.
366     * Support SIDs as %s replacements in the afs username map 
367       parameter.
368     * Add 'log nt token command' parameter. If set, %s is replaced 
369       with the user sid, and %t takes all the group sids.
370     * Do not use the "Local Unix Group"-default description for 
371       all kinds of group-mappings. 
372     * Fix uninitialized variable in Linux nss_winbind library.
373     * Move 'net afskey' into a subcommand of its own, 'net afs key'.
374     * Implement 'net afs impersonate'.
375     
377 o   Herb Lewis <herb@samba.org>
378     * Fix build problem when HAVE_POSIX_ACL is not defined.
379     * BUG 2417: Add help lines for net rpc group addmem and 
380       delmem commands.
381     
382     
383 o   Jason Mader <jason@ncac.gwu.edu>
384     * Compiler warning fixes (BUGS BUG 2132, 2134, 2289, 2327, 2340, 2341, 
385        2342)
386     
387     
388 o   Derrell Lipman <derrell.lipman@unwireduniverse.com>
389     * Add support to libsmbclient for getting and setting DOS 
390       attributes using EA functions.
391     * Fix libsmbclient's URL encoding/decoding.
392     * Replace browse listing URI queries with an internal options 
393       structure (previous method violated the SMB URI syntax).
394     * Allow tree connects to be multiplexed over a single CIFS server 
395       connection context.
396     * Ensure that cli_tdis() sets the cnum field to -1 so that callers
397       can determine a dead tree connection.
398     
400 o   Justin Ossevoort <justin@snt.utwente.nl>
401     * BUG 2316: Fix crashes in pdb_pgsql.
402     
403     
404 o   Jim McDonough <jmcd@us.ibm.com>
405     * Fixes for server schannel implementation when 'restrict 
406       anonymous = 1' is set in smb.conf.
407     * Fix bug in server side lookupsids reply that crashed lsass.exe 
408       on Windows clients.
409     * Fix 'net rpc trustdom establish'.
410     * BUG 2062: Turn off broadcast for all 390 NICs.
411     * Fix 'net rpc trustdom add' to correctly add new domain trust 
412       accounts.  This will eventually replace 'smbpasswd -a -i'.
413     * Implement 'net rpc trustdom del', including client side of 
414       samr_remove_sid_from_foreign_domain.
415     * Bring IBM Directory Server schema up to date with openldap 
416       schema.
417     * Allow for better protection of sensitive attributes in IBM
418       Directory Server.
421 o   Stefan Metzmacher <metze@samba.org>    
422     * Fix memleaks in the nttrans code.
424     
425 o   Mike Nix <mnix@wanm.com.au>
426     * Add SMBsplopen and SMBsplclose client calls.
427     
429 o   James Peach <jpeach@sgi.com>
430     * Fixes in string handling code.
431     * Fix oplock2 test in client smbtorture.
432     
433     
434 o   Tim Potter <tpot@samba.org>
435     * Fix up example pdb modules after prototype change for 
436       setsampwent.
437     * BUG 2058: Fix for shared object creation in examples.
438     * BUG 2315: Fix segv in LSA privileges server code.
439     * Build fixes for python wrapper libraries.
442 o   Richard Sharpe <rsharpe@samba.org>
443     * BUG 2044: Fix segv in profiles tool.
444     * Fix bogus error messages when enumerating user group 
445       membership via 'net rpc'.
448 o   Simo Sorce <idra@samba.org>
449     * Debian packaging fixes.
450       
451       
452 o   Doug VanLeuven <roamdad@sonic.net>
453     * AIX compile fixes.
456 o   Jelmer Vernooij <jelmer@samba.org>
457     * BUG 892: Default unknown_6 field to 1260 in mySQL pdb module.
458     * BUG 1957: Implement minimal update of fields in mySQL pdb 
459       module.
460     
462 o   Torsten Werner <torsten.werner@assyst-intl.com>
463     * BUG 2405: Define 'lpstat' printcap output on HPUX.
464     
466 o   Shlomi Yaakobovich" <Shlomi@exanet.com>
467     * Detect infinite loops when traversing tdbs.
470       --------------------------------------------------
471                    ==============================
472                    Release Notes for Samba 3.0.11
473                              Feb 5, 2005
474                    ==============================
476 Common bugs fixed in 3.0.11 include:
478   o Crash in smbd when using CUPS printing.
479   o Parsing error of other SIDs included in the user_info_3
480     structure returned from domain controllers.
481   o Inefficiencies when searching non-AD LDAP directories.
482   o Failure to expand variables in user domain attributes
483     in tdbsam and ldapsam.
484   o Memory leaks.
485   o Failure to retrieve certain attribute when migrating from 
486     a Windows DC to a Samba DC via 'net rpc vampire'.
487   o Numerous printing bugs bugs including memory 
488     bloating on large/busy print servers.
489   o Compatibility issues with Exchange 5.5 SP4.
490   o sendfile fixes.
492 Additional features introduced in Samba 3.0.11:
494   o Winbindd performance improvements.
495   o More 'net rpc vampire' functionality.
496   o Support for the Windows privilege model to assign rights
497     to specific SIDs.
498   o New administrative options to the 'net rpc' command.
501 ============
502 LDAP Changes
503 ============
505 If "ldap user suffix" or "ldap machine suffix" are defined in
506 smb.conf, all user-accounts must reside below the user suffix,
507 and all machine and inter-domain trust-accounts must be located 
508 below the machine suffix.  Previous Samba releases would fall 
509 back to searching the 'ldap suffix' in some cases.
512 ===============
513 Privilege Model
514 ===============
516 Samba 3.0.11 supports the following assignable rights
518 SeMachineAccountPrivilege  Add machines to domain
519 SePrintOperatorPrivilege   Manage printers
520 SeAddUsersPrivilege        Add users and groups to the domain
521 SeRemoteShutdownPrivilege  Force shutdown from a remote system
522 SeDiskOperatorPrivilege    Manage disk shares
524 These rights can be assigned to arbitrary users or groups
525 via the 'net rpc rights grant/revoke' command.  More details
526 of Samba's privilege implementation can be found in the 
527 Samba-HOWTO-Collection.
528     
530 ######################################################################
531 Changes
532 #######
534 Changes since 3.0.10
535 --------------------
537 smb.conf changes
538 ----------------
540     Parameter Name                      Action
541     --------------                      ------
542     afs token lifetime                  New
543     enable privileges                   New
544     ldap password sync                  Alias
545     min password length                 Deprecated
546     winbind enable local accounts       Deprecated
549 commits
550 -------
551 o   Jeremy Allison <jra@samba.org>
552     * Extend vfs to add seekdir/telldir/rewinddir.
553     * Fix dirent return.
554     * Fix bugs when handling secondary trans2 requests.
555     * Implementation of get posix acls in UNIX extensions.
556     * Added set posix acl functionality into the UNIX extensions code.
557     * Updated config.guess/config.sub .
558     * Fix error reply when 'follow symlinks = no'.
559     * BUG 1061, 2045: Only set mtime from pending_modtime if it's 
560       not already zero.
561     * Fixes for LARGE_READX support.
562     * Fix the problem we get on Linux where sendfile fails, but we've
563       already sent the header using send().
564     * BUG 2081: Ensure SE_DESC_DACL_PROTECTED is set if 'map acl 
565       inherit = no'.
566     * BUG 2088: Ensure inherit permissions is only applied on a new 
567       file, not an existing one.
568     * Don't go fishing for the krb5 authorization data unless we know
569       it's there.
570     * Fixes for libsmbclient to ensure that interrupted system calls
571       are restarted minus the already expired portion of the timeout
572       (based on work by Derrell Lipman).
573     * More Unicode string parsing fixes.
574     * Convert the winreg pipe to use WERROR returns.
575     * Make all LDAP timeouts consistent (input from Joe Meadows 
576       <jameadows@webopolis.com>).
577     * BUG 2231: Remove double "\\" from client findfirst.
578     * BUG 2238: Fix memory leak in shadow copy vfs.
579     * Return correct DOS/NT error code on transact named pipe on 
580       closed pipe handle.
581     * BUG 2211: Fix security descriptor parsing bug (based on work by 
582       Mrinal Kalakrishnan <mail@mrinal.net>).
583     * BUG 2270: Fix memory leaks in cups printing backend support 
584       (based on work by Lars Mueller).
585     * BUG 2255: Fix debug level in kerberos error messages.
586     * BUG 2110: Ensure we convert to ucs2 correctly after the 
587       CAN-2004-0930 patch.
588     * Make strict locking an enum. Auto means use oplock optimization.
589     * Fix client  & server to allow 127k READX calls.
590     * More *alloc fixes (includes additional fixes by Albert Chin.
591     * Catch sendfile errors correctly and return the correct values 
592       we want the caller to return.
593     * BUG 2092: Prevent auto-anonymous logins via libsmbclient 
594       for better use by desktop environments such as GNOME.
595     * Ensure we can't remove a level II oplock without having the
596       shared memory area locked.
597             
599 o   Timur Bakeyev <timur@com.bat.ru>
600     * BUG 2100: change the way we check for errors after a dlopen().
601     * BUG 2263: Guard base64_encode_data_blob() against empty blobs.
602     
603     
604 o   Andrew Bartlett <abartlet@samba.org>
605     * Clarify error message when 'lanman auth = no'.
606     * Remove the unnecessary UTF-8 conversion calls in the calls to
607       auth_winbind from smbd.
608     * Don't store the auth-user credentials with the cli_state* as 
609       this can cause the schannel setup to fail when the auth-user
610       domain is not our primary domain.
613 o   Grigory Batalov <bga@altlinux.org>
614     * Fix encoding while receiving of a message which was actually 
615       sent using STR_ASCII.
618 o   Daniel Beschorner <db@unit-netz.de>
619     * BUG 603: Correct access mask check for _samr_lookup_domain()
620       to work with Windows RAS server
623 o   Jerome Borsboom <j.borsboom@erasmusmc.nl>
624     * Fix missing printer_tdb reference decrement.
625     
627 o   Gerald (Jerry) Carter <jerry@samba.org>
628     * BUG 2073: fall back to smb_name if current_user_info is not
629       available in lp_file_list_changed().
630     * Fixes the spurious 'register_message_flags: tdb fetch failed' 
631       errors.
632     * Don't run the background LPQ daemon when we are running in
633       interactive mode.
634     * prevent the background LPQ daemon from updating the print queue
635       cache just because multiple smbd processes sent a message that
636       it was out of date.
637     * consolidate printer searches to use find_service rather than 
638       for(...) loops.
639     * BUG 2091: don't remove statically defined printers in 
640       remove_stale_printers().
641     * Fix logic error in add_a_form() that only compared N characters 
642       instead of the entire form name.
643     * BUG 2107: fix memory bloating caused by large numbers of 
644       print_queue_updates() requests sent via messages.tdb.
645     * Check the setprinter(3) based on the access permissions on 
646       the handle and avoid the call to print_access_check().
647     * Re-instantiate previous semantics for calling init_unistr2() 
648       with a NULL source buffer.
649     * Support Windows privilege model for assigning rights
650       to specific SIDs.  Based on work by Simo Sorce in the trunk 
651       svn branch.  This feature is controlled by the 'enable 
652       privileges = [yes|no]' smb.conf(5) option.
653     * Add some smb.conf scripts for add/delete/change shares and 
654       deleting cups printers.
655     * Expand variables in the profile path, logon home and logon script 
656       values when using either tdbsam or ldapsam.
657     * Add Domain Admins (Full Control) to the default printer security 
658       descriptor if we are a DC.
659     * RedHat and Fedora Packaging fixes for perl dependencies.
660     * Remove unused schema items from OpenLDAP schema file.
661     * Remove duplicate enumeration of "Windows x86" architecture
662       when listing printer drivers via rpcclient.
663     * Fail set_privileges() if 'enable privileges = no' to prevent 
664       confused admins.
665     * Fix segfault in cups_queue_get().
666     * Tighten restrictions on changing user passwords when 
667       the connected user possesses the SeMachineAccountPrivilege.
668     * Ensure we set NETBIOSNAME.domainname for the long machine name
669       when publishing printers in AD (based on input from Rob Foehl).
670     * Mark 'winbind enable local accounts' as deprecated.
671     * Mark testprns tool as deprecated.
672     * Allow root to grant/revoke privilege assignments.
673     * Correct interaction between user rights and se_access_check() on
674       SAMR objects.
675     * BUG 2286: Fix typo OpenLDAP schema file for sambaConfig object 
676       class.
677     * BUG 2262: Add support in configure.in for *freebsd6*.
678     * BUG 2266: Portability fixes for quota code on FreeBSD4.
679     * BUG 2264: Remove shutdown and abortshutdown commands from 
680       rpcclient in favor of using the same functions in 'net'.
681     * BUG 2295: Prevent smbd from returning an empty server name
682       in certain lanman api calls.
683     * BUG 2290: Fix autogen.sh script in examples (based on original
684       patch from Lars Mueller).
685     * Fix bug enumerating domain trusts in security = ads.
686     * Fix segv in rpcclient's dsenumdomtrusts.
687     * Fix bug in expansion of %U and %G in included filenames.
688     * BUG 2291: Restrict creation of server trust and domain trust
689       accounts to members of the "Domain Admins" group.
691 o   Nadav Danieli <nadavd@exanet.com>
692     * Short circuit some is_locked() tests if we are oplocked.
693     
694     
695 o   Guenther Deschner <gd@samba.org>
696     * Allow 'localhost' as a valid server name in the smbd for the
697       spoolss calls.
698     * Fix KRB5_SETPW-defines, no change in behavior (Thanks to Luke
699       Mewburn for the input).
700     * BUG 2059: Add additional checks needed after logic change to the
701       HAVE_WRFILE_KEYTAB detection test.
702     * BUG 1076: Fix interaction with Exchange 5.5. SP4 and a 
703       Samba DC.  Allow us to lookup at least our own SID.
704     * More fixes to have proper German in swat (Thanks to Reiner 
705       Klaproth and Björn Jacke.
706     * BUG 404, 2076: Allow to set OWNER- and GROUP-entries while 
707       setting security descriptors with smbcacls and using with 
708       the -S or -M switch. 
709     * Include the munged_dial, bad_password_count, logon_count, and 
710       logon_hours attributes when running 'net rpc vampire'.
711     * Fix segfault in idmap_rid.
712     * When winbindd is operating in the multi-mapping mode of 
713       idmap_rid, allow BUILTIN domain-mapping.
714     * Display infolevel 12 in query_dom_info in rpcclient.
715     * Fix bug in winbindd's lowercasing of usernames.
716     * Allow -v or -l for displaying verbose groupmap-listing 
717       as well as "verbose".
718     * Backport Samba4 SAM_DELTA_DOMAIN_INFO for use in 'net rpc 
719       vampire'.
720     * Close LDAP-Connection before retrying to open a new connection 
721       in the retry-loop.
722     * Marking "min password length" as depreciated.  
723     * Implement SAMR query_dom_info-call info-level 8 server- and 
724       client-side, based on samba4-idl.
725     * Allow rpcclient to define a port to use when connecting 
726       to a remote server.
727     * Allow Account Lockout with Lockout Duration "forever" (until 
728       admin unlocks) to be set and displayed in User Manager.
729     * Allow to set acb_mask in rpcclient's enumdomusers.
730     * Add more generic rootDSE inspection function to check 
731       for given controls or extensions and remember these on a 
732       per server basis.
733     * Improve LDAP search efficiency by passing the acb_mask to 
734       pdb_setsampwent().
735     * Fixes for ldapsam_enum_group_memberships().
736     * Add createdomgroup to rpcclient.
737     * Add "net rpc user RENAME"-command.
738     * Display sam_user_info_7 in rpcclient.
739     * Make multi-domain-mode in idmap_rid accessible from outside 
740       (can be compiled with -DIDMAP_RID_SUPPORT_TRUSTED_DOMAINS).
741     * When vampiring account policy AP_LOCK_ACCOUNT_DURATION honor 
742       "Lockout Duration: Forever".
743     * Fix configure.in tests using KRB5_CONFIG variable and krb5-
744       config utility.
745     * Require assignment of Administrator SID in the passdb 
746       backend.  Fall back to the default name of 'Administrator' if
747       the lookup fails rather than using the first name in the
748       default 'admin users' list.
749     * Enhance LDAP failure debug messages.
750     * BUG 2291: Call the 'add machine script' for server trust and 
751       domain trust accounts as well as workstation accounts.
752     
753     
754 o   Levente Farkas <lfarkas@lfarkas.org>
755     * BUG 2299: Better logrotate scripts for RedHat and Fedora 
756       packages.
759 o   Jay Fenlason <fenlason@redhat.com>
760     * Fix crash in 'net join' due to calling free on 
761       static buffers.
762     * Several patches from RedHat's Fedora Core RPMS.
765 o   Rob Foehl <rwf@loonybin.net>.
766     * Compiler warnings.
767     * Try modifying printer published attributes before adding it a
768       new entry in AD.
769     * Solaris packaging fixes.
770     * Don't force the cups printer-make-and-model tag as the comment
771       for autoloaded printers.
772     * Implement caching of names from printcap to support a true
773       'printcap cache time'.
776 o   Johann Hanne <jhml@gmx.net>
777     * BUG 2038: Only fail winbindd_getgroups() if all lookups fail.
780 o   Jeff Hardy <hardyjm@potsdam.edu>
781     * Example script for 'add print command' when using CUPS.
784 o   Deryck Hodge <deryck@samba.org>
785     * Add -P (--password-only-menu) to SWAT for displaying only the
786       password change page to non-root users.
789 o   David Hu <david.hu@hp.com>
790     * Copy structure from print_queue_update() message rather than 
791       referencing it.  Fixes seg fault on HP-UX.
792       
793       
794 o   Buck Huppmann <buckh@pobox.com>
795     * BUG 2186: Don't free uninitialized credentials.
796     * BUG 2189: Add the HOST/fqdn servicePrincipalName even when 
797       dnsDomainName != realm.
798    
800 o   Björn Jacke <bjoern@j3e.de>
801     * BUG 2040: Ensure the locale is reset to C to get ASCII-
802       compatible toupper/lower functions.
805 o   William Jojo <jojowil@hvcc.edu>
806     * Fix HPUX sendfile and add configure.in tests and code for
807       sendfile on AIX.
808     * AIX 5.3 compile fixes.
811 o   Volker Lendecke <vl@samba.org>
812     * Optimize anonymous session setups by workstations in a 
813       Samba domain.
814     * Reimplment the QueryUserAliases() server RPC reply.
815     * Re-add the getpwnam-cache for performance.
816     * Cache the result of a pdb_getsampwnam for later SID lookup 
817       queries.
818     * Unify the means of localtaing a user's global groups on a 
819       Samba DC.
820     * Fix bug when serving the 'Start Menu' in a roaming user profile..
821     * Map more pre-defined NT security descriptors to AFS acls.
822     * Add timeout to AD search requests.
823     * If a connection to a DC is requested (in winbindd), open
824       connections simultaneously to all DCs found.
825     * Memleak fixes.
826     * Fix logic error in handling of 'printcap name' parameter.
827     * Prevent winbindd from SPAM'ing the log files with 'user root 
828       does not exist'.
829     * Backport samr_DomInfo2 IDL specification from Samba 4.
830     * Implement smbstatus -n, don't lookup users and groups.
831     * Implement simple mapping that maps the space to another character 
832       defined by afsacl:space.
833     * Add support for 'net idmap delete <idmap-file> <SID>'.
834     * Add new parameter 'afs token lifetime' tells the AFS client 
835       when to throw away a token (patch from kllin@it.su.se).
836     * Initial work to allow support for multiple pipe opens on a 
837       single cli_state*.
838     * Ensure that we still retrieve the netbios name of any DC 
839       listed as a 'password server' to work around cases where the 
840       DC was defined using an IP address or fqdn.
841     * Fix memleak in winbindd connection code.
842     * Fix cli_samr_queryuseraliases.
843     * Allow wbinfo --user-sids to expand expand domain local groups.
844     * Allow 'rpcclient -c enumtrust' to enumerate more than 10 trusts.
845     * Fix parsing of other_sids in net_user_info3.
846     * Correct bad failure logic when user was not a member of any 
847       domain local groups.
848     
850 o   Jason Mader <jason@ncac.gwu.edu>
851     * BUG 2113, 2289: Remove dead code.
854 o   Jim McDonough <jmcd@us.ibm.com>
855     * BUG 1952: Try INITSHUTDOWN pipe first, used by newer 
856       clients.  If it fails, fall back to WINREG.
857     * BUG 1770: Remove READ_ATTRIBUTES from GENERIC_EXECUTE.
858     * BUG 2198: Set password last change time when running 'net rpc 
859       vampire'.
860     * Add "refuse machine password change" policy field.
863 o   Luke Mewburn <lukem@NetBSD.org>
864     * BUG 2150: shmget() - Use POSIX definitions instead of non-
865       standard SHM_.
866       
868 o   Stefan Metzmacher <metze@samba.org>    
869     * autogen.sh fixes.
872 o   Buchan Milne <bgmilne@mandrake.org>
873     * Mandrake packaging fixes.
876 o   Lars Mueller <lmuelle@suse.de>
877     * Fix build of libsmbclient on x86_64.
878     * BUG 2013: Fix testsuite build issues when libsmbclient.so 
879       is installed in a non-default location.
880     * BUG 2050: Calculate max_fd for select correctly.
881     * Fix inverted logic heck for HAVE_WRFILE_KEYTAB in autoconf 
882       script.
885 o   Jason Mader <jason@ncac.gwu.edu>
886     * BUG 2069: Remove unused variables.
887     * BUG 2075: Remove dead code paths.
888     * BUG 2083: Fix compiler warnings caused by bad type casts.
891 o   James Peach <jpeach@sgi.com>
892     * Fix rewinddir -> rewind_dir when using VFS macros.
893     
895 o   Gavrie Philipson <gavrie@disksites.com>
896     * BUG 1838: Remove stale printers imeeddiately when 
897       processing a SIGHUP and during smb.conf reload.
899       
900 o   Tim Potter <tpot@samba.org>
901     * BUG 2080: Fix duplicate call to pdb_get_acct_desc().
902     * BUG 2168: Fix cast in SMB_XMALLOC_ARRAY.
903     * Change the license for the winbindd external interface 
904       more liberal.
905     * HP-UX compile fixes.
906     * Compile fixes after new setsampwent() API.
909 o   Richard Renard <rrenard@idealx.com>
910     * Update Netscape DS 5.2 LDAP schema.
913 o   Simo Sorce <idra@samba.org>
914     * Backport pdbedit changes from trunk.
915     * Allows the add/change share command to create the shared 
916       directory directory on disk.
917     * Log a warning in testparm if a print command is defined for
918       a print service using 'printing = cups'.
919      
920 o   Jelmer Vernooij <jelmer@samba.org>
921     * Bug fixes for pdb_{xml,pqsql,xml}
922     * Fixes for pdb_mysql.
925 o   Andrew Tridgell <tridge@samba.org>
926     * Bring Samba3 into line with the Samba4 password change code.
927     
929 o   Shiro Yamada <shiro@miraclelinux.com>
930     * BUG 2190: Force SWAT to display parameters in unix charset and 
931       not UTF-8.
934       --------------------------------------------------
935                    ==============================
936                    Release Notes for Samba 3.0.10
937                              Dec 16, 2004
938                    ==============================
940 Common bugs fixed in 3.0.10 include:
942   o Fix for security issues described in CAN-2004-1154.
945 Changes since 3.0.9
946 -------------------
948 commits
949 -------
951 o   Jeremy Allison <jra@samba.org>
952     * Added checks surrounding all *alloc() calls to fix
953       CAN-2004-1154.
954     * Fix long standing memory size bug in bitmap_allocate().
955     * Remove bogus error check in deferred open file serving 
956       code.
959 o   Thomas Bork <tombork@web.de>
960     * Fix autoconf script on platforms using a version of GNU ld
961       that does not include a date stamp in the output of --version.
964 o   Luke Mewburn <lukem@NetBSD.org>
965     * Fix the swat install script to deal with the new image
966       destination directory used by the docs.
967      
970       --------------------------------------------------
972                    =============================
973                    Release Notes for Samba 3.0.9
974                              Nov 15, 2004
975                    =============================
977 Common bugs fixed in 3.0.9 include:
979   o Problem updating roaming user profiles.
980   o Crash in smbd when printing from a Windows 9x client.
981   o Unresolved symbols in libsmbclient which caused
982     applications such as KDE's konqueror to fail when
983     accessing smb:// URLs.
986 Changes since 3.0.8
987 -------------------
990 commits
991 -------
993 o   Jeremy Allison <jra@samba.org>
994     * Correctly detect errno for no acl/ea support.
995     * BUG 2036: Fix seg fault in 'net ads join'.
997     
998 o   Gerald (Jerry) Carter <jerry@samba.org>
999     * Solaris packaging fixes.
1000     * Fix seg fault in lanman printing code.
1001     * BUG 2017: fix testparm reporting for the passwd program 
1002       string.
1003     * Fix output of smbstatus to match the man page.
1004     * BUG 2027: fix conflict with declaration MD5_CTX in system 
1005       headers.
1006     * 2028: Avoid false error messages when copying a long 
1007       printer name to the device mode.
1010 o   Guenther Deschner <gd@samba.org> 
1011     * Allow deldriverex in rpcclient to delete drivers for a 
1012       specific architecture and a specific version.
1013     * Fix a couple of rpcclient spoolss commands (setprinter, 
1014       setprintername, getdriver) w.r.t to printer-naming scheme.
1015       Allow 'localhost' in the server string for certain server-side
1016       spoolss functions.
1017     * BUG 2015: Do not fail on setting file attributes with 
1018       acl support enabled.
1021 o   Michel Gravey <michel.gravey@optogone.com>
1022     * Fix build when using gcc 3.0.
1025 o   Volker Lendecke <vl@samba.org>
1026     * Fix tdb open logic when checking our local_pid after 
1027       the fork().
1030 o   Jim McDonough <jmcd@us.ibm.com>
1031     * BUG 1932: Fix crash in 'net getlocalsid' when run as 
1032       non-root user.
1035 o   Luke Mewburn <lukem@NetBSD.org>
1036     BUG 1661: Fix KRB5_SETPW-defines
1039 o   Buchan Milne <bgmilne@mandrake.org> 
1040     * BUG 2023: Mandrake packaging fixes for building 3.0.9.
1043 o   Lars Müller <lmuelle@suse.de>
1044     * BUG 2013: Fix unresolved symbols in libsmbclient.so.
1047 o   Martin Zielinski <mz@seh.de>
1048     * Add DeletePrinterDriverEx() functionality to rpcclient.
1049     
1051       --------------------------------------------------
1053                    =============================
1054                    Release Notes for Samba 3.0.8
1055                              Nov 7, 2004
1056                    =============================
1058 Common bugs fixed in 3.0.8 include:
1060   o Compile fixes for HP-UX
1061   o Fixes for the printer publishing code used when joined to 
1062     an AD domain.
1063   o Incompatibilities with file system quotas.
1064   o Several bugs in the spoolss printing code and print system 
1065     backends.
1066   o Inconsistencies in the username map functionality when 
1067     configured on domain member servers.
1068   o Various compile warnings and errors on various platforms.
1069   o Fixes for kerberos interoperability with Windows 200x 
1070     domains when using DES keys.
1071   o Fix for CAN-2004-0930 -- smbd remote DoS vulnerability.
1072   o Fix for CAN-2004-0882 -- possible buffer overrun in smbd.
1074     
1075 New features included in the 3.0.8 release are:
1077   o New migration functionality added the the net tool
1078     for files/directories, printers, and shares.
1079   o New experimental idmap backend for assigning uids/gids
1080     directly based on the user/group RID when acting as a
1081     member of single domain without any trusts.
1082   o Additional printer migration support for XP/2003 platforms.
1085 ===========================
1086 Change in Winbindd Behavior
1087 ===========================
1089 All usernames returned by winbindd are now converted to lower 
1090 case for better consistency.  This means any winbind installation
1091 relying on the winbind username will need to rename existing 
1092 directories and/or files based on the username (%u and %U) to lower 
1093 case (e.g. mv $name `echo $name | tr '[A-Z]' '[a-z]'`).  This may 
1094 include mail spool files, home directories, valid user lines in 
1095 smb.conf, etc....
1098 ======================
1099 Change in Username Map
1100 ======================
1102 Previous Samba releases would only support reading the fully qualified 
1103 username (e.g. DOMAIN\user) from the username map when performing a 
1104 kerberos login from a client.  However, when looking up a map 
1105 entry for a user authenticated by NTLM[SSP], only the login name would be
1106 used for matches.  This resulted in inconsistent behavior sometimes
1107 even on the same server.
1109 Samba 3.0.8 obeys the following rules when applying the username
1110 map functionality:
1112   * When performing local authentication, the username map is 
1113     applied to the login name before attempting to authenticate 
1114     the connection.
1115   * When relying upon a external domain controller for validating
1116     authentication requests, smbd will apply the username map 
1117     to the fully qualified username (i.e. DOMAIN\user) only
1118     after the user has been successfully authenticated.
1121 ######################################################################
1122 Changes
1123 #######
1125 Changes since 3.0.7
1126 -------------------
1128 smb.conf changes
1129 ----------------
1130     Parameter Name                      Action
1131     --------------                      ------
1132     force printername                   New
1133     sendfile                            disabled by default
1136 commits
1137 -------
1139 o   Jeremy Allison <jra@samba.org>
1140     * Ensure extended security bit is on only if we negotiated 
1141       extended security.
1142     * Simplify statcache to use an in-memory tdb. 
1143     * If you're selecting a hash algorithm for tdb, you need 
1144       to do it at open time.
1145     * Removed old dir caching code - not being used now we 
1146       have the statcache anyway.
1147     * Simplify the mangle hash code to use an in-memory tdb.
1148     * Merge iconv changes from Samba 4 branch.
1149     * Fix parsing of names ending in dot and a few other error 
1150       returns.
1151     * BUG 1667: Smbpasswd file could be left locked on some 
1152       error exits.
1153     * Fixes for smbclient tar functionality.
1154     * BUG 1743: Fix logic bug the deferred open code.
1155     * Don't try to set security descriptors on shares where 
1156       this has been turned off.
1157     * Return correct error codes on old SEARCH call.
1158     * Ensure we set errno = E2BIG when we overflow in the 
1159       fast-path character conversion code.
1160     * Fix the roundup problem (returning 1mb roundup) for 
1161       non-Windows clients.
1162     * Added 'stat' command to smbclient to exercise the 
1163       UNIX_FILE_BASIC info level.
1164     * Fix bug where we could incorrectly set sparse attribute.
1165     * Fix incorrect locks/unlocks in tdb_lockkeys()/tdb_unlockkeys()
1166       (reported by Taj Khattra <taj.khattra@gmail.com>).
1167     * Remove locked keys tdb code.
1168     * BUG 1886: Prevent delete on close being set for readonly files 
1169       (and return the correct error code).
1170     * Ensure we pass most of the new lock tests except for the cancel 
1171       lock which is yet to be added (merged from Samba 4 branch).
1172     * BUG 1947: Fix incorrect use of getpwnam() etc. interface.
1173     * BUG 1956: Ensure errno is saved and restored consistently on a 
1174       normal_close.
1175     * BUG 1651: Adapted patch from Nalin Dahyabhai for ensuring 
1176       that all of the appropriate service principal names are set 
1177       upon joining an AD domain.
1178     * Fix the correct use of resume name in the trans2 code.
1179     * BUG 1717: Adapted patch from Nalin Dahyabhai to detect the
1180       correct salt used when generated the DES key after joining an 
1181       AD domain.
1182     * Enhanced krb5 detection routines in the autoconf scripts.
1183   
1185 o   Andrew Bartlett <abartlet@samba.org>
1186     * Avoid changing the machine account password in the passdb 
1187       backend, when it has 'already been changed'.  This occurs 
1188       in situations where the secure channel between the workstation 
1189       and the DC breaks down, such as occurred in the MS04-11 
1190       security patch.
1191     * Fix utility name in error message in ntlm_auth.
1192     * Fix NTLMv2 for use with pam_winbind.
1193     * Remove conversion to and from UTF8 on the winbind pipe.
1194     * Allow 'require_membership_of' and 'require-membership-of'.
1195     * Fix the error code for 'you didn't specify a domain' in 
1196       ntlm_auth.
1197     * Use sys_getgroups() rather than scanning all groups 
1198       when generating SAMR replies.
1201 o   Igor Belyi <sambauser@katehok.ac93.org>
1202     * Ensure pdb user is deleted first before deleting UNIX 
1203       user (LDAP backend needs this ordering).
1206 o   Cornelio Bondad Jr <Corny.Bondad@hp.com>
1207     * Fix core dump in 'net rpc vampire'.
1208     
1210 o   Vince Brimhall <vbrimhall@novell.com>
1211     * Make ldapsam_compat robust against NULL attributes.
1214 o   Gerald Carter <jerry@samba.org>
1215     * Don't limit the number of groups returned by winbindd_getgroups()
1216       by NGROUPS_MAX.
1217     * BUG 1519: Match Windows 2000 behavior when opening a 
1218       printer using a servername in the form of an IP address or 
1219       DNS name.
1220     * BUG 1907: remove extra slashes from the printer name in 
1221       getprinterdriverdir_1().  
1222     * Fix standard_sub_snum() to use the current user's gid.
1223     * Fix background queue update bug (based on Volker's initial work 
1224       in 3.1.0).
1225     * Add 'force printername' service parameter for people that want 
1226       to enforce printername == sharename for spoolss printing.
1227     * Ensure consistent usage of the username map.  Use the fully 
1228       qualified DOMAIN\user format for 'security = domain|ads' and 
1229       apply after authentication has succeeded.
1230     * Cosmetic fix for getent output -- lowercase the username only 
1231       and not the complete domain\username string.
1232     * Packaging fixes for Solaris, Redhat, & Fedora.
1234     
1235 o   Sean Chandler <sean.chandler@verizon.net>
1236     * Fix memlieak in cliconnect.c.
1239 o   Darren Chew <darrenc@vicscouts.asn.au>
1240     * Solaris packaging fixes.
1241     
1243 o   Nalin Dahyabhai <nalin@redhat.com>
1244     * SMB signing fix for 56-bit DES session keys.
1247 o   Guenther Deschner <gd@samba.org> 
1248     * add IA64 to the architecture table of printer-drivers.
1249     * Add file/share/printer migration functionality to 
1250       the net command.
1251     * Show correct help for net groupmap commands.
1252     * Fix deadlock loop in winbind's required_membership_sid
1253       verification.
1254     * Bring the same level of "required_membership"-functionality 
1255       that ntlm_auth uses, to pam_winbindd as well.
1256     * Prevent "net lookup kdc" from seg-faulting when
1257       using our own implementation of krb5_lookup_kdc with 
1258       heimdal.
1259     * Adding getprinter level 7 to rpcclient.
1260     * Support migrating printers|shares|files from Server A 
1261       to Server B while running the net-command on client C.
1262     * Fixed krb5_krbhost_get_addrinfo()-parameters and make 
1263       failure of this call non-critical (Thanks to Love @ Heimdal
1264       for the explanation and patch).
1265     * Fix typos in net's usage-output.
1266     * Fix the paranoia-check to ensure the ldap-attribute and the
1267       smb.conf-parameter for samba's "algorithmic rid base" in ldapsam 
1268       are identical.
1269     * Fix several bugs in the _samr_query_useraliases() rpc reply.
1270     * Check correct string length when verifying password-policies 
1271       and using extended characters (Thanks to Uwe Morgenroth from CC 
1272       Compunet and Volker).
1273     * Make 'password history'-behavior in ldapsam more consistent. 
1274     * Adding "Windows x64" as architecture string and driverdir "x64" 
1275       for the 64bit AMD platform.
1276     * BUG 1343: Readd WKGUID-binding to match the correct default-
1277       locations of new User-, Group- and Machine-Accounts in Active 
1278       Directory (this got lost during the last trunk-merge).
1279     * Fix printer-migration w.r.t. to new naming-convention for
1280       policy-handles.
1281     * Allow to migrate win2k3/xp-drivers as well. 
1282     * Add client-side support of triggering ads printer publishing 
1283       over msrpc setprinter calls inside the net-tool. 
1284     * Add the idmap_rid module (written in conjunction with 
1285       Sumit Bose <sbose@suse.de>).
1286     * BUG 1661: Fix build with recent heimdal releases.
1287     * Prevent idmap_rid from making unnecessary calls to domain 
1288       controllers for trusted domains.
1291 o   Arthur van Dongen <avdongen@xs4all.nl>
1292     * Fix typos in pam_winbind log messages and SuSE 
1293       packaging files.
1296 o   Rob Foehl <rwf@loonybin.net>
1297     * Typo fixes for log messages in printer publishing code.
1298     * Fix memory leak in printer publishing code.
1299     * Ensure print_backend_init() only gets called once.
1300     * Have smbd check the published status of all printers 
1301       at startup.
1302     * Cleanup up the XXX_a_printer() API for consistency.
1303     * Refactored the printer publishing code and include better 
1304       error handling.
1307 o   Steve French <sfrench@us.ibm.com>
1308     * Fix IP address override in mount.cifs mount helper and clean 
1309       up warning messages from the sparse tool and expand syntax help.
1310     * Strip guest mount option off before sending to kernel mount 
1311       routine to avoid logging spurious message.
1314 o   Satoh Fumiyasu <fumiya@samba.gr.jp>
1315     * BUG 1732: Limit share names returned by RAP based on windows 
1316       character width, not unix character width.
1317     * BUG 1498: Ensure that acl entries are stored in the correct 
1318       order.
1321 o   Brett Funderburg <brett@deepfile.com>
1322     * Pass create options parameter to nt_create_andx() function
1323       from the python bindings.
1324     * BUG 1864: Add sd->type field to security descriptor Python 
1325       representation.
1326     * Return an error if a Netapp filer returns NT_STATUS_ACCESS_DENIED
1327       when trying to return the security descriptor for a file.
1328     * BUG 1884: Fixes for the Python bindings to use the value
1329       of the desired_access filed passed into the lsa_open_policy()
1330       routines.
1333 o   Michael Gravey <michel.gravey@optogone.com>
1334     * BUG 1776: Fix warnings when building modules caused by 
1335       certain versions of GNU ld not using the the default 
1336       --allow-shlib-undefined flag.
1339 o   Chris Hertel <crh@samba.org>
1340     * Fix logic bug in splay tree data structure when finding 
1341       a leaf node.
1342     * Fix bug where an invalid MAC address would be printed by 
1343       a node status lookup from nmblookup.
1345       
1346 o   Uli Iske <iske@elkb.de>
1347     * Update the DNS/eDirectory LDAP schema file.
1350 o   Björn Jacke <bjacke@sernet.de>
1351     * BUG 1766: Unify charset-handling in Content-Type:-headers to 
1352       UTF-8.  Reformat msgstr in msg-files to UTF-8.
1353     * Do not use display charset for swat output.
1354     * Convert the share names correctly from unix encoding to web 
1355       encoding and vice versa. 
1356     * Convert files from status page from unix charset to UTF-8.
1359 o   Guenter Kukkukk <guenter.kukkukk@kukkukk.com>
1360     * BUG 1590: Fix for talking to OS/2 clients (max_mux ignored).
1363 o   Tom Lackemann <cessnatomny@yahoo.com>
1364     * BUG 1954: Fix memory leak in posix acl code.
1367 o   Volker Lendecke <vl@samba.org>
1368     * Robustnss fix for winbindd when sending multiple requests 
1369       at a high rate for a slow operation.  
1370     * Solve the problem of user sids ending up with gid's 
1371       and vice versa.
1372     * Use sys_fork instead of fork for the dual daemon so that 
1373       we get the correct debug pid in the logfiles.
1374     * Based on patch from jmcd, implement special lists for the LDAP 
1375       user attributes to delete.
1376     * Fix creation of aliases via usrmgr. Winbind was too strict 
1377       checking the type of sids.
1378     * Lowercase all usernames returned by winbind.
1379     * BUG 1545, 1823: Only issue the ldap extended password change 
1380       operation if the ldap server supports it.  Also ignore object 
1381       class violation errors from the extended operation.
1382     * Optimization for 'idmap backend = ldap': When asking sid2id 
1383       for the wrong type, don't ask ldap when we have the opposite mapping 
1384       in the local tdb.
1385     * Fix ldapsam_compat homeDrive.
1386     * Add usersidlist and allowedusers subcommands to the net tool
1387       in order to support scanning a file server's share and list 
1388       all users who have permission to connect there.
1389     * Allow for multiple DC's to be named as #1c names in lmhosts.
1390     * Memory leak fixes.
1391     * Fix checks for the local pid of an smbd process after 
1392       reopening tdbs.
1395 o   Herb Lewis <herb@samba.org>
1396     * Added tdbtool to be built by default.
1399 o   Love <lha@stacken.kth.se>
1400     * BUG 1955: Inconsistent error return.
1403 o   Sorin Manolache <sorinm@gmail.com>
1404     * Memory leak fix.
1407 o   Jim McDonough <jmcd@us.ibm.com>
1408     * Allow 'net ads lookup' to rely on command line arguments 
1409       if contacting an ADS server fails; utilize cldap for lookups.
1410     * Fixup formatting errors in TDB_LOG calls; add printf attribute
1411       support to tdb log functions.
1414 o   Bill McGonigle <bill+samba@bfccomputing.com>
1415     * BUG 1926: Type in debug message.
1418 o   Sean McGrath
1419     * BUG 1822: Add -D_REENTRANT to CPPFLAGS and -lthread to LDFLAGS
1420       for libsmbclient.
1423 o   Luke Mewburn <lukem@NetBSD.org>
1424     * BUG 1782: Prevent testparm from displaying parameter synonyms.
1427 o   Stefan Metzmacher <metze@samba.org>    
1428     * Fix crash in smbcquotas and smbcacls caused by setup_logging().
1429     * Fix client quota support.
1430     * Fix opening of system quota file.
1433 o   Lars Mueller <lmuelle@suse.de>
1434     * Small fixes for autogen.sh to deal with version detection 
1435       of autoconf and autoheader; fixes for examples using 
1436       libtool to adhere to stricter syntax of newer version.
1439 o   Henrik Nordstrom <hno@squid-cache.org>
1440     * Allow winbindd to return the correct number of groups 
1441       when the groups array must be enlarged.
1444 o   Narayana Pattipati <narayana.pattipati@wipro.com>
1445     * Solaris autoconf detection fixes.
1448 o   Tim Potter <tpot@samba.org>
1449     * BUG 1360: (correct fix) Use -Wl when passing flags to 
1450       the linker.
1451     * HP-UX compile fixes (from JBravo on #samba-technical).
1452     * BUG 1731: More HP-UX compiles fixes.
1453     * BUG 1778: Include yp_prot.h before ypclnt.h as AIX 5.2 
1454       spits the dummy otherwise.
1455     * Fix bug in Python printerdata wrapper.
1456     * BUG 1762: nss_winbind fixes on AIX 5.x (patch from 
1457       <bugzilla-samba@thewrittenword.com>).
1458     * Fix parameter confusion in priming of name-to-sid cache
1459       (Found by Qiao Yang).
1460     * BUG 1888: Remove '..' from all pre-processor commands.
1461     * BUG 1903: Change some #if DEBUG_PASSWORD's to #ifdef 
1462       DEBUG_PASSWORD.
1465 o   Matt Selsky <selsky@columbia.edu>
1466     * BUG 350: use autoconf 2.57 feature for checking header file
1467       preprocessing (fixes configure warnings on Solaris).
1470 o   Richard Renard <rrenard@idealx.com>
1471     * Fix usermgr.exe and trust relationships.
1474 o   Paul Szabo <psz@maths.usyd.edu.au>
1475     * Fix to make find_workgroup use the same 
1476       truncation as create_workgroup.
1479 o   Richard Sharpe <rsharpe@samba.org>
1480     * Ensure cli_write() can support writes >= 65536 bytes.
1483 o   Simo Sorce <idra@samba.org>
1484     * Added check password script code in examples/auth/crackcheck/
1485     * Fix memory corruption bug caused in freeing static memory.
1488 o   Andrew Tridgell <tridge@samba.org>
1489     * Remove lp_use_mmap() from map_file() since the latter 
1490       is for read only and does not require coherence.
1491     * Ensure that the uuid pack/unpack routines do not go past 
1492       the end of the structure.
1493     * Converted Samba 3 tree to use the new utf-16 aware iconv 
1494       code. 
1495     * Changed iconv to recognise UCS-2LE and UTF-16LE as synonyms.
1496     * Ensure configure only uses '=' instead of the bashism '=='.
1497     * Reduces the number of tdb locking calls made on file IO.
1498     
1500 o   Jelmer Vernooij <jelmer@samba.org>
1501     * Convert internal data to UTF-8 before calling libxml2.
1502     * Complain if 'password chat' doesn't contain the %u variable
1503       (based on a patch by Ronan Waide).
1504     
1506 o   Josef Zlomek
1507     * BUG 1541:  Fix recursive ls in smbclient. 
1509     
1510 o   Igor Zhbanov <bsg@uniyar.ac.ru>
1511     * BUG 1797: Prevent winbind and nmbd from ignoring the "-l" 
1512       option.
1514       --------------------------------------------------
1516                   =============================
1517                   Release Notes for Samba 3.0.7
1518                            Sept 13, 2004
1519                   =============================
1521 This is the latest stable release of Samba. This is the version
1522 that production Samba servers should be running for all
1523 current bug-fixes.  There have been several important issues
1524 fixes since the 3.0.6 release.  See the "Changes" section for
1525 details on exact updates.
1527 Common bugs fixed in 3.0.7 include:
1529   o Fixes for two Denial of Service vulnerabilities
1530     (CVE ID# CAN-2004-0807 & CAN-2004-0808).
1531   o Winbind failure to return user entries under certain
1532     conditions.
1533   o Syntax errors in the OpenLDAP schema file (samba.schema).
1534   o Printing errors caused by not setting default values
1535     for the various printing commands.
1538 Changes since 3.0.6
1539 -------------------
1541 smb.conf changes
1542 ----------------
1544     Parameter Name                      Action
1545     --------------                      ------
1546     winbind enable local accounts       disabled by default
1548     
1549 commits
1550 -------
1551 o   Jeremy Allison <jra@samba.org>
1552     * Fix parsing of names ending in dot and a few other error 
1553       returns.
1554     * BUG 1674: Move the symlinks checks into reduce_name().
1555     * Fix memleak when checking the valid names smb.conf option.
1556     * Fix memleak on error return path in the file open code.
1557     * More paranoia checks in the hash2 mangling code.
1558     * Fix syntax error in configure.in.
1559     * Match Win2k3's behavior for pathname parsing error returns.
1560     * Make nmbd more robust against bad netbios packets 
1561       (CAN-2004-0808).
1562     * Add more checks for invalid ASN.1 packets for SPNEGO packets
1563       (CAN-2004-0807).
1565   
1566 o   Andrew Bartlett <abartlet@samba.org>  
1567     * Janitor work in loadparm.c -- remove unused parameters.
1570 o   Gerald Carter <jerry@samba.org>
1571     * BUG 1464: Ensure that printing commands are initialized even
1572       if the 'printing' parameter is not explicitly set.
1573     * Resolve name conflict on DEC OSF-5.1 (inspired by patch from 
1574       Adharsh Praveen <rprav@india.hp.com>)
1575     * Work around parsing error in the print change notify code.
1576     * remove duplicate declaration of getprintprocdir from 
1577       rpcclient.
1578     * Only use sAMAccountName and not userPrincipalName when looking
1579       up a username in AD since the breaks winbindd (lookup_name() 
1580       only works with the sAMAccountName).
1581     * Fix bug with winbindd_getpwnam() caused by Microsoft DC's not 
1582       filling in the username in the user_info3.
1583     * Fix logic bug in the check for creating a user's home directory 
1584       in register_vuid(); caused home directory to be mismatched to 
1585       the first share in smb.conf under certain conditions.
1586     * BUG 1656: rename auto.a to auto.smb.
1587     * Ensure that we assign our pid to print jobs (and not our 
1588       parent's pid); ensures that spooling jobs from dead smbds 
1589       are removed from the tdb.
1590     * Disable 'winbind enable local accounts' by default.
1591     * Adding some initial checks for DragonFly (same as 
1592       FreeBSD 4.1).
1593     
1595 o   Guenther Deschner <gd@samba.org> 
1596     * Use SMB_ASSERT() to track down NULL printer names in 
1597       the tdb open code.
1598     * Revert fix for BUG 1474 to avoid unnecessary packaging 
1599       dependencies.
1602 o   Olaf Flebbe <o.flebbe@science-computing.de>.  
1603     * BUG 1627: fix for NIS compiles on HPUX 11.00, AIX 4.3 
1604       and 5.1.
1605     * BUG 1626: More compile fixes.
1608 o   Rob Foehl <rwf@loonybin.net>
1609     * Don't clear the PRINT_ATTRIBUTE_PUBLISHED was getting reset 
1610       by attempts to sanitize the defined attributes.
1613 o   SATOH Fumiyasu <fumiya@miraclelinux.com>
1614     * BUG 1546: Preserve errno in MB strupper_m/strlower_m.
1617 o   Helmut Heinreichsberger <helmut.heinreichsberger@chello.at>.
1618     * BUG 1657: Remove used initialized variable, 
1619     * BUG 1658: Add a little bit of const.
1622 o   Volker Lendecke <vl@samba.org>
1623     * If there's garbage in the pidfile, we should not panic 
1624       but assume that no one else is around. We can't find the 
1625       other guy anyway.
1628 o   Jim McDonough <jmcd@us.ibm.com>
1629     * Fixup format string in the tdb error messages.
1632 o   Jonas Olsson <lexicon@lysator.liu.se>
1633     * BUG 1416: Don't reuncture a users list to NGROUPS_MAX when 
1634       reporting the list in usrmgr.exe.
1637 o   Tim Potter <tpot@samba.org>
1638     * Fix out-of-tree builds (problem with the script to generate 
1639       the svn version number).
1640     * BUG 1360:  Need to use -Wl when passing flags to the linker.
1641     * BUG 1741: Define a struct nss_groupsbymem for HPUX 11 which 
1642       doesn't have one of its own.
1644 o   Simo Sorce <idra@samba.org>
1645     * Fixup compile issues on AIX caused by broken strlen() and 
1646       strdup().
1647     * Update debian packaging files.
1650 o   Dimitri van der Spek <dwspek@aboveit.nl>
1651     * Use the correct counter when copying group rids from the 
1652       user_info3 struct in pam_winbind.
1653       
1655 o   Qiao Yang <qyang@stbernard.com>
1656     * BUG 1622: Only cache the user
1659       --------------------------------------------------
1660       
1661                   =============================
1662                   Release Notes for Samba 3.0.6
1663                            Aug 19, 2004
1664                   =============================
1666 Common bugs fixed in 3.0.6 include:
1668   o Schannel failure in winbindd.
1669   o Numerous memory leaks.
1670   o Incompatibilities between the 'write list' and 'force user'
1671     smb.conf options.
1672   o Premature optimization of the open_directory() internal 
1673     function that broke tools such as the ArcServe backup 
1674     agent, Macromedia HomeSite, and Robocopy.
1675   o Corrupt workgroup names in nmbd's browse.dat.
1676   o Sharing violation errors commonly seen when opening
1677     when serving Microsoft Office documents from a Samba 
1678     file share.
1679   o Browsing problems caused by an apostrophe (') in the 
1680     computer's description field.
1681   o Problems creating special file types from UNIX CIFS 
1682     clients and enabling 'unix extensions'.
1683   o Fix stalls in smbd caused by inaccessible LDAP servers.
1684   o Remove various memory leaks.
1685   o Fix issues in the password lockout feature.
1687 New features introduced in this release include:
1689   O Support symlinks created by CIFS clients which 
1690     can be followed on the server.
1691   o Using a cups server other than localhost.
1692   o Maintaining the service principal entry in the system 
1693     keytab for integration with other kerberized services.
1694     Please refer to the 'use kerberos keytab' entry in 
1695     smb.conf(5).  When using the heimdal kerberos libraries,
1696     you must also specify the following in /etc/krb5.conf:
1697     [libdefaults]
1698        default_keytab_name = FILE:/etc/krb5.keytab
1699   o Support for maintaining individual printer names
1700     stored separately from the printer's sharename.
1701   o Support for maintaining user password history.
1702   o Support for honoring the logon times for user in a 
1703     Samba domain.
1706 ============================================
1707 unix extensions = yes (default) and symlinks
1708 ============================================
1710 Beginning with Samba 3.0.6pre1 (formerly known as 3.0.5pre1), 
1711 clients supporting the UNIX extensions to the CIFS protocol 
1712 can create symlinks to absolute paths which will be **followed** 
1713 by the server.  This functionality has been requested in order 
1714 to correctly support certain applications when the user's home 
1715 directory is mounted using some type of CIFS client (e.g. the 
1716 cifsvfs in the Linux 2.6 kernel).
1718 If this behavior is not acceptable for your production environment
1719 you can set 'wide links = no' in the specific share declaration in 
1720 the server's smb.conf.  Be aware that disabling wide link support 
1721 out of a share in Samba may impact the server's performance due 
1722 to the fact that smbd will now have to check each path additional 
1723 times before traversing it.
1724   
1726 ========================
1727 Password History Support 
1728 ========================
1730 The new password history feature allows smbd to check the new 
1731 password in password change requests against a list of the user's
1732 previous passwords.  The number of previous passwords to save can 
1733 be set using pdbedit (4 in this example):
1735    root# pdbedit -P "password history" -C 4
1737 When using the ldapsam passdb backend, it is vital to secure the 
1738 following attributes from access by non-administrative users:
1740    * sambaNTPassword
1741    * sambaLMPassword
1742    * sambaPasswordHistory
1744 You should refer to your directory server's documentation on how 
1745 to implement this restriction.
1748 Changes since 3.0.5
1749 -------------------
1751 smb.conf changes
1752 ----------------
1754     Parameter Name              Action
1755     --------------              ------
1756     cups server                 New
1757     defer sharing violations    New
1758     force unknown acl user      New
1759     ldap timeout                New
1760     printcap cache time         New
1761     use kerberos keytab         New
1762     
1763 commits
1764 -------
1765 o   Jeremy Allison <jra@samba.org> 
1766     * Correct path parsing bug that broke DeletePrinterDriverEx().
1767     * Fix bugs in check_path_syntax() caught by asserts.
1768     * Internal change - rearrange internal global case setting 
1769       variables to a per connection basis.
1770     * BUG 1345: Fix premature optimization in unix_convert(). 
1771     * Allow clients to truncate a locked file.
1772     * BUG 1319: Always check to see if a user as write access
1773       to a share, even when 'force user' is set.
1774     * Fix specific case of open that doesn't cause oplock break, 
1775       or share mode check.
1776     * Correct sid type is WKN_GROUP, not alias. Added some 
1777       more known types (inspired by patch from Jianliang Lu).
1778     * Allow creation of absolute symlink paths via CIFS clients.
1779     * Fix charset bug in when invoking send_mailslot().
1780     * When using widelinks = no, use realpath to canonicalize 
1781       the connection path on connection create for the user. 
1782     * Enhance stat open code.
1783     * Fix unix extensions mknod code path.
1784     * Allow unix domain socket creation via unix extensions.
1785     * Auto disable the 'store dos attribute' parameter if the 
1786       underlying filesystem doesn't support EAs.
1787     * Implement deferred open code to fix a bug with Excel files 
1788       on Samba shares.
1789     * BUG 1427: Catch bad path errors at the right point.  Ensure 
1790       all our pathname parsing is consistent.
1791     * Fix SMB signing error introduced by the new deferred open 
1792       code.
1793     * Change default setting for case sensitivity to "auto". (see 
1794       commit message -- r1154 -- for details).
1795     * Add new remote client arch -- CIFSFS.
1796     * Allow smbd to maintain the service principal entry in the 
1797       system keytab file (based on patch Dan Perry <dperry@pppl.gov>, 
1798       Guenther Deschner, et. al.).
1799     * Fix longstanding memleak bug with logfile name.
1800     * Fix incorrect type in printer publishing (struct uuid, 
1801       not UUID_FLAT).
1802     * Heimdal compile fixes after introduction of the new ketyab 
1803       feature.
1804     * Ensure we check attributes correctly on rename request.
1805     * Ensure we defer a sharing violation on rename correctly.
1806     * BUG 607: Ensure we remove DNS and DNSFAIL records immediately 
1807       on timeout.
1808     * Fix bogus error message when using "mangling method = hash" 
1809       rather than hash2.
1810     * Turn on sendfile by default for non-Win9x clients.
1811     * Handle non-io opens that cause oplock breaks correctly.
1812     * Ensure ldap replication sleep time is not more than 5 seconds.
1813     * Add support for storing a user's password history.
1814       LDAP portion of the code was based on a patch from 
1815       Jianliang Lu <j.lu@tiesse.com>.
1816     * Correct memory leaks found in the password change code.
1817     * Fix support for the mknod command with the Linux CIFS client.
1818     * Remove support for passing the new password to smbpasswd 
1819       on the command line without using the -s option.
1820     * Ensure home directory service number is correctly reused
1821       (inspired by patches from Michael Collin Nielsen 
1822       <michael@hum.aau.dk>).
1823     * Fix to stop printing accounts from resetting the bas 
1824       password and account lockout flags.
1825     * If a account was locked out by an admin (and has a bad 
1826       password count of zero) leave it locked out until an admin 
1827       unlocks it (but log a message).
1828     * Ensure we return the same ACL revision on the wire that 
1829       W2K3 does.
1830     * BUG 1578: Hardcode replacement for invalid characters as '_'
1831       (based on fix from Alexander E. Patrakov <patrakov@ums.usu.ru>).
1832     * Fix hashed password history for LDAP backends.
1833     * Enforce logon hours restrictions if confiogured (based on code 
1834       from Richard Renard <rrenard@idealx.com>).
1835     * BUG 1606: Force smbd to disable sendfile with DOS clients 
1836       and ensure that the chained header is filled in for ...&X 
1837       commands.
1838     * BUG 1602: Fix access to shares when all symlink support 
1839       has been disabled.
1843 o   Tom Alsberg <alsbergt@cs.huji.ac.il>
1844     * Allow pdbedit to export a single user from a passdb backend.
1845     
1847 o   Andrew Bartlett <abartlet@samba.org>  
1848     * Fix parsing bug in GetDomPwInfo().
1849     * Fix segfault in 'ntlm_auth --diagnostics'.
1850     * Re-enable code to allow sid_to_gid() to perform a group 
1851       mapping lookup before checking with winbindd.
1852     * Fix memory leak in the trans2 signing code.
1853     * Allow more flexible GSS-SPENGO client and server operation 
1854       in ntlm_auth.
1855     * Improve smbd's internal random number generation.
1856     * Fix a few outstanding long password changes in smbd.
1857     * Fix LANMAN2 session setup code.
1860 o   Eric Boehm <boehm@nortelnetworks.com>
1861     BUG 703: Final touches on netgroup case lookups.
1862     
1863     
1864 o   Jerome Borsboom <j.borsboom@erasmusmc.nl>
1865     * Ensure error status codes don't get overwritten in 
1866       lsa_lookup_sids() server code.
1867     * Correct bug that caused smbd to overwrite certain error 
1868       codes when returning up the call stack.
1869     * Ensure the correct sid type returned for builtin sids.
1872 o   Gerald Carter <jerry@samba.org>
1873     * Fix a few bugs in the Fedora Packaging files.
1874     * Fix for setting the called name to by our IP if the 
1875       called name was *SMBSERVER and *SMBSERV.   Fixes issue 
1876       with connecting to printers via \\ip.ad.dr.ess\printer 
1877       UNC path.
1878     * BUG 1315: fix for schannel client connections to servers
1879       when we haven't specifically negotiated AUTH_PIPE_SEAL.
1880     * Allow PrinterDriverData valuenames with embedded backslashes
1881       (Fixes bug with one of the Konica Fiery drivers).
1882     * Fixed string length miscalculation in netbios names that 
1883       resulted in corrupt workgroup names in browse.dat.
1884     * When running smbd as a daemon, launch child smbd to update 
1885       the lpq cache listing in the background.
1886     * Allow printers "Printers..." folder to be renamed to a string 
1887       other than the share name.
1888     * Allow winbindd to use domain trust account passwords when 
1889       running on a Samba DC to establish an schannel to remote 
1890       domains.
1891     * Fix bad merge and ensure that we always use tdb_open_log() 
1892       instead of tdb_open_ex() (the former call enforce the 'use 
1893       mmap' parameter).
1894     * BUG 1221: revert old change that used single and double 
1895       quotes as delimeters in next_token(), and change 
1896       print_parameter() to print out parm values surrounded by 
1897       double quotes (instead of single quotes).
1898     * Prevent home directories added during the SMBsesssetup&X from 
1899       being removed as unused services.
1900     * Invalidate the print object cache for open printer handles when
1901       smbd receives a message that an attribute on a given printer 
1902       has been changed.
1903     * Cause the configure script to exit if --enable-cups[=yes] is 
1904       defined and the system does not have the cups devel files 
1905       installed.
1906     * BUG 1297: Prevent map_username() from being called twice 
1907       during logon.
1908     * Ensure that we use the userPrincipalName AD attribute 
1909       value for LDAP SASL binds.
1910     * Ensure we remove the tdb entry when deleting a job that 
1911       is being spooled.
1912     * BUG 1520: Work around bug in Windows XP SP2 RC2 where the 
1913       client sends a FindNextPrintChangeNotify() request without 
1914       previously sending a FindFirstPrintChangeNotify().  Return 
1915       the same error code as Windows 2000 SP4.
1916     * BUG 1516: Manually declare ldap_open_with_timeout() to 
1917       workaround compiler errors on IRIX (or other systems without 
1918       LDAP headers).
1919     * Merge security fixes for CAN-2004-0600, CAN-2004-0686 from 
1920       3.0.5.
1921     * Corrected syntax error in the OID for sambaUnixIdPool, 
1922       sambaSidEntry, & sambaIdmapEntry object classes.
1923     * Tighten the cache consistency with the ntprinters.tdb entry 
1924       an the in memory cache associated with open printer handles.
1925     * Make sure that register_messages_flags() doesn't overwrite 
1926       the originally registered flags.
1929 o   Fabien Chevalier <fabien.chevalier@supelec.fr>
1930     * Debian BUG 252591: Ensure that the return value from the 
1931       number of available interfaces is initialized in case no 
1932       interfaces are actually available.
1935 o   Guenther Deschner <gd@sernet.de> 
1936     * Implement 'rpcclient setprintername'.
1937     * Add local groups to the user's NT_TOKEN since they are 
1938       actually supported now.
1939     * Heimdal compile fixes after introduction of the new keytab 
1940       feature.
1941     * Correctly honor the info level parameter in 'rpcclient 
1942       enumprinters'.
1943     * Reintroduce 'force unknown acl user' parameter.  When getting a 
1944       security descriptor for a file, if the owner sid is not known, 
1945       the owner uid is set to the current uid. Same for group sid.
1946     * Ensure that REG_SZ values in the SetPrinterData actually 
1947       get written in UNICODE strings rather than ASCII.
1948     * Ensure that the last kerberos error return is not invalid.
1949     * Display share ACL entries from rpcclient.
1950     * Correct infinite loop in pam_winbind's verification of 
1951       group membership in the 'other sids' field in the user_info3 
1952       struct.
1955 o   Fabian Franz <FabianFranz@gmx.de>
1956     * Support specifying a port in the device URL passed to smbspool.
1957     
1958     
1959 o   Steve French <sfrench@us.ibm.com>
1960     * Handle -S and user mount parms in mount.cifs.
1961     * Fix user unmount of shares mount with suid mount.cifs.
1962     * prevent infinite recusion in reopen_logs() when expanding 
1963       the smb.conf variable %I.
1966 o   Bjoern Jacke <bj@sernet.de>
1967     * Install libsmbclient into $(LIBDIR), not into hard coded 
1968       ${prefix}/lib. This helps amd64 systems with /lib and /lib64 
1969       and an explicit configure --libdir setting.
1972 o   <kawasa_r@itg.hitachi.co.jp>
1973     * Correct more memory leaks and initialization bugs.
1974     * Fix bug that prevented core dumps from being generated 
1975       even if you tried.
1976     * Connect to the winbind pipe in non-blocking mode to 
1977       prevent processes from hanging.
1978     * Memory leak fixes.
1981 o   Stephan Kulow <coolo@suse.de>
1982     * Fix crash bug in libsmbclient.
1985 o   Volker Lendecke <vl@samba.org>
1986     * Added vfs_full_audit module.
1987     * Add vfs_afsacl.c which can display & set AFS acls via 
1988       the NT security editor.
1989     * Fix crash bug caused by trying to Base64 encode a NULL string.
1990     * Fix DOS error code bug in reply_chkpath().
1991     * Correct misunderstanding of the max_size field in 
1992       cli_samr_enum_als_groups;  it is more like an account_control 
1993       field with individual bits what to retrieve.
1994     * Implement 'net rpc group rename' -- rename domain groups.
1995     * Implement the 'cups server' option. This makes it possible 
1996       to have virtual smbd's connect to different cups daemons.
1997     * Paranoia fixes when adding local aliases to a user's NT_TOKEN.
1998     * Fix sid_to_gid() calls in winbindd to prevent loops.
1999     * Ensure that local_sid_to_gid() sets the type of the group on 
2000       return.
2001     * Make sure that the clients are given back the IP address to 
2002       which they connected in the case of a multi-homed host. Only 
2003       affects strings the spoolss printing replies.
2004     * Fix the bad password lockout. This has not worked as pdb_ldap.c 
2005       did not ask for the modifyTimestamp attribute, so it could 
2006       not find it.   Try not to regress by not putting that attrib 
2007       in the main list but append it manually for the relevant searches.
2008     * Fix two memleaks in login_cache.c.
2009     * fixes memory bloat when unmarshalling strings.
2010     * Fix compile errors using gcc 3.2 on SuSE 8.2.
2011     * Fix the build for systems without kerberos headers.
2012     * Allow winbindd to handle authentication requests only when 
2013       started without either an 'idmap uid' or 'idmap gid' range.
2014     * Fix the build for systems without ldap headers.
2015     * Fix interaction between share security descriptor and the 
2016       'read only' smb.conf option.
2017     * Fix bug that caused _samr_lookupsids() with more than 32 (
2018       MAX_REF_DOMAINS) SIDs to fail.
2019     * Allow the 'idmap backend' parameter to accept a list of 
2020       LDAP servers for failover purposes.
2021     * Revert code in smbd to remove a tdb when it has become 
2022       corrupted.
2023     * Add paranoid checks when mapping SIDs to a uid/gid to 
2024       ensure that the type is correct.
2025     * Initial work on getting client support for sending mailslot 
2026       datagrams.
2027     * Add 'ldap timeout' parameter.
2028     * Dont always uppercase 'afs username map'.
2029     * Expand aliases for getusersids as well.
2030     * Improved NT->AFS ACL mapping VFS module.
2033 o   Herb Lewis <herb@samba.org>
2034     * Add the acls debug class.
2035     * Fix logic bug in netbios name truncate routine.
2036     * Fix smbd crash caused by smbtorture IOCTL test.
2037     * Fix errno tromping before calling iconv to reset the 
2038       conversion state.
2039     * need to leave empty dacl so we can remove last ACE.
2042 o   Jianliang Lu <Jianliang.Lu@getronics.com>
2043     * Fix to stop smbd hanging on missing group member in 
2044       get_memberuids().
2045     * Make sure Samba returns the correct group types.
2046      * Reset the bad password count password counts upon a successful login.
2047      
2048      
2049 o   Jason Mader <jason@ncac.gwu.edu>
2050     * BUG 1385: Don't use non-consts in a structure initialization.
2051     
2053 o   Jim McDonough <jmcd@us.ibm.com>
2054     * BUG 1279: SMBjobid fix for Samba print servers running on 
2055       Big-Endian platforms.
2058 o   Joe Meadows <jameadows@webopolis.com>
2059     * Add optional timeout parameter to ldap open calls.
2060     * Allow get_dc_list() to check the negative cache.
2063 o   Stefan Metzmacher <metze@samba.org>    
2064     * fix a configure logic bug for linux/XFS quotas when 
2065       using --with-sys-quotas.
2066     * Use quota debug class in quota code.
2067     * print out the SVN revision by configure,
2068     
2070 o   Buchan Milne <bgmilne@mandrake.org>
2071     * Mandrake packaging fixes.
2072     
2073     
2074 o   Lars Mueller <lmuelle@suse.de>
2075     * BUG 1279: Added 'printcap cache time' parameter.
2076     * Fix afs related build issues on SuSE.
2077     * Fix compiler warnings in the kerberos client code.
2080 o   James Peach <jpeach@sgi.com>
2081     * More iconv detection fixes for IRIX.
2082     * Compile fixed for systems that do not have C99/UNIX98 compliant 
2083       vsnprintf by default.
2084     * Prevent smbd from attempting to use sendfile at all if it is 
2085       not supported by the server's OS.
2086     * Allow SWAT to search for index.html when serving html files 
2087       in a directory.
2090 o   Dan Peterson
2091     * Implement NFS quota support on FreeBSD.
2094 o   Tim Potter <tpot@samba.org>
2095     * BUG 1360: Use -Bsymbolic when creating shared libraries to 
2096       avoid conflicts with identical symbols in the global namespace 
2097       when loading libnss_wins.so.
2100 o   Richard Renard <rrenard@idealx.com>
2101     * Save the current password as it is being changed into the 
2102       password history list.
2105 o   Richard Sharpe <rsharpe@samba.org>
2106     * Fix error return codes on some lock messages.
2107     * BUG 1178: Make the libsmbclient routines callable 
2108       by C++ programs.
2109     * BUG 1333: Make sure we return an error code when 
2110       things go wrong.
2111     * BUG 1301: Return NT_STATUS_SHARING_VIOLATION when 
2112       share mode locking requests fail.
2115 o   Simo Sorce <idra@samba.org>
2116     * Update Debian stable & unstable packaging.
2117     * Tidy up parametric options in testparm output.
2120 o   Richard Sharpe <rsharpe@samba.org>
2121     * Add sigchild handling to winbindd to restart the child 
2122       daemon if necessary.
2125 o   Tom Shaw <tomisfaraway@gmail.com>
2126     * Use winbindd_fill_pwent() consistently.
2129 o   Nick Thompson <nickthompson@agere.com>
2130     * Protect smbd against broken filesystems which return zero 
2131       blocksize.
2134 o   Andrew Tridgell <tridge@samba.org>
2135     * Fixed bug in handling of timeout in socket connections.
2136      
2138 o   Nick Wellnhofer <wellnhofer@aevum.de>    
2139     * Prevent lp_interfaces() list from being corrupted.  Fixes
2140       bug where nmbd would lose the list of network interfaces 
2141       on the system and consequently shutdown.
2143       
2144 o   James Wilkinson <jwilk@alumni.cse.ucsc.edu>
2145     * Fix ntlm_auth memory leaks.
2148 o   Jelmer Vernooij <jelmer@samba.org>
2149     * Additional NT status to unix error mappings.
2150     * BUG 478: Rename vsnprintf to smb_vsnprintf so we don't 
2151       get duplicate symbol errors.
2152     * Return an error when the last command read from stdin 
2153       fails in smbclient.
2154     * Prepare for better error checking in tar.
2155     * BUG 1474: Fix build of --with-expsam stuff on Solaris.
2156       
2158       --------------------------------------------------
2159       
2160                  =============================
2161                  Release Notes for Samba 3.0.5
2162                          July 20, 2004
2163                  =============================
2165 Please note that Samba 3.0.5 is identical to Samba 3.0.4 with 
2166 the exception of correcting the two security issues outlined 
2167 below.
2169 ######################## SECURITY RELEASE ########################
2171 Summary:       Multiple Potential Buffer Overruns in Samba 3.0.x
2172 CVE ID:        CAN-2004-0600, CAN-2004-0686
2173                (http://cve.mitre.org/)
2176 This is the latest stable release of Samba. This is the version
2177 that production Samba servers should be running for all current
2178 bug-fixes.
2180 It has been confirmed that versions of Samba 3 prior to v3.0.4
2181 are vulnerable to two potential buffer overruns.  The individual
2182 details are given below.
2184 =============
2185 CAN-2004-0600
2186 =============
2188 Affected Versions:      Samba 3.0.2 and later
2190 The internal routine used by the Samba Web Administration
2191 Tool (SWAT v3.0.2 and later) to decode the base64 data
2192 during HTTP basic authentication is subject to a buffer
2193 overrun caused by an invalid base64 character.  It is
2194 recommended that all Samba v3.0.2 or later installations
2195 running SWAT either (a) upgrade to v3.0.5, or (b) disable
2196 the swat administration service as a temporary workaround.
2198 This same code is used internally to decode the
2199 sambaMungedDial attribute value when using the ldapsam
2200 passdb backend. While we do not believe that the base64
2201 decoding routines used by the ldapsam passdb backend can
2202 be exploited, sites using an LDAP directory service with
2203 Samba are strongly encouraged to verify that the DIT only
2204 allows write access to sambaSamAccount attributes by a
2205 sufficiently authorized user.
2207 The Samba Team would like to heartily thank Evgeny Demidov
2208 for analyzing and reporting this bug.
2210 -------------
2211 CAN-2004-0686
2212 -------------
2214 Affected Versions:      Samba 3.0.0 and later
2216 A buffer overrun has been located in the code used to support
2217 the 'mangling method = hash' smb.conf option.  Please be aware
2218 that the default setting for this parameter is 'mangling method
2219 = hash2' and therefore not vulnerable.
2221 Affected Samba 3 installations can avoid this possible security
2222 bug by using the default hash2 mangling method.  Server
2223 installations requiring the hash mangling method are encouraged
2224 to upgrade to Samba 3.0.5.
2227 ##################################################################
2229     --------------------------------------------------
2230                  
2231                  =============================
2232                  Release Notes for Samba 3.0.4
2233                           May 8, 2004
2234                  =============================
2236 Common bugs fixed in Samba 3.0.4 include:
2238   o Password changing after applying the patch described in 
2239     the Microsoft KB828741 article to Windows clients.
2240   o Crashes in smbd.
2241   o Managing print jobs via Windows on Big-Endian servers.
2242   o Several memory leaks in winbindd and smbd.
2243   o Compile issues on AIX and *BSD.
2245 Changes since 3.0.3
2246 --------------------
2248 commits
2249 -------
2251 o   Jeremy Allison <jra@samba.org>
2252     * Fix path processing for DeletePrinterDriverEx().
2253     * BUG 1303: Fix for Microsoft hotfix MS04-011 password change 
2254       breakage.
2257 o   Andrew Bartlett <abartlet@samba.org>
2258     * Fix alignment bug in GetDomPwInfo().
2261 o   Alexander Bokovoy <ab@samba.org>
2262     * Fix utime[s]() issues in smbwrapper on systems 
2263       that can boot both the 2.4 and 2.6 Linux kernels.
2266 o   Gerald Carter <jerry@samba.org>
2267     * Fedora packaging fixes.
2268     * BUG 1302: Fix seg fault by not trying to optimize a list of 
2269       invalid gids using the wrong array size.
2270     * BUG 1309: fix seg fault caused by trying to strdup(NULL)
2271       seen when 'security = share'.
2272     * Fix problems when using IBM's compiler on AIX.
2273     * Link Developer's Guide, Example Guide, and multi-page HOWTO
2274       into SWAT's welcome page.
2275     * BUG 1293: fix double free in printer publishing code.
2277     
2278 o   Wim Delvaux <wim.delvaux@adaptiveplanet.com>
2279     * Fix for handling timeouts in socket connections.
2282 o   Michel Gravey <michel.gravey@optogone.com>
2283     * BUG 483: patch from  to fix password hash creation in SWAT.
2284     
2286 o   Volker Lendecke <vl@samba.org>
2287     * Close the open NT pipes before the tdis.
2288     * Fix AFS related build issues.
2289     * Handle error conditions when base64 encoding a blob of 0 bytes.
2291     
2292 o   Herb Lewis <herb@samba.org>
2293     * Added 'acls' debug class.
2295 o   kawasa_r@itg.hitachi.co.jp
2296     * Multiple variable initialization and memory leak fixes.
2297     
2298     
2299 o   Stephan Kulow <coolo@suse.de>
2300     * Fix string length bug in libsmbclient that caused KDE's 
2301       Konqueror to crash.
2302     * BUG 429: More libsmbclient fixes.
2305 o   Jim McDonough <jmcd@us.ibm.com>
2306     * BUG 1007, 1279: Store the print job using a little-endian key.
2309 o   Eric Mertens
2310     o Compile fix for OpenBSD (ENOTSUP not supported).
2312     
2313 o   Stefan Metzmacher <metze@samba.org>
2314     * Correct bug in disks quota views from explorer.
2316     
2317 o   Tim Potter <tpot@samba.org>
2318     BUG 1305: Correct debug output.
2321 o   Richard Sharpe <rsharpe@samba.org>
2322     * Fix incorrect error code mapping.
2325 o   Jelmer Vernooij <jelmer@samba.org>
2326     * Add additional NT_STATUS errorm mappings.
2327     
2329     --------------------------------------------------
2331                  =============================
2332                  Release Notes for Samba 3.0.3
2333                         April 29, 2004
2334                  =============================
2337 Common bugs fixed in Samba 3.0.3 include:
2339   o Crash bugs and change notify issues in Samba's printing code.
2340   o Honoring secondary group membership on domain member servers.
2341   o TDB scalability issue surrounding the TDB_CLEAR_IF_FIRST flag.
2342   o Substitution errors for %[UuGg] in smb.conf.
2343   o winbindd crashes when using ADS security mode.
2344   o SMB signing errors.
2345   o Delays in winbindd startup caused by unnecessary 
2346     connections to trusted domain controllers.
2347   o Various small memory leaks.
2348   o Winbindd failing due to expired Kerberos tickets.
2350 New features introduced in Samba 3.0.3 include:
2352   o Improved support for i18n character sets.
2353   o Support for account lockout policy based on
2354     bad password attempts.
2355   o Improved support for long password changes (>14
2356     characters) and strong password enforcement.
2357   o Support for Windows aliases (i.e. nested groups).
2358   o Experimental support for storing DOS attribute on files
2359     and folders in Extended Attributes.
2360   o Support for local nested groups via winbindd.
2361   o Specifying options to be passed directly to the CUPS libraries.
2363 Please be aware that the Samba source code repository was 
2364 migrated from CVS to Subversion on April 4, 2004.  Details on 
2365 accessing the Samba source tree via anonymous svn can be found 
2366 at http://svn.samba.org/samba/subversion.html.
2369 Changes since 3.0.2a
2370 --------------------
2371 smb.conf changes
2372 ----------------
2374     Parameter Name              Action
2375     --------------              ------
2376     cups options                New
2377     ea support                  New
2378     only user                   Deprecated
2379     store dos attributes        New
2380     unicode                     Removed
2381     winbind nested groups       New
2383     
2384 commits
2385 -------
2387 o   Jeremy Allison <jra@samba.org>
2388     * Ensure that Kerberos mutex is always properly unlocked.
2389     * Removed Heimdal "in-memory keytab" support.
2390     * Fixup the 'multiple-vuids' bugs in our server code.
2391     * Correct return code from lsa_lookup_sids() on unmapped
2392       sids (based on work by vl@samba.org).
2393     * Fix the "too many fcntl locks" scalability problem 
2394       raised by tridge.
2395     * Fixup correct (as per W2K3) returns for lookupsids 
2396       as well as lookupnames.
2397     * Fixups for delete-on-close semantics as per Win2k3 behavior.
2398     * Make SMB_FILE_ACCESS_INFORMATION call work correctly.
2399     * Fix "unable to initialize" bug when smbd hasn't been run with 
2400       new system and a user is being added via pdbedit/smbpasswd.
2401     * Added NTrename SMB (0xA5).
2402     * Fixup correct timeout values for blocking lock timeouts.
2403     * Fix various bugs reported by 'gentest'.
2404     * More locking fixes in the case where we own the lock.
2405     * Fix up regression in IS_NAME_VALID and renames.
2406     * Don't set allocation size on directories.
2407     * Return correct error code on fail if file exists and target 
2408       is a directory.
2409     * Added client "hardlink" comment to test doing NT rename with 
2410       hard links.  Added hardlink_internals() code - UNIX extensions 
2411       now use this as well.
2412     * Use a common function to parse all pathnames from the wire for 
2413       much closer emulation of Win2k3 error return codes.
2414     * Implement check_path_syntax() and rewrite string sub 
2415       functions for better multibyte support.
2416     * Ensure msdfs referrals are multibyte safe.
2417     * Allow msdfs symlink syntax to be more forgiving.
2418       eg. sym_link -> msdfs://server/share/path/in/share 
2419       or  sym_link -> msdfs:\\server\share\path\in\share.
2420     * Cleanup multibyte netbios name support in nmbd ( based on patch
2421       by MORIYAMA Masayuki <moriyama@miraclelinux.com>).
2422     * Fix check_path_syntax() for multibyte encodings which have 
2423       no '\' as second byte (based on work by ab@samba.org.
2424     * Fix the "dfs self-referrals as anonymous user" problem
2425       (based on patch from vl@samba.org).
2426     * BUG 1064: Ensure truncate attribute checking is done correctly 
2427       on "hidden" dot files.
2428     * Fix bug in anonymous dfs self-referrals again.
2429     * Fix get/set of EA's in client library
2430     * Added support for OS/2 EA's in smbd server.
2431     * Added 'ea support' parameter to smb.conf.
2432     * Added 'store dos attributes' parameter to smb.conf.
2433     * Fix wildcard identical rename.
2434     * Fix reply_ctemp - make compatible with w2k3.
2435     * Fix wildcard unlink.
2436     * Fix wildcard src with wildcard dest renames.      
2437     * BUG 1139: Fix based on suggestion by jdev@panix.com.
2438       swap lookups for user and group - group will do an
2439       algorithmic lookup if it fails, user won't.
2440     * Make EA's lookups case independent.
2441     * Fix SETPATHINFO in 'unix extensions' support.
2442     * Make 3.x pass the Samba 4.x RAW-SEARCH tests - except for 
2443       the UNIX info levels, and the short case preserve names.
2446 o   Timur Bakeyev <timur@com.bat.ru>
2447     * BUG 1144: only set --with-fhs when the argument is 'yes'
2448     * BUG 1152: Allow python modules to build despite libraries added 
2449       to LDFLAGS instead of LDPATH.
2450     * BUG 1141: Fix nss*.so names on FreeBSD 5.x.
2453 o   Craig Barratt <cbarratt@users.sourceforge.net>
2454     * BUG 389: Allow multiple exclude arguments with smbclient 
2455       tar -Xr options (better support for Amanda backup client).
2458 o   Andrew Bartlett <abartlet@samba.org>
2459     * Include support for linking with cracklib for enforcing strong 
2460       password changes.
2461     * Add support for >14 character password changes from Windows 
2462       clients.
2463     * Add 'admin set password' capability to 'net rpc'.
2464     * Allow 'net rpc samdump' to work with any joined domain 
2465       regardless of smb.conf settings.
2466     * Use an allocated buffer for count_chars.
2467     * Add sanity checks for changes in the domain SID in an 
2468       LDAP DIT.
2469     * Implement python unit tests for Samba's multibyte string 
2470       support.
2471     * Remove 'unicode' smb.conf option.
2472     * BUG 1138: Fix support for 'optional' SMB signing and other 
2473       signing bugs.
2474     * BUG 169: Fix NTLMv2-only behavior.
2475     * Ensure 'net' honors the 'netbios name' in the smb.conf by 
2476       default.
2477     * Support SMB signing on connections using only the LANMAN 
2478       password and generate the correct the 'session key' for these 
2479       connections.
2480     * Implement --required-membership-of=, an ntlm_auth option 
2481       that restricts all authentication to members of this particular 
2482       group.
2483     * Improve our fall back code for password changes.
2484     * Only send the ntlm_auth 'ntlm-server-1' helper client a '.' 
2485       after the server had said something (such as an error).
2486     * Add 'ntlm-server-1' helper protocol to ntlm_auth.
2488       
2489 o   Alexander Bokovoy <ab@samba.org>
2490     * Fix incorrect size calculation of the directory name 
2491       in recycle.so.
2492     * Fix problems with very long filenames in both smbd and smbclient
2493       caused by truncating paths during character conversions.
2494     * Fix smbfs problem with Tree Disconnect issued before smbfs 
2495       starts its work.
2498 o   Gerald Carter <jerry@samba.org>
2499     * BUG 850: Fix 'make installmodules' bug on True64.
2500     * BUG 66: mark 'only user' deprecated.
2501     * Remove corrupt tdb and shutdown (only for printing tdbs, 
2502       connections, sessionid & locking).
2503     * decrement smbd counter in connections.tdb in smb_panic().
2504     * RedHat specfile updates.
2505     * Fix xattr.h build issue on Debian testing and SuSE 8.2.
2506     * BUG 1147; bad pointer case in get_stored_queue_info() 
2507       causing seg fault.
2508     * BUG 761: read the config file before initialized default 
2509       values for printing options; don't default to bsd printing 
2510       Linux.
2511     * Allow the 'printing' parameter to be set on a per share basis.
2512     * BUG 503: RedHat/Fedora packaging fixes regarding logrotate.
2513     * BUG 848: don't create winbind local users/groups that already 
2514       exist in the tdb.
2515     * BUG 1080: fix declaration of SMB_BIG_UINT (broke compile on 
2516       LynxOS/ppc).
2517     * BUG 488: fix the 'show client in col 1' button and correctly 
2518       enumerate active connections.
2519     * BUG 1007 (partial): Fix abort in smbd caused by byte ordering 
2520       problem when storing the updating pid for the lpq cache.
2521     * BUG 1007 (partial): Fix print change notify bugs.
2522     * BUG 1165, 1126: Fix bug with secondary groups (security = ads) 
2523       and winbind use default domain = yes.  Also ensures that 
2524     * BUG 1151: Ensure that winbindd users are passed through 
2525       the username map.
2526     * Fix client rpc binds for ASU derived servers (pc netlink, 
2527       etc...).
2528     * BUG 417, 1128: Ensure that the current_user_info is set
2529       consistently so that %[UuGg] is expanded correctly.
2530     * BUG 1195: Fix crash in winbindd when the ADS server is 
2531       unavailable.
2532     * BUG 1185: Set reconnect time to be the same as the 
2533       'winbind cache time'.
2534     * Ensure that we return the sec_desc in smb_io_printer_info_2.
2535     * Change Samba printers Win32 attribute to PRINTER_ATTRIBUTE_LOCAL.
2536     * BUG 1095: Honor the '-l' option in smbclient.
2537     * BUG 1023: surround get_group_from_gid() with become_unbecome_root() 
2538       block.
2539     * Ensure server schannel uses the auth level requested by the 
2540       client.
2541     * Removed --with-cracklib option due to potential crash issue.
2542     * Fix -lcrypto linking problem with wbinfo.
2543     * BUG 761: allow printing parameter to set defaults on a per 
2544       share basis.
2545     * Add 'cups options' parameter to allow raw printing without 
2546       changing /etc/cups/cupsd.conf.
2547     * BUG 1081, 1183: Added remove_duplicate_gids() to smbd and 
2548       winbindd.
2549     * BUG 1246: Fix typo in Fedora /etc/init.d/winbind.
2550     * BUG 1288: resolve any machine netbios name (0x00) and not just 
2551       servers (0x20).
2552     * BUG 1199: Fix potential symlink issue in 
2553       examples/printing/smbprint.
2556 o   Robert Dahlem <Robert.Dahlem@gmx.net>
2557     * BUG 1048:  Don't return short names when when 'mangled names = no'
2560 o   Guenther Deschner <gd@suse.com>
2561     * Remove hard coded attribute name in the ads ranged retrieval
2562       code.
2563     * Add --with-libdir and --with-mandir to autoconf script.
2566 o   Bostjan Golob <golob@gimb.org>
2567     * BUG 1046: Fix  getpwent_list() so that the username is not 
2568       overwritten by other fields.
2571 o   Landon Fuller <landonf@opendarwin.org>
2572     * BUG 1232: patch from landonf@opendarwin.org (Landon Fuller) 
2573       to fix user/group enumeration on systems whose libc does not 
2574       call setgrent() before trying to enumerate users (i.e. 
2575       FreeBSD 5.2).
2578 o   Steve French <sfrench@us.ibm.com>
2579     * Update mount.cifs to version 1.1.
2580     * Disable dev (MS_NODEV) on user mounts from cifs vfs.
2581     * Fixes to minor security bug in the mount helper.
2582     * Fix credential file mounting for cifs vfs.
2583     * Fix free of incremented pointer in cifsvfs mount helper.
2584     * Fix path canonicalization of the mount target path and help 
2585       text display in the cifs mount helper.
2586     * Add missing guest mount option for mount.cifs.
2589 o   SATOH Fumiyasu <fumiya@miraclelinux.com>
2590     * BUG 1055; formatting fixes for 'net share'.
2591     * BUG 692: correct truncation of share names and workgroup 
2592       names in smbclient.
2593     * BUG 1088: use strchr_m() for query_host (smbclient -L).
2594     * Patch from to internally count characters correctly.
2597 o   Paul Green <paulg@samba.org>
2598     * Update VOS _POSIX_C_SOURCE macro to 200112L.
2599     * Fix bug in configure.ion by moving the first use of 
2600       AC_CHECK_HEADERS so it is always executed.
2601     * Fix configure.in to only use $BLDSHARED to select whether to 
2602       build static or shared libraries.
2605 o   Pat Haywarrd <Pat.Hayward@propero.net>
2606     * Make the session_users list dynamic (max of 128K).
2607     
2608     
2609 o   Cal Heldenbrand <calzplace@yahoo.com> 
2610     * Fix for for 'pam_smbpass migrate' functionality.
2613 o   Chris Hertel <crh@samba.org>
2614     * fix enumeration of shares 12 characters in length via 
2615       smbclient.
2618 o   Ulrich Holeschak <ulrich@holeschak.de>
2619     * BUG 932: fix local password change using pam_smbpass
2622 o   Krischan Jodies <kj@sernet.de>
2623     * Implement 'net rpc group delete'
2626 o   John Klinger <john.klinger@lmco.com>
2627     * Return NSS_SUCCESS once the max number of gids possible 
2628        has been found in initgroups() on Solaris.
2629     * BUG 1182: Re-enable the -n 'no cache' option for winbindd.
2632 o   Volker Lendecke <vl@samba.org>
2633     * Fix success message for net groupmap modify.
2634     * Fix errors when enumerating members of groups in 'net rpc'.
2635     * Match Windows behavior in samr_lookup_names() by returning
2636       ALIAS(4) when you search in BUILTIN. 
2637     * Fix server SAMR code to be able to set alias info for 
2638       builtin as well. 
2639     * Fix duplication of logic when creating groups via smbd.
2640     * Ensure that the HWM values are set correctly after running 
2641       'net idmap'.
2642     * Add 'net rpc group add'.
2643     * Implement 'net groupmap set' and 'net groupmap cleanup'.
2644     * Add 'net rpc group [add|del]mem' for domain groups and aliases.
2645     * Fix wb_delgrpmem (wbinfo -o).
2646     * As a DC we should not reply to lsalookupnames on DCNAME\\user.
2647     * Fix sambaUserWorkstations on a Samba DC.
2648     * Implement wbinfo -k: Have winbind generate an AFS token after
2649       authenticating the user.
2650     * Add expand_msdfs VFS module for providing referrals based on the
2651       the client's IP address.
2652     * Implement client side NETLOGON GetDCName function.
2653     * Fix caching of name->sid lookups.
2654     * Add support in winbindd for expanding nested local groups.
2655     * Fix memleak in winbindd.
2656     * Fix msdfs proxy.
2657     * Don't list domain groups from BUILTIN.
2658     * Fix memleak in policy handle utility functions.
2659     * Decrease winbindd startup time by only contacting trusted 
2660       domains as necessary.
2661     * Allow winbindd to ask the DC for its domain for a trusted 
2662       DC.
2663     * Fix Netscape DS schema based on comments from 
2664       <thomas.mueller@christ-wasser.de>.
2665     * Correct case where adding a domain user to a XP local group 
2666       did a lsalookupname on the user without domain prefix, and 
2667       failed.
2668     * Fix segfault in winbindd caused by 'wbinfo -a'.
2669     
2671 o   Herb Lewis <herb@samba.org>
2672     * Fix typo for tag in proto file.
2673     * Add missing #ifdef HAVE_BICONV stuff.
2674     * Truncate Samba's netbios name at the first '.' (not 
2675       right to left).
2678 o   Derrell Lipman <Derrell.Lipman@UnwiredUniverse.com>
2679     * Bug fixes and enhancements to libsmbclient library.
2681     
2682 o   Jianliang Lu <j.lu@tiesse.com>
2683     * Enforce the 'user must change password at next login' flag.
2684     * Decode meaning of 'fields present' flags (improves support 
2685       for usrmgr.exe).
2686     * NTLMv2 fixes.
2687     * Don't force an upper case domain name in the ntlmssp code.
2688     
2690 o   L. Lucius <ib@digicron.com>.
2691     * type fixes.
2694 o   Jim McDonough <jmcd@us.ibm.com>
2695     * Add versioning support to tdbsam.
2696     * Update the IBM Directory Server schema with the OpenLDAP 
2697       file.
2698     * Various decoding fixes to improve usrmgr.exe support.
2699     * Fix statfs redeclaration of statfs struct on ppc
2700     * Implement support for password lockout of Samba domain 
2701       controllers and standalone servers.
2702     * Get MungedDial attribute actually working with full TS 
2703       strings in it for pdb_ldap.
2704     * BUG 1208 (partial): Improvements for working with expired krb5 
2705       tickets in winbindd.
2706     * Use timegm, or our already existing replacement instead of 
2707       timezone (spotted by Andrzej Tobola <san@iem.pw.edu.pl>).
2708     * Remove modifyTimestamp from list of our attributes.  
2709     * Fix lsalookupnames to check for domain users as well as local 
2710       users. 
2711     * Merge struct uuid replacement for GUID from trunk.
2712     * BUG 1208: Finish support for handling expired tickets in 
2713       winbindd (in conjunction with Guenther Deschner <gd@suse.de>).
2716 o   Stefan Metzmacher <metze@samba.org>
2717     * Implement new VERSION schema based on subversion revision 
2718       numbers.
2719     * Add shadow_copy vfs module.
2720     * Fix segault in login_cache support.
2723 o    Heinrich Mislik <Heinrich.Mislik@univie.ac.at>
2724      o BUG 979 -- Fix quota display on AIX.
2727 o   James Peach <jpeach@sgi.com>
2728     * Correct check for printf() format when using the SGI MIPSPro 
2729       compiler.
2730     * BUG 1038: support backtrace for 'panic action' on IRIX.
2731     * BUG 768: Accept profileing arg to IRIX init script.
2732     * BUG 748: Relax arg parsing to sambalp script (IRIX).
2733     * BUG 758: Fix pdma build.
2734     * Search IRIX ABI paths for libiconv.  Based on initial fix from 
2735       Jason Mader.
2736       
2738 o   Kurt Pfeifle <kpfeifle@danka.de>
2739     * Add example shell script for migrating drivers and printers 
2740       from a Windows print server to a Samba print server using 
2741       smbclient/rpcclient (examples/printing/VamireDriversFunctions).
2744 o   Tim Potter <tpot@samba.org>
2745     * Fix logic bug in tdb non-blocking lock routines when 
2746       errno == EAGAIN.
2747     * BUG 1025: Include sys/acl.h in check for broken nisplus 
2748       include files.      
2749     * BUG 1066: s/printf/d_printf/g in SWAT.
2750     * BUG 1098: rename internal msleep() function to fix build 
2751       problems on AIX.
2752     * BUG 1112: Fix for writable printerdata problem in python bindings.
2753     * BUG 1154: Remove reference to <sys/mman.h> in tdbdump.c.
2754     * BUG 1155: enclose use of fchown() with guards.
2755     * Relicense tdb python module as LGPL.
2758 o   Richard Sharpe <rsharpe@samba.org>
2759     * Add support to smbclient for multiple logins on the same 
2760       session (based on work by abartlet@samba.org).
2761     * Correct blocking condition in smbd's use of accept() on IRIX.
2762     * Add support for printing out the MAC address on nmblookup.
2765 o   Simo Sorce <idra@samba.org>
2766     * Replace unknown_3 with fields_present in SAMR code.
2767     * More length checks in strlcat().
2770 o   Andrew Tridgell <tridge@samba.org>
2771     * Rewrote the AIX UESS backend for winbindd.
2772     * Fixed compilation with --enable-dmalloc.
2773     * Change tdb license to LGPL (see source/tdb/tdb.c).
2774     * Force winbindd to use schannel in clients connections to 
2775       DC's if possible.
2778 o   Jelmer Vernooij <jelmer@samba.org>
2779    * Fix ETA Calculation when resuming downloads in smbget.
2780    * Add -O (for writing downloaded files to standard out) 
2781      based on patch by Bas van Sisseren <bas@dnd.utwente.nl>.
2782     * Fix syntax error in example mysql table
2784            
2785 o   TAKEDA yasuma <yasuma@miraclelinux.com>
2786     * BUG 900: fix token processing in cmd_symlink, cmd_link, 
2787       cmd_chown, cmd_chmod smbclient functions.
2790 o   Shiro Yamada <shiro@miraclelinux.com>
2791     * BUG 1129: install image files for SWAT.
2793       
2794     --------------------------------------------------
2796                   ==============================
2797                   Release Notes for Samba 3.0.2a
2798                         February 13, 2004
2799                   ==============================
2801 Samba 3.0.2a is a minor patch release for the 3.0.2 code base
2802 to address, in particular, a problem when using pdbedit to 
2803 sanitize (--force-initialized-passwords) Samba's tdbsam 
2804 backend.   This is the latest stable release of Samba. This 
2805 is the version that all production Samba servers should be 
2806 running for all current bug-fixes.  
2808 ******************* Attention! Achtung! Kree! *********************
2810 Beginning with Samba 3.0.2, passwords for accounts with a last 
2811 change time (LCT-XXX in smbpasswd, sambaPwdLastSet attribute in
2812 ldapsam, etc...) of zero (0) will be regarded as uninitialized 
2813 strings.  This will cause authentication to fail for such
2814 accounts.  If you have valid passwords that meet this criteria, 
2815 you must update the last change time to a non-zero value.  If you 
2816 do not, then  'pdbedit --force-initialized-passwords' will disable 
2817 these accounts and reset the password hashes to a string of X's.
2819 ******************* Attention! Achtung! Kree! *********************
2822 Changes since 3.0.2
2823 -------------------
2825 commits
2826 -------
2828 Please refer to the CVS log for the SAMBA_3_0 branch for complete
2829 details.  The list of changes per contributor are as follows:
2832 o   Jeremy Allison <jra@samba.org>
2833     * Added paranoia checks in parsing code.
2834     
2836 o   Andrew Bartlett <abartlet@samba.org>
2837     * Ensure that changes to uninitialized passwords in ldapsam 
2838       are written to the DIT.
2841 o   Gerald (Jerry) Carter <jerry@samba.org>
2842     * Fixed iterator in tdbsam.
2843     * Fix bug that disabled accounts with a valid NT password 
2844       hash, but no LanMan hash.
2845     
2847 o   Steve French <sfrench@us.ibm.com>
2848     * Added missing nosetuid and noexec options.
2850     
2851 o   Bostjan Golob <golob@gimb.org>
2852     * BUG 1046: Don't overwrite usernames of entries returned 
2853       by getpwent_list().
2856 o   Sebastian Krahmer <krahmer@suse.de>
2857     * Fixed potential crash bug in NTLMSSP parsing code.
2860 o   Tim Potter <tpot@samba.org>
2861     * Fixed logic in tdb_brlock error checking.
2863     
2864 o   Urban Widmark <urban@teststation.com>
2865     * Set nosuid,nodev flags in smbmnt by default.
2866     
2867     
2868         --------------------------------------------------
2869                   
2870                   =============================
2871                   Release Notes for Samba 3.0.2
2872                         February 9, 2004
2873                   =============================
2875 It has been confirmed that previous versions of Samba 3.0 are
2876 susceptible to a password initialization bug that could grant an 
2877 attacker unauthorized access to a user account created by the
2878 mksmbpasswd.sh shell script.
2880 The Common Vulnerabilities and Exposures project (cve.mitre.org) 
2881 has assigned the name CAN-2004-0082 to this issue.
2883 Samba administrators not wishing to upgrade to the current 
2884 version should download the 3.0.2 release, build the pdbedit 
2885 tool, and run 
2887    root# pdbedit-3.0.2 --force-initialized-passwords
2888       
2889 This will disable all accounts not possessing a valid password
2890 (e.g. the password field has been set a string of X's).
2892 Samba servers running 3.0.2 are not vulnerable to this bug 
2893 regardless of whether or not pdbedit has been used to sanitize
2894 the passdb backend.
2896 Some of the more visible bugs in 3.0.1 addressed in the 3.0.2
2897 release include:
2899   o Joining a Samba domain from Pre-SP2 Windows 2000 clients.
2900   o Logging onto a Samba domain from Windows XP clients.
2901   o Problems with the %U and %u smb.conf variables in relation to 
2902     Windows 9x/ME clients.
2903   o Kerberos failures due to an invalid in memory keytab detection
2904     test.
2905   o Updates to the ntlm_auth tool.
2906   o Fixes for various SMB signing errors.
2907   o Better separation of WINS and DNS queries for domain controllers.
2908   o Issues with nss_winbind FreeBSD and Solaris.
2909   o Several crash bugs in smbd and winbindd.
2910   o Output formatting fixes for smbclient for better compatibility
2911     with scripts based on the 2.2 version.
2914 Changes since 3.0.1
2915 -------------------
2917 smb.conf changes
2918 ----------------
2920     Parameter Name              Action
2921     --------------              ------
2922     ldap replication sleep      New
2923     read size                   removed (unused)
2924     source environment          removed (unused)
2927 commits
2928 -------
2930 Please refer to the CVS log for the SAMBA_3_0 branch for complete
2931 details.  The list of changes per contributor are as follows:
2933 o   Jeremy Allison <jra@samba.org>
2934     * Revert change that broke Exchange clear text samlogons.
2935     * Fix gcc 3.4 warning in MS-DFS code.
2936     * Tidy up of NTLMSSP code.
2937     * Fixes for SMB signing errors
2938     * BUG 815: Workaround NT4 bug to support plaintext
2939       password logins and UNICODE.
2940     * Fix SMB signing bug when copying large files.
2941     * Correct error logic in mkdir_internals() (caused a panic
2942       when combined with --enable-developer).
2943     * BUG 830: Protect against crashes due to bad character 
2944       conversions.
2946       
2947 o   Petri Asikainen <paca@sci.fi>
2948     * BUG 330, 387:Fix single valued attribute updates when 
2949       working with Novell NDS.
2952 o   Andrew Bartlett <abartlet@samba.org>
2953     * Correctly handle per-pipe NTLMSSP inside a NULL session.
2954     * Fix segfault in gencache 
2955     * Fix early free() of encrypted_session_key.
2956     * Change DC lookup routines to more carefully separate
2957       DNS names (realms) from NetBIOS domain names.
2958     * Add new sid_to_dn() function for internal winbindd use.
2959     * Refactor cli_ds_enum_domain_trusts().
2960     * BUG 707: Implement range retrieval of ADS attributes (based 
2961       on work from Volker <vl@samba.org> and Guenther Deschner 
2962       <gd@suse.com>).
2963     * Automatically initialize the signing engine if a session key
2964       is available.
2965     * BUG 916: Do not perform a + -> ' ' substitution for squid URL 
2966       encoded strings, only form input in SWAT.
2967     * Resets the NTLMSSP state for new negotiate packets.
2968     * Add 2-byte alignments in net_samlogon() queries to parse 
2969       odd-length plain text passwords.
2970     * Allow Windows groups with no members in winbindd.
2971     * Allow normal authentication in the absence of a server 
2972       generated session key.
2973     * More optimizations for looking up UNIX group lists.
2974     * Clean up error codes and return values for pam_winbindd
2975       and winbindd PAM interface.
2976     * Fix string return values in ntlm_auth tool.
2977     * Fix segfault when 'security = ads' but no realm is defined.
2978     * BUG 722: Allow winbindd to map machine accounts to uids.
2979     * More cleanups for winbindd's find_our_domain().
2980     * More clearly detect whether a domain controller is an NT4
2981       or mixed-mode AD DC (additional bug fixes by jerry & jmcd).
2982     * Increase separation between DNS queries for hosts and queries
2983       for AD domain controllers.
2984     * Include additional NT_STATUS to PAM error mappings.
2985     * Password initialization fixes.
2987     
2988 o   Justin Baugh <justin.baugh@request.com>
2989     * BUG 948: Implement missing functions required for FreeBSD 
2990       nss_winbind support. 
2993 o   Alexander Bokovoy <ab@samba.org>
2994     * BUG 922: Make sure enable fast path for strlower_m() and 
2995       strupper_m().
2998 o   Luca Bolcioni <Luca.Bolcioni@yacme.com>
2999     * Fix crash when using 'security = server' and 'encrypt 
3000       passwords = no' by always initializing the session key.
3002       
3003 o   Dmitry Butskoj <buc@odusz.elektra.ru>
3004     * Fix for special files being hidden from admins.
3007 o   Gerald (Jerry) Carter <jerry@samba.org>
3008     * Fix bug in the lanman session key generation.  Caused 
3009       "decode_pw: incorrect password length" error messages.
3010     * Save the right case for the located user name in 
3011       fill_sam_account().  Fixes %U/%u expansion for win9x clients.
3012     * BUG 897: Add well known rid for pre win2k compatible access
3013       group.
3014     * BUG 887: Correct typo in delete user script example.
3015     * Use short lived TALLOC_CTX* for allocating printer objects 
3016       from the print handle cache.
3017     * BUG 912: Fix check for HAVE_MEMORY_KEYTAB.
3018     * Fix several warnings reported by the SUN Forte C compiler.
3019     * Fully control DNS queries for AD DC's using 'name resolve order'.
3020     * BUG 770: Send the SMBjobid for UNIX jobs back to the client.
3021     * BUG 972: Fix segfault in cli_ds_getprimarydominfo().
3022     * BUG 936: fix bind credentials for schannel binds in smbd.
3023     * BUG 446: Fix output of smbclient for better compatibility 
3024       with scripts based on the 2.2 version (including Amanda).
3025     * BUG 891, 949: Fedora packaging fixes.
3026     * Fix bug that caused rpcclient to incorrectly retrieve 
3027       the SID for a server (this causing all calls that required 
3028       this information to fail). 
3029     * BUG 977: Don't create a homes share for a user if a static 
3030       share already exists by the same name.
3031     * Removed unused smb.conf options.
3032     * Password initialization fixes.
3033     * Set the disable flag for template accounts created by
3034       mksmbpasswd.sh.
3035     * Disable any account has no passwords and does not have the
3036       ACB_PWNOTREQ bit set.
3039 o   Guenther Deschner <gd@suse.com>
3040     * Install smbwrapper.so should be put into the $(libdir) 
3041       and not $(bindir).
3042     * Add the capability to specify the new user password 
3043       for "net ads password" on the command line.
3044     * Correctly detect AFS headers on SuSE.
3045         
3047 o   James Flemer <jflemer@uvm.edu>
3048     * Fix AIX compile bug by linking HAVE_ATTR_LIST to 
3049       HAVE_SYS_ATTRIBUTES_H.
3052 o   Luke Howard <lukeh@PADL.COM>
3053     * Fix segfault in session setup reply caused by a early free().
3056 o   Stoian Ivanov <sdr@bultra.com>
3057     * Implement grepable output for smbclient -L.
3060 o   LaMont Jones <lamont@debian.org>
3061     * BUG 225328 (Debian): Correct false failure LFS test that resulted 
3062       in  _GNU_SOURCE not being defined (thus resulting in strndup() 
3063       not being defined).
3065       
3066 o   Volker Lendecke <vl@samba.org>
3067     * BUG 583: Ensure that user names always contain the short 
3068       version of the domain name.
3069     * Fix our parsing of the LDAP uri.
3070     * Don't show the 'afs username map' in the SWAT basic view.
3071     * Fix SMB signing issues in relation to failed NTLMSSP logins.
3072     * BUG 924: Fix return codes in smbtorture harness.
3073     * Always lower-case usernames before handing it to AFS code.
3074     * Add a German translation for SWAT.
3075     * Fix a segfaults in winbindd.
3076     * Fix the user's domain passed to register_vuid() from 
3077       reply_spnego_kerberos().
3078     * Add NSS example code in nss_winbind to convert UNIX 
3079       id's <-> Windows SIDs.
3080     * Display more descriptive error messages for login via 'net'.
3081     * Fix compiler warning in the net tool.
3082     * Fix length bug when decoding base64 strings.
3083     * Ensure we don't call getpwnam() inside a loop that is iterating 
3084       over users with getpwent().  This broke on glibc 2.3.2.
3087 o   Herb Lewis <herb@samba.org>
3088     * Fix bit rot in psec.
3091 o   Jianliang Lu <j.lu@tiesse.com>
3092     * Ensure we delete the group mapping before calling the delete 
3093       group script.
3094     * Define well known RID for managing the  "Power Users" group.
3095     * BUG 381: check builtin (not local) group SID when updating 
3096       group membership.
3097     * BUG 101: set the SV_TYPE_PRINTQ_SERVER flag in host announcement 
3098       packet.
3101 o   John Klinger <john.klinger@lmco.com>
3102     * Implement initgroups() call in nss_winbind on Solaris.
3105 o   Jim McDonough <jmcd@us.ibm.com>
3106     * Fix regression in net rpc join caused by recent changes 
3107       to cli_lsa_query_info_policy().
3108     * BUG 964: Fix crash bug in 'net rpc join' using a preexisting
3109       machine account.
3112 o   MORIYAMA Masayuki <moriyama@miraclelinux.com>
3113     * BUG 570: Ensure that configure honors the LDFLAGS variable.
3116 o   Stefan Metzmacher <metze@samba.org>
3117     * Implement LDAP rebind sleep patch.
3118     * Revert to 2.2 quota code because of so many broken quota files 
3119       out there.
3120     * Fix XFS quotas: HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS
3121                       XFS_USER_QUOTA -> USRQUOTA
3122                       XFS_GROUP_QUOTA -> GRPQUOTA
3123     * Fix disk_free calculation with group quotas.
3124     * Add debug class 'quota' and a lot of DEBUG()'s 
3125       to the quota code.
3126     * Fix sys_chown() when no chown() is present.
3127     * Add SIGABRT to fault handling in order to catch got a 
3128       backtrace if an error occurs the OpenLDAP client libs.
3131 o   <ndb@theghet.to>
3132     * Allow an existing LDAP machine account to be re-used when 
3133       joining an AD domain.
3136 o   James Peach <jpeach@sgi.com>
3137     * BUG 889: Change smbd to use pread/pwrite on platforms that 
3138       support these calls. Can lead to a significant speed increase.
3141 o   Tim Potter <tpot@samba.org>
3142     * BUG 905: Remove POBAD_CC to fix Solaris Forte compiles.
3143     * BUG 924: Fix typo in RW2 torture test.
3144     
3145     
3146 o   Richard Sharpe <rsharpe@samba.org>
3147     * Small fixes to torture.c to cleanup the error handling 
3148       and prevent crashes.
3151 o   J. Tournier <jerome.tournier@IDEALX.com>
3152     * Small fixes for the smbldap-tool scripts.
3155 o   Andrew Tridgell <tridge@samba.org>
3156     * Fix src len check in pull_usc2().
3157     
3158     
3159 o   Jelmer Vernooij <jelmer@samba.org>
3160     * Put functions for generating SQL queries in pdb_sql.c
3161     * Add pgSQL backend (based on patch by Hamish Friedlander)
3162     * BUG 908: Fix -s option to smbcontrol.    
3163     * Add smbget utility - a wget-clone for the SMB/CIFS protocol.
3164     * Fix for libnss_wins on IRIX platforms.
3165     * Fix swatdir for --with-fhs.
3168         --------------------------------------------------
3170                   =============================
3171                   Release Notes for Samba 3.0.1
3172                         December 15, 2003
3173                   =============================
3175 Some of the more common bugs in 3.0.0 addressed in the release 
3176 include:
3178   o Substitution problems with smb.conf variables.
3179   o Errors in return codes which caused some applications
3180     to fail to open files.
3181   o General Protection Faults on Windows 2000/XP clients
3182     using Samba point-n-print features.
3183   o Several miscellaneous crash bugs.
3184   o Access problems when enumerating group mappings are
3185     stored in an LDAP Directory.
3186   o Several common SWAT bugs when writing changes to
3187     smb.conf.
3188   o Internal inconsistencies when 'winbind use default
3189     domain = yes'
3193 Changes since 3.0.0
3194 ----------------------
3196     Parameter Name              Action
3197     --------------              ------
3198     hide local users            Removed
3199     mangled map                 Deprecated
3200     mangled stack               Removed
3201     passwd chat timeout         New
3204 commits
3205 -------
3207 o   Change the interface for init_unistr2 to not take a length 
3208     but a flags field.  We were assuming that 
3209     2*strlen(mb_string) == length of ucs2-le string.  (bug 480).
3210 o   Allow d_printf() to handle strings with escaped quotation 
3211     marks since the msg file includes the escape character (bug 489).
3212 o   Fix bad html table row termination in SWAT wizard code (bug 413).
3213 o   Fix to parse the level-2 strings.
3214 o   Fix for "valid users = %S" in [homes].  Fix read/write 
3215     list as well. 
3216 o   Change AC_CHECK_LIB_EXT to prepend libraries instead of append.  
3217     This is the same way AC_CHECK_LIB works (bug 508).
3218 o   Testparm output fixes for clarity.
3219 o   Fix broken wins hook functionality -- i18n bug (bug 528).
3220 o   Take care of condition where DOS and NT error codes must differ.
3221 o   Default to using only built-in charsets when a working iconv 
3222     implementation cannot be located.
3223 o   Wrap internals of sys_setgroups() so the sys_XX() call can 
3224     be done unconditionally (bug 550).
3225 o   Remove duplicate smbspool link on SWAT's front page (bug 541).
3226 o   Save and restore CFLAGS before/after AC_PROG_CC.  Ensures that
3227     --enable-debug=[yes|no] works correctly.
3228 o   Allow ^C to interrupt smbpasswd if using our getpass 
3229     (e.g. smbpasswd command).
3230 o   Support signing only on RPC's (bug 167).
3231 o   Correct bug that prevented  Excel 2000 clients from opening 
3232     files marked as read-only.
3233 o   Portability fix bugs 546 - 549).
3234 o   Explicitly initialize the value of AR for vendor makes that don't
3235     do this (e.g. HPUX 11).  (bug 552).
3236 o   More i18n fixes for SWAT (bug 413).
3237 o   Change the cwd before the postexec script to ensure that a
3238     umount will succeed.
3239 o   Correct double free that caused winbindd to crash when a DC 
3240     is rebooted (bug 437).
3241 o   Fix incorrect mode sum (bug 562).
3242 o   Canonicalize SMB_INFO_ALLOCATION in the same was as
3243     SMB_FS_FULL_SIZE_INFORMATION (bug 564).
3244 o   Add script to generate *msg files.
3245 o   Add Dutch SWAT translation file.
3246 o   Make sure to call get_user_groups() with the full winbindd 
3247     name for a user if he/she has one (bug 406).
3248 o   Fix up error code returns from Samba4 tester. Ensure invalid 
3249     paths are validated the same way.  
3250 o   Allow Samba3 to pass the Samba4 RAW-READ tests.
3251 o   Refuse to configure if --with-expsam=$BACKEND was used but no 
3252     libraries were found for $BACKEND.
3253 o   Move sysquotas autoconf tests to a separate file.
3254 o   Match W2K w.r.t. writelock and writeclose.  Samba4 torture 
3255     tester
3256 o   Make sure that the files that contain the static_init_$subsystem; 
3257     macro get recompiled after configure by removing the object 
3258     files.
3259 o   Ensure canceling a blocking lock returns the correct error 
3260     message.
3261 o   Match Samba 2.2 behavior; make ACB_NORMAL the default ACB value.
3262 o   Updated Japanese welcome file in SWAT.
3263 o   Fix to  nt-time <-> unix-time functions reversible.
3264 o   Ensure that winbindd uses the the escaped DN when querying
3265     an AD ldap server.
3266 o   Fix portability issues when compiling (bug 505, 550)
3267 o   Compile fix for tdbbackup when Samba needs to override 
3268     non-C99 compliant implementations of snprintf().
3269 o   Use @PICSUFFIX@ instead of .po in Makefile.in (bug 574).
3270 o   Make sure we break out of samsync loop on error.
3271 o   Ensure error code path doesn't free unmalloc()'d memory
3272     (bug 628).
3273 o   Add configure test for krb5_keytab_entry keyblock vs key 
3274     member (bug 636).
3275 o   Fixed spinlocks.
3276 o   Modified testparm so that all output so all debug output goes 
3277     to stderr, and all file processing goes to stdout.
3278 o   Fix error return code for BUFFER_TOO_SMALL in smbcacls 
3279     and smbcquotas.
3280 o   Fix "NULL dest in safe_strcpy()" log message by ensuring that 
3281     we have a devmode before copying a string to the devicename.
3282 o   Support mapping REALM.COM\user to a local user account (without 
3283     running winbindd)  for compatibility with 2.2.x release.
3284 o   Ensure we don't use mmap() on blacklisted systems.
3285 o   fixed a number of bugs and memory leaks in the AIX 
3286     winbindd shim
3287 o   Call initgroups() in SWAT before becomming the user so that
3288     secondary group permissions can be used when writing to 
3289     smb.conf.
3290 o   Fix signing problems when reverse connecting back to a 
3291     client for printer notify
3292 o   Fix signing problems caused by a miss-sequence bug.
3293 o   Missing map in errormap for ERROR_MORE_DATA -> ERRDOS, ERRmoredata.
3294     Fixes NEXUS tools running on Win9x clients (bug 64).
3295 o   Don't leave the domain field uninitialized in cli_lsa.c if some 
3296     SID could not be mapped.
3297 o   Fix segfault in mount.cifs helper when there is no options 
3298     specified during mount.
3299 o   Change the \n after the password prompt to go to tty instead 
3300     of stdout (bug 668).
3301 o   Stop net -P from prompting for machine account password (bug 451).
3302 o   Change in behavior to Not only change the effective uid but also
3303     the real uid when becoming unprivileged.
3304 o   Cope with Exchange 5.5 cleartext pop password auth.
3305 o   New files for support of initshutdown pipe.  Win2k doesn't 
3306     respond properly to all requests on the winreg pipe, so we need 
3307     to handle this new pipe (bug 534).
3308 o   Added more va_copy() checks in configure.in.
3309 o   Include fixes for libsmbclient build problems.
3310 o   Missing UNIX -> DOS codepage conversion in lanman.c.
3311 o   Allow DFMS-S filenames can now have arbitrary case (bug 667).
3312 o   Parameterize the listen backlog in smbd and make it larger by
3313     default. A backlog of 5 is way too small these days.
3314 o   Check for an invalid fid before dereferencing the fsp pointer
3315     (bug 696).
3316 o   Remove invalid memory frees and return codes in pdb_ldap.c.
3317 o   Prompt for password when invoking --set-auth-user and no 
3318     password is given.
3319 o   Bind the nmbd sending socket to the 'socket address'.
3320 o   Re-order link command for smbd, rpcclient and smbpasswd to ensure 
3321     $LDFLAGS occurs before any library specification (bug 661).
3322 o   Fix large number of printf() calls for 64-bit size_t.
3323 o   Fix AC_CHECK_MEMBER so that SLES8 does correctly finds the 
3324     keyblock in the krb5 structs.
3325 o   Remove #include <compat.h> in hopes to avoid problems with 
3326     apache header files.
3327 o   Correct winbindd build problems on HP-UX 11.
3328 o   Lowercase netgroups lookups (bug 703).
3329 o   Use the actual size of the buffer in strftime instead of a made
3330     up value which just happens to be less than sizeof(fstring).  
3331     (bug 713).
3332 o   Add ldaplibs to pdbedit link line (bug 651).
3333 o   Fix crash bug in smbclient completion (bug 659).
3334 o   Fix packet length for browse list reply (bug 771).
3335 o   Fix coredump in cli_get_backup_list().
3336 o   Make sure that we expand %N (bug 612).
3337 o   Allow rpcclient adddriver command to specify printer driver 
3338     version (bug 514).
3339 o   Compile tdbdump by default.
3340 o   Apply patches to fix iconv detection for FreeBSD.
3341 o   Do not allow the 'guest account' to be added to a passdb backend 
3342     using smbpasswd or pdbedit (bug 624).
3343 o   Save LDFLAGS during iconv detection (bug 57).
3344 o   Run krb5 logins through the username map if the winbindd 
3345     lookup fails (bug 698).
3346 o   Add const for lp_set_name_resolve_order() to avoid compiler 
3347     warnings (bug 471).
3348 o   Add support for the %i macro in smb.conf to stand in for the for
3349     the local IP address to which a client connected.
3350 o   Allow winbindd to match local accounts to domain SID when 
3351     'winbind trusted domains only = yes' (bug 680).
3352 o   Remove code in idmap_ldap that searches the user suffix and group 
3353     suffix.  It's not needed and provides inconsistent functionality 
3354     from the tdb backend.
3355 o   Patch to handle munged dial string for Windows 2000 TSE.
3356     Thanks to Gaz de France, Direction de la Recherche, Service 
3357     Informatique Métier for their supporting this work by Aurelien 
3358     Degrémont <adegremont@idealx.com>.
3359 o   Correct the "smbldap_open: cannot access when not root error"
3360     messages when looking up group information (bug 281).
3361 o   Skip over the winbind separator when looking up a user.
3362     This fixes the bug that prevented local users from
3363     matching an AD user when not running winbindd (bug 698).
3364 o   Fix a problem with configure on *BSD systems. Make sure
3365     we add -liconv etc to LDFLAGS.
3366 o   Fix core dump bug when "security = server" and the authentication
3367     server goes away.
3368 o   Correct crash bug due to an empty munged dial string.
3369 o   Show files locked by a specific user (smbstatus -u 'user') 
3370     (bug 590).
3371 o   Fix bug preventing print jobs from display in the queue
3372     monitor used by Windows NT and later clients (bug 660).
3373 o   Fix several reported problems with point-n-print from
3374     Windows 2000/XP clients due to a bug in the EnumPrinterDataEx()
3375     reply (bug 338, 527 & 643).
3376 o   Fix a handful of potential memory leaks in the LDAP code used
3377     by ldapsam[_compat] and the LDAP idmap backend.
3378 o   Fix for pdbedit error code returns (bug 763).
3379 o   Make sure we only enumerate group mapping entries  (not 
3380     /etc/group) even when doing local aliases.
3381 o   Relax check on the pipe name in a dce/rpc bind response to work 
3382     around issues with establishing trusts to a Windows 2003 domain.
3383 o   Ensure we mangle names ending in '.' in hash2 mangling method.
3384 o   Correct parsing issues with munged dial string.
3385 o   Fix bugs in quota support for XFS.
3386 o   Add a cleaner method for applications that need to provide 
3387     name->SID mappings to do this via NSS rather than having to 
3388     know the winbindd pipe protocol.
3389 o   Adds a variant of the winbindd_getgroups() call called 
3390     winbindd_getusersids() that provides direct SID->SIDs listing of 
3391     a users supplementary groups. This is enough to allow non-Samba 
3392     applications to do ACL checking.
3393 o   Make sure we don't append the 'ldap suffix' when writing out the 
3394     'ldap XXX suffix' values in SWAT (bug 328).
3395 o   Fix renames across file systems.
3396 o   Ensure that items in a list of strings containing whitespace are 
3397     written out surrounded by single quotes.  This means that both 
3398     double and single quotes are now used to surround strings in 
3399     smb.conf (bug 481).
3400 o   Enable SWAT to correctly determine if winbindd is running (bug 
3401     398).
3402 o   Include WWW-Authenticate field in 401 response for bad auth 
3403     attempt (bug 629).
3404 o   Add support for NTLM2 (NTLMv2 session security).
3405 o   Add support for variable-length session keys.
3406 o   More privilege fixes for group enumeration in LDAP (bug 281).
3407 o   Use the dns name (or IP) as the originating client name when
3408     using CUPS (bug 467).
3409 o   Fix various SMB signing bugs.
3410 o   Fix ACL propagation on a DFS root (bug 263).
3411 o   Disable NTLM2 for RPC pipes.
3412 o   Allow the client to specify the NTLM2 flags got NTLMSSP 
3413     authentication.
3414 o   Change the name of the job passed off to cups from "Test Page" 
3415     to "smbprn.00000033 Test Page" so that we can get the smb 
3416     jobid back. This allow users to delete jobs with cups printing 
3417     backend (partial work on bug 770).
3418 o   Fix build of winbindd with static pdb modules.
3419 o   Retrieve the correct ACL group bits if the file has an ACL 
3420     (bug 802).
3421 o   Implement "net rpc group members": Get members of a domain group 
3422     in human-readable format.
3423 o   Add MacOSX (Darwin) specific charset module code.
3424 o   Use samr_dispinfo(level == 1) for enumerating domain users so we 
3425     can include the full name in gecos field (bug 587).
3426 o   Add support for winbind's NSS library on FeeeBSD 5.1 (bug 797).
3427 o   Implement 'net rpc group list [global|local|builtin]*' for a 
3428     select listing of the respective user databases.
3429 o   Don't automatically set NT status code flag unless client tells 
3430     us it can cope.
3431 o   Add 'net status [sessions|shares] [parseable]'.
3432 o   Don't mistake pre-existing UNIX jobs for smb jobs (remainder of  
3433     bug 770).
3434 o   Add 'Replicator' and 'RAS Servers' to list of builtin SIDs 
3435    (bug 608).
3436 o   Fix inverted logic in hosts allow/deny checks caused by 
3437     s/strcmp/strequal/ (bug 846).
3438 o   Implement correct version SamrRemoveSidForeignDomain() (bug 252).
3439 o   Fix typo in 'hash' mangling algorithm.
3440 o   Support munged dial for ldapsam (bug 800).
3441 o   Fix process_incoming_data() to return the number of bytes handled 
3442     this call whether we have a complete PDU or not; fixes bug 
3443     with multiple PDU request rpc's broken over SMBwriteX calls 
3444     each.
3445 o   Fix incorrect smb flags2 for connections to pre-NT servers 
3446     (causes smbclient to fail to OS2 for example) (bug 821).
3447 o   Update version string in smbldap-tools Makefile to 0.8.2.
3448 o   Correct a problem with "net rpc vampire" mis-parsing the 
3449     alias member info reply.
3450 o   Ensure the ${libdir} is created by the installclientlib script.
3451 o   Fix detection of Windows 2003 client architecture in the smb.conf
3452     %a variable.
3453 o   Ensure that smbd calls the add user script for a missing UNIX 
3454     user on kerberos auth call (bug 445).
3455 o   Fix bugs in hosts allow/deny when using a mismatched 
3456     network/netmask pair.
3457 o   Protect alloc_sub_basic() from crashing when the source string 
3458     is NULL (partial work on bug 687).
3459 o   Fix spinlocks on IRIX.
3460 o   Corrected some bad destination paths when running "configure 
3461     --with-fhs".
3462 o   Add packaging files for Fedora Core 1.
3463 o   Correct bug in SWAT install script for non-english languages.
3464 o   Support character set ISO-8859-1 internally (bug 558).
3465 o   Fixed more LDAP access errors when looking up group mappings 
3466     (bug 281).
3467 o   Fix UNISTR2 length bug in LsaQueryInfo(3) that caused SID 
3468     resolution to fail on local files on on domain members 
3469     (bug 875).
3470 o   Fix uninitialized variable in passdb.c.
3471 o   Fix formal parameter type in get_static() in nsswitch/wins.c.
3472 o   Fix problem mounting directories when mount.cifs is installed 
3473     with the setuid bit on.
3474 o   Fix bug that prevent --mandir from overriding the defaults
3475     given in the --with-fhs macro.
3476 o   Fix bug in in-memory Kerberos keytab detection routines 
3477     in configure.in
3481 ######################################################################
3483               The original 3.0.0 release notes follow
3484               =======================================
3485                     WHATS NEW IN Samba 3.0.0
3486                         September 24, 2003
3487               =======================================
3490 Major new features:
3491 -------------------
3493 1)  Active Directory support.  Samba 3.0 is now able to  
3494     join a ADS realm as a member server and authenticate 
3495     users using LDAP/Kerberos.
3497 2)  Unicode support. Samba will now negotiate UNICODE on the wire 
3498     and internally there is now a much better infrastructure for 
3499     multi-byte and UNICODE character sets.
3501 3)  New authentication system. The internal authentication system 
3502     has been almost completely rewritten. Most of the changes are 
3503     internal, but the new auth system is also very configurable.
3505 4)  New default filename mangling system.
3507 5)  A new "net" command has been added. It is somewhat similar to 
3508     the "net" command in windows. Eventually we plan to replace 
3509     numerous other utilities (such as smbpasswd) with subcommands 
3510     in "net".
3512 6)  Samba now negotiates NT-style status32 codes on the wire. This
3513     improves error handling a lot.
3515 7)  Better Windows 2000/XP/2003 printing support including publishing
3516     printer attributes in active directory.
3518 8)  New loadable module support for passdb backends and character 
3519     sets.
3521 9)  New default dual-daemon winbindd support for better performance.
3523 10) Support for migrating from a Windows NT 4.0 domain to a Samba 
3524     domain and maintaining user, group and domain SIDs.
3526 11) Support for establishing trust relationships with Windows NT 4.0
3527     domain controllers.
3528   
3529 12) Initial support for a distributed Winbind architecture using
3530     an LDAP directory for storing SID to uid/gid mappings.
3531   
3532 13) Major updates to the Samba documentation tree.
3534 14) Full support for client and server SMB signing to ensure
3535     compatibility with default Windows 2003 security settings.
3537 15) Improvement of ACL mapping features based on code donated by
3538     Andreas Grünbacher.
3541 Plus lots of other improvements!
3544 Additional Documentation
3545 ------------------------
3547 Please refer to Samba documentation tree (included in the docs/ 
3548 subdirectory) for extensive explanations of installing, configuring
3549 and maintaining Samba 3.0 servers and clients.  It is advised to 
3550 begin with the Samba-HOWTO-Collection for overviews and specific 
3551 tasks (the current book is up to approximately 400 pages) and to 
3552 refer to the various man pages for information on individual options.
3554 We are very glad to be able to include the second edition of
3555 "Using Samba" by Jay Ts, Robert Eckstein, and David Collier-Brown
3556 (O'Reilly & Associates) in this release.  The book is available
3557 on-line at http://samba.org/samba/docs/ and is included with 
3558 the Samba Web Administration Tool (SWAT).  Thanks to the authors and
3559 publisher for making "Using Samba" under the GNU Free Documentation 
3560 License.
3563 ######################################################################
3564 Upgrading from a previous Samba 3.0 beta
3565 ########################################
3567 Beginning with Samba 3.0.0beta3, the RID allocation functions
3568 have been moved into winbindd.  Previously these were handled
3569 by each passdb backend.  This means that winbindd must be running
3570 to automatically allocate RIDs for users and/or groups.  Otherwise,
3571 smbd will use the 2.2 algorithm for generating new RIDs.
3573 If you are using 'passdb backend = tdbsam' with a previous Samba 
3574 3.0 beta release (or possibly alpha), it may be necessary to 
3575 move the RID_COUNTER entry from /usr/local/samba/private/passdb.tdb
3576 to winbindd_idmap.tdb.  To do this:
3578 1)  Ensure that winbindd_idmap.tdb exists (launch winbindd at least 
3579     once)
3580 2)  build tdbtool by executing 'make tdbtool' in the source/tdb/ 
3581     directory
3582 3)  run: (note that 'tdb>' is the tool's prompt for input)
3584        root# ./tdbtool /usr/local/samba/private/passdb.tdb
3585        tdb> show RID_COUNTER
3586        key 12 bytes
3587        RID_COUNTER
3588        data 4 bytes
3589        [000] 0A 52 00 00                                       .R.
3591        tdb> move RID_COUNTER /usr/local/samba/var/locks/winbindd_idmap.tdb
3592        ....
3593        record moved
3595 If you are using 'passdb backend = ldapsam', it will be necessary to 
3596 store idmap entries in the LDAP directory as well (i.e. idmap backend 
3597 = ldap).  Refer to the 'net idmap' command for more information on 
3598 migrating SID<->UNIX id mappings from one backend to another.
3600 If the RID_COUNTER record does not exist, then these instructions are
3601 unneccessary and the new RID_COUNTER record will be correctly generated
3602 if needed.  
3606 ########################
3607 Upgrading from Samba 2.2
3608 ########################
3610 This section is provided to help administrators understand the details
3611 involved with upgrading a Samba 2.2 server to Samba 3.0.
3614 Building
3615 --------
3617 Many of the options to the GNU autoconf script have been modified 
3618 in the 3.0 release.  The most noticeable are:
3620   * removal of --with-tdbsam (is now included by default; see section
3621     on passdb backends and authentication for more details)
3622     
3623   * --with-ldapsam is now on used to provided backward compatible
3624     parameters for LDAP enabled Samba 2.2 servers.  Refer to the passdb 
3625     backend and authentication section for more details
3626   
3627   * inclusion of non-standard passdb modules may be enabled using
3628     --with-expsam.  This includes an XML backend and a mysql backend.
3629       
3630   * removal of --with-msdfs (is now enabled by default)
3631   
3632   * removal of --with-ssl (no longer supported)
3633   
3634   * --with-utmp now defaults to 'yes' on supported systems
3635   
3636   * --with-sendfile-support is now enabled by default on supported 
3637     systems
3638   
3639     
3640 Parameters
3641 ----------
3643 This section contains a brief listing of changes to smb.conf options
3644 in the 3.0.0 release.  Please refer to the smb.conf(5) man page for
3645 complete descriptions of new or modified parameters.
3647 Removed Parameters (order alphabetically):
3649   * admin log
3650   * alternate permissions
3651   * character set
3652   * client codepage
3653   * code page directory
3654   * coding system
3655   * domain admin group
3656   * domain guest group
3657   * force unknown acl user
3658   * hide local users
3659   * mangled stack
3660   * nt smb support
3661   * postscript
3662   * printer driver
3663   * printer driver file
3664   * printer driver location
3665   * read size
3666   * source environment
3667   * status
3668   * strip dot
3669   * total print jobs
3670   * use rhosts
3671   * valid chars
3672   * vfs options
3674 New Parameters (new parameters have been grouped by function):
3676   Remote management
3677   -----------------
3678   * abort shutdown script
3679   * shutdown script
3681   User and Group Account Management
3682   ---------------------------------
3683   * add group script
3684   * add machine script
3685   * add user to group script
3686   * algorithmic rid base
3687   * delete group script
3688   * delete user from group script
3689   * passdb backend
3690   * set primary group script
3692   Authentication
3693   --------------
3694   * auth methods
3695   * realm
3696   * passwd chat timeout
3698   Protocol Options
3699   ----------------
3700   * client lanman auth
3701   * client NTLMv2 auth
3702   * client schannel
3703   * client signing
3704   * client use spnego
3705   * disable netbios
3706   * ntlm auth
3707   * paranoid server security
3708   * server schannel
3709   * server signing
3710   * smb ports
3711   * use spnego
3713   File Service
3714   ------------
3715   * get quota command
3716   * hide special files
3717   * hide unwriteable files
3718   * hostname lookups
3719   * kernel change notify
3720   * mangle prefix
3721   * map acl inherit
3722   * msdfs proxy
3723   * set quota command
3724   * use sendfile
3725   * vfs objects
3726   
3727   Printing
3728   --------
3729   * max reported print jobs
3731   UNICODE and Character Sets
3732   --------------------------
3733   * display charset
3734   * dos charset
3735   * unicode
3736   * unix charset
3737   
3738   SID to uid/gid Mappings
3739   -----------------------
3740   * idmap backend
3741   * idmap gid
3742   * idmap uid
3743   * winbind enable local accounts
3744   * winbind trusted domains only
3745   * template primary group
3746   * enable rid algorithm
3748   LDAP
3749   ----
3750   * ldap delete dn
3751   * ldap group suffix
3752   * ldap idmap suffix
3753   * ldap machine suffix
3754   * ldap passwd sync
3755   * ldap replication sleep
3756   * ldap user suffix
3757   
3758   General Configuration
3759   ---------------------
3760   * preload modules
3761   * private dir
3763 Modified Parameters (changes in behavior):
3765   * encrypt passwords (enabled by default)
3766   * mangling method (set to 'hash2' by default)
3767   * passwd chat
3768   * passwd program
3769   * restrict anonymous (integer value)
3770   * security (new 'ads' value)
3771   * strict locking (enabled by default)
3772   * unix extensions (enabled by default)
3773   * winbind cache time (increased to 5 minutes)
3774   * winbind uid (deprecated in favor of 'idmap uid')
3775   * winbind gid (deprecated in favor of 'idmap gid')
3778 Databases
3779 ---------
3781 This section contains brief descriptions of any new databases 
3782 introduced in Samba 3.0.  Please remember to backup your existing 
3783 ${lock directory}/*tdb before upgrading to Samba 3.0.  Samba will 
3784 upgrade databases as they are opened (if necessary), but downgrading 
3785 from 3.0 to 2.2 is an unsupported path.
3787 Name                    Description                             Backup?
3788 ----                    -----------                             -------
3789 account_policy          User policy settings                    yes
3790 gencache                Generic caching db                      no
3791 group_mapping           Mapping table from Windows              yes
3792                         groups/SID to unix groups        
3793 winbindd_idmap          ID map table from SIDS to UNIX          yes
3794                         uids/gids.
3795 namecache               Name resolution cache entries           no
3796 netsamlogon_cache       Cache of NET_USER_INFO_3 structure      no
3797                         returned as part of a successful
3798                         net_sam_logon request 
3799 printing/*.tdb          Cached output from 'lpq                 no
3800                         command' created on a per print 
3801                         service basis
3802 registry                Read-only samba registry skeleton       no
3803                         that provides support for exporting
3804                         various db tables via the winreg RPCs
3807 Changes in Behavior
3808 -------------------
3810 The following issues are known changes in behavior between Samba 2.2 and 
3811 Samba 3.0 that may affect certain installations of Samba.
3813   1)  When operating as a member of a Windows domain, Samba 2.2 would 
3814       map any users authenticated by the remote DC to the 'guest account'
3815       if a uid could not be obtained via the getpwnam() call.  Samba 3.0
3816       rejects the connection as NT_STATUS_LOGON_FAILURE.  There is no 
3817       current work around to re-establish the 2.2 behavior.
3818       
3819   2)  When adding machines to a Samba 2.2 controlled domain, the 
3820       'add user script' was used to create the UNIX identity of the 
3821       machine trust account.  Samba 3.0 introduces a new 'add machine 
3822       script' that must be specified for this purpose.  Samba 3.0 will
3823       not fall back to using the 'add user script' in the absence of 
3824       an 'add machine script'
3825   
3827 ######################################################################
3828 Passdb Backends and Authentication
3829 ##################################
3831 There have been a few new changes that Samba administrators should be
3832 aware of when moving to Samba 3.0.
3834   1) encrypted passwords have been enabled by default in order to 
3835      inter-operate better with out-of-the-box Windows client 
3836      installations.  This does mean that either (a) a samba account
3837      must be created for each user, or (b) 'encrypt passwords = no'
3838      must be explicitly defined in smb.conf.
3839     
3840   2) Inclusion of new 'security = ads' option for integration 
3841      with an Active Directory domain using the native Windows
3842      Kerberos 5 and LDAP protocols.
3844      MIT kerberos 1.3.1 supports the ARCFOUR-HMAC-MD5 encryption 
3845      type which is neccessary for servers on which the 
3846      administrator password has not been changed, or kerberos-enabled 
3847      SMB connections to servers that require Kerberos SMB signing.
3848      Besides this one difference, either MIT or Heimdal Kerberos
3849      distributions are usable by Samba 3.0.
3850      
3852 Samba 3.0 also includes the possibility of setting up chains
3853 of authentication methods (auth methods) and account storage 
3854 backends (passdb backend).  Please refer to the smb.conf(5) 
3855 man page for details.  While both parameters assume sane default 
3856 values, it is likely that you will need to understand what the 
3857 values actually mean in order to ensure Samba operates correctly.
3859 The recommended passdb backends at this time are
3861   * smbpasswd - 2.2 compatible flat file format
3862   * tdbsam - attribute rich database intended as an smbpasswd
3863     replacement for stand alone servers
3864   * ldapsam - attribute rich account storage and retrieval 
3865     backend utilizing an LDAP directory.  
3866   * ldapsam_compat - a 2.2 backward compatible LDAP account 
3867     backend
3868     
3869 Certain functions of the smbpasswd(8) tool have been split between the 
3870 new smbpasswd(8) utility, the net(8) tool, and the new pdbedit(8) 
3871 utility.  See the respective man pages for details.
3872     
3873      
3874 ######################################################################
3875 LDAP
3876 ####
3878 This section outlines the new features affecting Samba / LDAP 
3879 integration.
3881 New Schema
3882 ----------
3883   
3884 A new object class (sambaSamAccount) has been introduced to replace 
3885 the old sambaAccount.  This change aids us in the renaming of 
3886 attributes to prevent clashes with attributes from other vendors.  
3887 There is a conversion script (examples/LDAP/convertSambaAccount) to 
3888 modify and LDIF file to the new schema.
3889   
3890 Example:
3891   
3892   $ ldapsearch .... -b "ou=people,dc=..." > sambaAcct.ldif
3893   $ convertSambaAccount --sid=<Domain SID> \
3894     --input=sambaAcct.ldif --output=sambaSamAcct.ldif \
3895     --changetype=[modify|add]
3896         
3897 The <DOM SID> can be obtained by running 'net getlocalsid 
3898 <DOMAINNAME>' on the Samba PDC as root.  The changetype determines 
3899 the format of the generated LDIF output--either create new entries 
3900 or modify existing entries.
3901     
3902 The old sambaAccount schema may still be used by specifying the 
3903 "ldapsam_compat" passdb backend.  However, the sambaAccount and
3904 associated attributes have been moved to the historical section of
3905 the schema file and must be uncommented before use if needed.
3906 The 2.2 object class declaration for a sambaAccount has not changed
3907 in the 3.0 samba.schema file. 
3908   
3909 Other new object classes and their uses include:
3910   
3911   * sambaDomain - domain information used to allocate rids 
3912     for users and groups as necessary.  The attributes are added
3913     in 'ldap suffix' directory entry automatically if 
3914     an idmap uid/gid range has been set and the 'ldapsam'
3915     passdb backend has been selected.
3916       
3917   * sambaGroupMapping - an object representing the 
3918     relationship between a posixGroup and a Windows
3919     group/SID.  These entries are stored in the 'ldap 
3920     group suffix' and managed by the 'net groupmap' command.
3921     
3922   * sambaUnixIdPool - created in the 'ldap idmap suffix' entry 
3923     automatically and contains the next available 'idmap uid' and 
3924     'idmap gid'
3925     
3926   * sambaIdmapEntry - object storing a mapping between a 
3927     SID and a UNIX uid/gid.  These objects are created by the 
3928     idmap_ldap module as needed.
3930   * sambaSidEntry - object representing a SID alone, as a Structural
3931     class on which to build the sambaIdmapEntry.
3933     
3934 New Suffix for Searching
3935 ------------------------
3936   
3937 The following new smb.conf parameters have been added to aid in directing
3938 certain LDAP queries when 'passdb backend = ldapsam://...' has been
3939 specified.
3941   * ldap suffix         - used to search for user and computer accounts
3942   * ldap user suffix    - used to store user accounts
3943   * ldap machine suffix - used to store machine trust accounts
3944   * ldap group suffix   - location of posixGroup/sambaGroupMapping entries
3945   * ldap idmap suffix   - location of sambaIdmapEntry objects
3947 If an 'ldap suffix' is defined, it will be appended to all of the 
3948 remaining sub-suffix parameters.  In this case, the order of the suffix
3949 listings in smb.conf is important.  Always place the 'ldap suffix' first
3950 in the list.  
3952 Due to a limitation in Samba's smb.conf parsing, you should not surround 
3953 the DN's with quotation marks.
3956 IdMap LDAP support
3957 ------------------
3959 Samba 3.0 supports an ldap backend for the idmap subsystem.  The 
3960 following options would inform Samba that the idmap table should be
3961 stored on the directory server onterose in the "ou=idmap,dc=plainjoe,
3962 dc=org" partition.
3964  [global]
3965     ...
3966     idmap backend     = ldap:ldap://onterose/
3967     ldap idmap suffix = ou=idmap,dc=plainjoe,dc=org
3968     idmap uid         = 40000-50000
3969     idmap gid         = 40000-50000
3971 This configuration allows winbind installations on multiple servers to
3972 share a uid/gid number space, thus avoiding the interoperability problems
3973 with NFS that were present in Samba 2.2.
3974     
3977 ######################################################################
3978 Trust Relationships and a Samba Domain
3979 ######################################
3981 Samba 3.0.0beta2 is able to utilize winbindd as the means of 
3982 allocating uids and gids to trusted users and groups.  More
3983 information regarding Samba's support for establishing trust 
3984 relationships can be found in the Samba-HOWTO-Collection included
3985 in the docs/ directory of this release.
3987 First create your Samba PDC and ensure that everything is 
3988 working correctly before moving on the trusts.
3990 To establish Samba as the trusting domain (named SAMBA) from a Windows NT
3991 4.0 domain named WINDOWS:
3993   1) create the trust account for SAMBA in "User Manager for Domains"
3994   2) connect the trust from the Samba domain using
3995      'net rpc trustdom establish GLASS'
3997 To create a trustlationship with SAMBA as the trusted domain:
3999   1) create the initial trust account for GLASS using
4000      'smbpasswd -a -i GLASS'.  You may need to create a UNIX
4001      account for GLASS$ prior to this step (depending on your
4002      local configuration).
4003   2) connect the trust from a WINDOWS DC using "User Manager
4004      for Domains"
4006 Now join winbindd on the Samba PDC to the SAMBA domain using
4007 the normal steps for adding a Samba server to an NT4 domain:
4008 (note that smbd & nmbd must be running at this point)
4010    root# net rpc join -U root
4011    Password: <enter root password from smbpasswd file here>
4013 Start winbindd and test the join with 'wbinfo -t'.
4015 Now test the trust relationship by connecting to the SAMBA DC
4016 (e.g. POGO) as a user from the WINDOWS domain:
4018    $ smbclient //pogo/netlogon -U Administrator -W WINDOWS
4019    Password:
4021 Now connect to the WINDOWS DC (e.g. CRYSTAL) as a Samba user:
4023    $ smbclient //crystal/netlogon -U root -W WINDOWS
4024    Password:
4026 ######################################################################
4027 Changes in Winbind
4028 ##################
4030 Beginning with Samba3.0.0beta3, winbindd has been given new account
4031 manage functionality equivalent to the 'add user script' family of
4032 smb.conf parameters.  The idmap design has also been changed to 
4033 centralize control of foreign SID lookups and matching to UNIX 
4034 uids and gids.
4037 Brief Description of Changes
4038 ----------------------------
4040 1) The sid_to_uid() family of functions (smbd/uid.c) have been 
4041    reverted to the 2.2.x design.  This means that when resolving a 
4042    SID to a UID or similar mapping:
4044         a) First consult winbindd
4045         b) perform a local lookup only if winbindd fails to
4046            return a successful answer
4048    There are some variations to this, but these two rules generally
4049    apply.
4051 2) All idmap lookups have been moved into winbindd.  This means that
4052    a server must run winbindd (and support NSS) in order to achieve
4053    any mappings of SID to dynamically allocated UNIX ids.  This was
4054    a conscious design choice.
4056 3) New functions have been added to winbindd to emulate the 'add user 
4057    script' family of smbd functions without requiring that external
4058    scripts be defined.  This functionality is controlled by the 'winbind 
4059    enable local accounts' smb.conf parameter (enabled by default).
4061    However, this account management functionality is only supported 
4062    in a local tdb (winbindd_idmap.tdb).  If these new UNIX accounts 
4063    must be shared among multiple Samba servers (such as a PDC and BDCs), 
4064    it will be necessary to define your own 'add user script', et. al.
4065    programs that place the accounts/groups in some form of directory
4066    such as NIS or LDAP.  This requirement was deemed beyond the scope
4067    of winbind's account management functions.  Solutions for 
4068    distributing UNIX system information have been deployed and tested 
4069    for many years.  We saw no need to reinvent the wheel.
4071 4) A member of a Samba controlled domain running winbindd is now able 
4072    to map domain users directly onto existing UNIX accounts while still
4073    automatically creating accounts for trusted users and groups.  This
4074    behavior is controlled by the 'winbind trusted domains only' smb.conf
4075    parameter (disabled by default to provide 2.2.x winbind behavior).
4077 5) Group mapping support is wrapped in the local_XX_to_XX() functions
4078    in smbd/uid.c.  The reason that group mappings are not included
4079    in winbindd is because the purpose of Samba's group map is to
4080    match any Windows SID with an existing UNIX group.  These UNIX
4081    groups can be created by winbindd (see next section), but the
4082    SID<->gid mapping is retreived by smbd, not winbindd.
4085 Examples
4086 --------
4088 * security = server running winbindd to allocate accounts on demand
4090 * Samba PDC running winbindd to handle the automatic creation of UNIX
4091   identities for machine trust accounts
4093 * Automtically creating UNIX user and groups when migrating a Windows NT
4094   4.0 PDC to a Samba PDC.  Winbindd must be running when executing
4095   'net rpc vampire' for this to work.
4097    
4098 ######################################################################
4099 Known Issues
4100 ############
4102 * There are several bugs currently logged against the 3.0 codebase
4103   that affect the use of NT 4.0 GUI domain management tools when run
4104   against a Samba 3.0 PDC.  This bugs should be released in an early 
4105   3.0.x release.
4107 Please refer to https://bugzilla.samba.org/ for a current list of bugs 
4108 filed against the Samba 3.0 codebase.
4111 ######################################################################
4112 Reporting bugs & Development Discussion
4113 #######################################
4115 Please discuss this release on the samba-technical mailing list or by
4116 joining the #samba-technical IRC channel on irc.freenode.net.
4118 If you do report problems then please try to send high quality
4119 feedback. If you don't provide vital information to help us track down
4120 the problem then you will probably be ignored.  
4122 A new bugzilla installation has been established to help support the 
4123 Samba 3.0 community of users.  This server, located at 
4124 https://bugzilla.samba.org/, has replaced the older jitterbug server 
4125 previously located at http://bugs.samba.org/.