Enabled domain groups to be added to builtin groups at domain join time
commit097b27dbcc1339db174c50e69767d171794d3603
authorTim Prouty <tim.prouty@isilon.com>
Thu, 24 Jul 2008 03:50:21 +0000 (23 20:50 -0700)
committerJeremy Allison <jra@samba.org>
Wed, 30 Jul 2008 21:06:36 +0000 (30 14:06 -0700)
tree06ac85645e1eb4554deb65a9bcebc1210cfb8d4a
parentbbb02aa8e925774532376b6a6218a4cbbb708c38
Enabled domain groups to be added to builtin groups at domain join time

Previously this was done at token creation time if the Administrators and Users
builtins hadn't been created yet.  A major drawback to this approach is that if
a customer is joined to a domain and decides they want to join a different
domain, the domain groups from this new domain will not be added to the
builtins.

It would be ideal if these groups could be added exclusively at domain join
time, but we can't rely solely on that because there are cases where winbindd
must be running to allocate new gids for the builtins.  In the future if there
is a way to allocate gids for builtins without running winbindd, this code
can be removed from create_local_nt_token.

- Made create_builtin_users and create_builtin_administrators non-static so
they can be called from libnet
- Added a new function to libnet_join that will make a best effort to add
domain administrators and domain users to BUILTIN\Administrators and
BUILTIN\Users, respectively.  If the builtins don't exist yet, winbindd must be
running to allocate new gids, but if the builtins already exist, the domain
groups will be added even if winbindd is not running.  In the case of a
failure the error will be logged, but the join will not be failed.
- Plumbed libnet_join_add_dom_rids_to_builtins into the join post processing.
(This used to be commit e92faf5996cadac480deb60a4f6232eea90b00f6)
source3/auth/token_util.c
source3/include/proto.h
source3/libnet/libnet_join.c