Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/winsup
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2016-03-23 19:51:03 +0300
committerCorinna Vinschen <corinna@vinschen.de>2016-03-23 19:51:03 +0300
commit59b3bd2aa6c6e3ab5d8b7af2bc6490c0ed0d9a8c (patch)
treeb048caec98fdbd484faad994dc70047848a2482a /winsup
parentfc504453fd98a03c81d796cff179ebf6262d107c (diff)
Only allow enabled groups as primary group
So far any group in the user's token could be used as primary group. Windows doesn't check if the primary group is enabled or not, it just has no meaning. From a POSIXy point of view it can lead to weird results though. * uinfo.cc (check_token_membership): New static function. (internal_getlogin): Only allow enabled groups as primary group. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup')
-rw-r--r--winsup/cygwin/uinfo.cc51
1 files changed, 45 insertions, 6 deletions
diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc
index 86b010150..d966dd169 100644
--- a/winsup/cygwin/uinfo.cc
+++ b/winsup/cygwin/uinfo.cc
@@ -113,6 +113,38 @@ cygheap_user::init ()
system_printf("Cannot get dacl, %E");
}
+/* Check if sid is an enabled SID in the token group list of the current
+ effective token. Note that we only check for ENABLED groups, not for
+ INTEGRITY_ENABLED. The latter just doesn't make sense in our scenario
+ of using the group as primary group.
+
+ This needs careful checking should we use check_token_membership in other
+ circumstances. */
+static bool
+check_token_membership (PSID sid)
+{
+ NTSTATUS status;
+ ULONG size;
+ tmp_pathbuf tp;
+ PTOKEN_GROUPS groups = (PTOKEN_GROUPS) tp.w_get ();
+
+ /* If impersonated, use impersonation token. */
+ HANDLE tok = cygheap->user.issetuid () ? cygheap->user.primary_token ()
+ : hProcToken;
+ status = NtQueryInformationToken (tok, TokenGroups, groups, 2 * NT_MAX_PATH,
+ &size);
+ if (!NT_SUCCESS (status))
+ debug_printf ("NtQueryInformationToken (TokenGroups) %y", status);
+ else
+ {
+ for (DWORD pg = 0; pg < groups->GroupCount; ++pg)
+ if (RtlEqualSid (sid, groups->Groups[pg].Sid)
+ && (groups->Groups[pg].Attributes & SE_GROUP_ENABLED))
+ return true;
+ }
+ return false;
+}
+
void
internal_getlogin (cygheap_user &user)
{
@@ -148,16 +180,23 @@ internal_getlogin (cygheap_user &user)
disagree with gr_gid from the group file. Overwrite it. */
if ((grp2 = internal_getgrsid (gsid, &cldap)) && grp2 != grp)
myself->gid = pwd->pw_gid = grp2->gr_gid;
- /* Set primary group to the group in /etc/passwd. */
+ /* Set primary group to the group in /etc/passwd, *iff*
+ the group in /etc/passwd is in the token *and* enabled. */
if (gsid != user.groups.pgsid)
{
- NTSTATUS status = NtSetInformationToken (hProcToken,
- TokenPrimaryGroup,
- &gsid, sizeof gsid);
+ NTSTATUS status = STATUS_INVALID_PARAMETER;
+
+ if (check_token_membership (gsid))
+ {
+ status = NtSetInformationToken (hProcToken,
+ TokenPrimaryGroup,
+ &gsid, sizeof gsid);
+ if (!NT_SUCCESS (status))
+ debug_printf ("NtSetInformationToken "
+ "(TokenPrimaryGroup), %y", status);
+ }
if (!NT_SUCCESS (status))
{
- debug_printf ("NtSetInformationToken (TokenPrimaryGroup),"
- " %y", status);
/* Revert the primary group setting and override the
setting in the passwd entry. */
if (pgrp)