Fix bug 5696. The problem was when smbd
commitee5ab3a5f680bb11d5c299396f0f57c8fb305716
authorJeremy Allison <jra@samba.org>
Sun, 17 Aug 2008 02:25:53 +0000 (16 19:25 -0700)
committerKarolin Seeger <kseeger@samba.org>
Tue, 19 Aug 2008 09:33:24 +0000 (19 11:33 +0200)
tree1375e6a2b8b291cefbe623945915e1d44bebc821
parent9f7d82ff330973992e63df01cfd47362a3d74634
Fix bug 5696. The problem was when smbd
was asking for a winbindd name to SID lookup of
"Unix Group\name" where "name" was also a valid username,
the winbindd passdb lookup of that name was losing the
domain string info before calling lookup name (ie. lookup_name()
was being called with just the string "name", not the
full string "Unix Group\name").

The passdb backend of winbindd has to cope with
not only names from it's own global SAM domain,
but it does lookups for BUILTIN and "Unix User"
and "Unix Group" also, so making it guess by
losing the domain string is "A Bad Idea" (tm) :-).

Note that as winbind globally calls winbind_off()
at startup, it's safe for winbind to call sys_getgrnam()
to do the "Unix Group" lookup from inside lookup_name().

Jeremy.
(cherry picked from commit 99d9bfe60d219f6ef09c9a6967896867a86b8a0e)
source/winbindd/winbindd_passdb.c