Now ACL inheritance flags are working, add test_inheritance_flags() back into raw...
[Samba/gebeck_regimport.git] / WHATSNEW.txt
blobd9f2333b481ca6f08404305c61181b44e1e7e5b3
1 What's new in Samba 4.0 beta7
2 =============================
4 Samba 4.0 will be the next version of the Samba suite and incorporates
5 all the technology found in both the Samba4 alpha series and the
6 stable 3.x series. The primary additional features over Samba 3.6 are
7 support for the Active Directory logon protocols used by Windows 2000
8 and above.
11 WARNINGS
12 ========
14 Samba 4.0 beta7 is not a final Samba release, however we are now making
15 good progress towards a Samba 4.0 release.  However, this is expected to be the
16 last beta release before we start on our release candidate series.
18 This release contains the best of all of Samba's
19 technology parts, both a file server (that you can reasonably expect
20 to upgrade existing Samba 3.x releases to) and the AD domain
21 controller work previously known as 'samba4'.
23 Samba 4.0 is subjected to an awesome battery of tests on an automated
24 basis, we have found Samba 4.0 to be very stable in it's behaviour.
25 However, as with all our pre-releases we still recommend against
26 upgrading production servers from Samba 3.x release to Samba 4.0 beta
27 at this stage.
29 If you are upgrading, or looking to develop, test or deploy Samba 4.0
30 beta releases, you should backup all configuration and data.
33 UPGRADING
34 =========
36 Users upgrading from Samba 3.x domain controllers and wanting to use
37 Samba 4.0 as an AD DC should use the 'samba-tool domain
38 classicupgrade' command.  See the wiki for more details:
39 https://wiki.samba.org/index.php/Samba4/samba3upgrade/HOWTO 
41 Users upgrading from Samba 4.0 alpha and beta releases since alpha15
42 should run 'samba-tool dbcheck --cross-ncs --fix' before re-starting
43 Samba.  Users upgrading from earlier alpha releases should contact the
44 team for advice.
46 Users upgrading an AD DC from any previous release should run
47 'samba-tool ntacl sysvolreset' to re-sync ACLs on the sysvol share
48 with those matching the GPOs in LDAP and the defaults from an initial
49 provision.  This will set an underlying POSIX ACL if required (eg not
50 using the NTVFS file server).
52 NEW FEATURES
53 ============
55 Samba 4.0 beta supports the server-side of the Active Directory logon
56 environment used by Windows 2000 and later, so we can do full domain
57 join and domain logon operations with these clients.
59 Our Domain Controller (DC) implementation includes our own built-in
60 LDAP server and Kerberos Key Distribution Center (KDC) as well as the
61 Samba3-like logon services provided over CIFS.  We correctly generate
62 the infamous Kerberos PAC, and include it with the Kerberos tickets we
63 issue.
65 Samba 4.0 beta ships with two distinct file servers.  We now use the
66 file server from the Samba 3.x series 'smbd' for all file serving by
67 default.
69 Samba 4.0 also ships with the 'NTVFS' file server.  This file server
70 is what was used in all previous alpha releases of Samba 4.0, and is
71 tuned to match the requirements of an AD domain controller.  We
72 continue to support this, not only to provide continuity to
73 installations that have deployed it as part of an AD DC, but also as a
74 running example of the NT-FSA architecture we expect to move smbd to in
75 the longer term.  
77 For pure file server work, the binaries users would expect from that
78 series (nmbd, winbindd, smbpasswd) continue to be available.  When
79 running an AD DC, you only need to run 'samba' (not
80 nmbd/smbd/winbind), as the required services are co-ordinated by this
81 master binary.
83 As DNS is an integral part of Active Directory, we also provide a DNS
84 solution, using the BIND DLZ mechanism in versions 9.8 and 9.9.
85 During the provision, a configuration file will be generated for bind
86 to make it use this plugin.  We also have a project to provide a
87 minimal internal DNS server from within the Samba process, for easier
88 'out of the box' configuration.  Note however that this is not yet
89 complete (pending addition of secure DNS update support).
91 To provide accurate timestamps to Windows clients, we integrate with
92 the NTP project to provide secured NTP replies.  To use you need to
93 start ntpd and configure it with the 'restrict ... ms-sntp' and
94 ntpsigndsocket options.
96 Finally, a new scripting interface has been added to Samba 4, allowing
97 Python programs to interface to Samba's internals, and many tools and
98 internal workings of the DC code is now implemented in python.
101 CHANGES SINCE beta6
102 =====================
104 For a list of changes since beta6, please see the git log.
106 $ git clone git://git.samba.org/samba.git
107 $ cd samba.git
108 $ git log samba-4.0.0beta6..samba-4.0.0beta7
110 Some major user-visible changes include:
112 - ACLs are now set during provision at the POSIX layer for the sysvol
113   share.  This allows group policies to be modified by Domain
114   Administrators (Policy Administrators) that are not the actual
115   Administrator user.
117 - A number of verified fixes for expanding memory use across the AD
118   domain controller, including in the Bind9 DLZ module.
120 - A fix for bug #9097 (the winbind in the AD DC would lock up under
121   parallel requests).
123 - wbinfo --ping-dc now returns helpful information on what failed and
124   against which DC it failed
126 - SMB3 encryption support
128 - New 'samba-tool ntacl' commands:
129   - samba-tool ntacl sysvolreset
130   - samba-tool ntacl sysvolcheck
132 Less visible, but important changes under the hood include:
134 - Continued work to support SMB2 and SMB3
136 - Continued work to use async IO to improve file server performance.
138 - Patches to ensure that talloc_tos() and talloc_stackframe() are
139   always used correctly.
141 - We can now test the implementation of NT -> POSIX ACL mapping in a
142   unit test with VFS bindings exposing both to python.  We also store
143   the posix ACL in a tdb during make test, allowing testing of this
144   feature on all platforms, regardless of local FS settings.
146 - Python bindings for the source3 async libsmb library (for use in testing)
148 KNOWN ISSUES
149 ============
151 - This release makes the s3fs file server the default, as this is the
152   file server combination we will use for the Samba 4.0 release.
154 - For similar reasons, sites with ACLs stored by the ntvfs file server
155   may wish to continue to use that file server implementation, as a
156   posix ACL will similarly not be set in this case.
158 - Replication of DNS data from one AD server to another may not work.
159   The DNS data used by the internal DNS server and bind9_dlz is stored
160   in an application partition in our directory.  The replication of
161   this partition is not yet reliable.
163 - Replication may fail on FreeBSD due to getaddrinfo() rejecting names
164   containing _.  A workaround will be in a future next beta.
166 - upgradeprovision should not be run when upgrading to this release
167   from a recent release.  No important database format changes have
168   been made since alpha16.  
170 - Installation on systems without a system iconv (and developer
171   headers at compile time) is known to cause errors when dealing with
172   non-ASCII characters.
174 - Domain member support in the 'samba' binary is in it's infancy, and
175   is not comparable to the support found in winbindd.  As such, do not
176   use the 'samba' binary (provided for the AD server) on a member
177   server.
179 - There is no NetBIOS browsing support (network neighbourhood)
180   available for the AD domain controller.  (Support in nmbd and smbd
181   for classic domains and member/standalone servers is unchanged).
183 - Clock Synchronisation is critical.  Many 'wrong password' errors are
184   actually due to Kerberos objecting to a clock skew between client
185   and server.  (The NTP work in the previous alphas are partly to assist
186   with this problem).
188 - The DRS replication code may fail.  Please contact the team if you
189   experience issues with DRS replication, as we have fixed many issues
190   here in response to feedback from our production users. 
193 RUNNING Samba 4.0 as an AD DC
194 =============================
196 A short guide to setting up Samba 4 as an AD DC can be found on the wiki:
198   http://wiki.samba.org/index.php/Samba4/HOWTO
200 #######################################
201 Reporting bugs & Development Discussion
202 #######################################
204 Please discuss this release on the samba-technical mailing list or by
205 joining the #samba-technical IRC channel on irc.freenode.net.
207 If you do report problems then please try to send high quality
208 feedback. If you don't provide vital information to help us track down
209 the problem then you will probably be ignored.  All bug reports should
210 be filed under the Samba 4.0 product in the project's Bugzilla
211 database (https://bugzilla.samba.org/).
214 ======================================================================
215 == Our Code, Our Bugs, Our Responsibility.
216 == The Samba Team
217 ======================================================================