Started to canonicalize our handling of uid -> sid code in order to
authorJeremy Allison <jra@samba.org>
Wed, 2 Aug 2000 02:11:55 +0000 (02:11 +0000)
committerJeremy Allison <jra@samba.org>
Wed, 2 Aug 2000 02:11:55 +0000 (02:11 +0000)
commit17dcd9a834fc915fb1ff2d8042a23000eeb7acfa
tree18a9a8cfa2883baf163da29265fd08b8a3b81c9f
parent7f36df301e28dc8ca0e5bfadc109d6e907d9ba2b
Started to canonicalize our handling of uid -> sid code in order to
get ready and fix se_access_check().
Added cannonical lookup_name(), lookup_sid(), uid_to_sid(), gid_to_sid()
functions that look via winbind first the fall back on local lookup.

All Samba should use these rather than trying to call winbindd code
directly.

Added NT_USER_TOKEN struct in user_struct, contains list of NT sids
associated with this user.

se_access_check() should use this (cached) value rather than attempting
to do the same thing itself when given a uid/gid pair.

More work needs to be done to preserve these things accross security
context changes (especially with the tricky pipe problem) but I'm
beginning to see how this will be done..... probably by registering
a new vuid for an authenticated RPC pipe and not treating the
pipe calls specially.

More thoughts needed - but we're almost there...

Jeremy.
(This used to be commit 5e5cc6efe2e4687be59085f562caea1e2e05d0a8)
13 files changed:
source3/include/proto.h
source3/include/smb.h
source3/lib/util_seaccess.c
source3/nsswitch/wb_client.c
source3/passdb/passdb.c
source3/rpc_server/srv_lsa.c
source3/rpc_server/srv_samr.c
source3/smbd/password.c
source3/smbd/process.c
source3/smbd/sec_ctx.c
source3/smbd/service.c
source3/smbd/uid.c
source3/smbd/unix_acls.c