2000-02-17 20:38:33 +01:00
|
|
|
/* uinfo.cc: user info (uid, gid, etc...)
|
|
|
|
|
|
|
|
Copyright 1996, 1997, 1998 Cygnus Solutions.
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2000-08-02 18:28:18 +02:00
|
|
|
#include <pwd.h>
|
2000-07-29 18:24:59 +02:00
|
|
|
#include <unistd.h>
|
2000-07-27 19:30:51 +02:00
|
|
|
#include <winnls.h>
|
2001-04-30 20:21:48 +02:00
|
|
|
#include <wininet.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <utmp.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <lm.h>
|
2000-11-16 10:53:26 +01:00
|
|
|
#include <sys/cygwin.h>
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "sync.h"
|
|
|
|
#include "sigproc.h"
|
2000-08-12 07:35:42 +02:00
|
|
|
#include "pinfo.h"
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2001-04-18 23:10:15 +02:00
|
|
|
#include "fhandler.h"
|
|
|
|
#include "dtable.h"
|
2000-11-15 01:13:09 +01:00
|
|
|
#include "cygheap.h"
|
2000-09-08 04:56:55 +02:00
|
|
|
#include "registry.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2001-04-25 14:54:21 +02:00
|
|
|
struct passwd *
|
2000-11-15 22:14:27 +01:00
|
|
|
internal_getlogin (cygheap_user &user)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-04-30 20:21:48 +02:00
|
|
|
char username[UNLEN + 1];
|
2001-06-09 23:25:55 +02:00
|
|
|
DWORD username_len = UNLEN + 1;
|
2001-04-25 14:54:21 +02:00
|
|
|
struct passwd *pw = NULL;
|
2000-11-15 01:13:09 +01:00
|
|
|
|
2001-06-09 23:25:55 +02:00
|
|
|
if (!GetUserName (username, &username_len))
|
* fork.cc (fork): Eliminate superfluous call to getuid().
* security.h: New define `NO_SID'. Remove declarations of functions
moved to methods into class cygsid.
(class cygsid): Declare new methods `getfromstr', `get_sid',
`getfrompw', `getfromgr', `get_rid', `get_uid', `get_gid', `string'
and new constructors and operators =, == and !=.
Declare new global cygsids `well_known_XXX_sid' substituting the
corresponding `get_XXX_sid' functions. Remove declarations of
these functions.
* sec_helper.cc (well_known_admin_sid): New global variable.
(well_known_system_sid): Ditto
(well_known_creator_owner_sid): Ditto
(well_known_world_sid): Ditto
(cygsid::string): New method, substituting `convert_sid_to_string_sid'.
(cygsid::get_sid): New method, substituting `get_sid'.
(cygsid::getfromstr): New method, substituting
`convert_string_sid_to_sid'.
(cygsid::getfrompw): New method, substituting `get_pw_sid'.
(cygsid::getfromgr): New method, substituting `get_gr_sid'.
(cygsid::get_id): New method, substituting `get_id_from_sid'.
(get_admin_sid): Eliminated.
(get_system_sid): Ditto.
(get_creator_owner_sid): Ditto.
(get_world_sid): Ditto.
* grp.cc: Use new cygsid methods and well known sids throughout.
* registry.cc: Ditto.
* sec_acl.cc: Ditto.
* security.cc: Ditto.
* shared.cc: Ditto.
* syscalls.cc (seteuid): Ditto. Eliminate redundant conditional.
* uinfo.cc (internal_getlogin): Ditto.
* spawn.cc (spawn_guts) Revert previous patch.
2001-05-15 21:23:31 +02:00
|
|
|
user.set_name ("unknown");
|
|
|
|
else
|
|
|
|
user.set_name (username);
|
2001-06-09 23:25:55 +02:00
|
|
|
debug_printf ("GetUserName() = %s", user.name ());
|
2001-01-28 06:51:15 +01:00
|
|
|
|
2001-08-04 23:10:52 +02:00
|
|
|
if (iswinnt)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-06-09 23:25:55 +02:00
|
|
|
LPWKSTA_USER_INFO_1 wui;
|
|
|
|
NET_API_STATUS ret;
|
|
|
|
char buf[512];
|
|
|
|
char *env;
|
|
|
|
|
|
|
|
user.set_logsrv (NULL);
|
|
|
|
/* First trying to get logon info from environment */
|
|
|
|
if ((env = getenv ("USERNAME")) != NULL)
|
|
|
|
user.set_name (env);
|
|
|
|
if ((env = getenv ("USERDOMAIN")) != NULL)
|
|
|
|
user.set_domain (env);
|
|
|
|
if ((env = getenv ("LOGONSERVER")) != NULL)
|
|
|
|
user.set_logsrv (env + 2); /* filter leading double backslashes */
|
|
|
|
if (user.name () && user.domain ())
|
|
|
|
debug_printf ("User: %s, Domain: %s, Logon Server: %s",
|
|
|
|
user.name (), user.domain (), user.logsrv ());
|
|
|
|
else if (!(ret = NetWkstaUserGetInfo (NULL, 1, (LPBYTE *)&wui)))
|
2001-05-29 22:43:40 +02:00
|
|
|
{
|
2001-06-09 23:25:55 +02:00
|
|
|
sys_wcstombs (buf, wui->wkui1_username, UNLEN + 1);
|
|
|
|
user.set_name (buf);
|
|
|
|
sys_wcstombs (buf, wui->wkui1_logon_server,
|
2001-09-07 23:32:07 +02:00
|
|
|
INTERNET_MAX_HOST_NAME_LENGTH + 1);
|
2001-06-09 23:25:55 +02:00
|
|
|
user.set_logsrv (buf);
|
|
|
|
sys_wcstombs (buf, wui->wkui1_logon_domain,
|
|
|
|
INTERNET_MAX_HOST_NAME_LENGTH + 1);
|
|
|
|
user.set_domain (buf);
|
|
|
|
NetApiBufferFree (wui);
|
2001-09-07 23:32:07 +02:00
|
|
|
}
|
2001-06-09 23:25:55 +02:00
|
|
|
if (!user.logsrv () && get_logon_server_and_user_domain (buf, NULL))
|
|
|
|
{
|
|
|
|
user.set_logsrv (buf + 2);
|
|
|
|
setenv ("LOGONSERVER", buf, 1);
|
* autoload.cc: Add load statements for `LookupAccountNameW',
`LsaClose', `LsaEnumerateAccountRights', `LsaFreeMemory',
`LsaOpenPolicy', `LsaQueryInformationPolicy', `NetLocalGroupEnum',
`NetLocalGroupGetMembers', `NetServerEnum', `NetUserGetGroups' and
`NtCreateToken'.
* ntdll.h: Add declaration for `NtCreateToken'.
* sec_helper.cc: Add `well_known_local_sid', `well_known_dialup_sid',
`well_known_network_sid', `well_known_batch_sid',
`well_known_interactive_sid', `well_known_service_sid' and
`well_known_authenticated_users_sid'.
(cygsid::string): Define as const method.
(cygsid::get_sid): Set psid to NO_SID on error.
(cygsid::getfromstr): Ditto.
(cygsid::getfrompw): Simplify.
(cygsid::getfromgr): Check for gr == NULL.
(legal_sid_type): Move to security.h.
(set_process_privilege): Return -1 on error, otherwise 0 or 1 related
to previous privilege setting.
* security.cc (extract_nt_dom_user): Remove `static'.
(lsa2wchar): New function.
(open_local_policy): Ditto.
(close_local_policy): Ditto.
(get_lsa_srv_inf): Ditto.
(get_logon_server): Ditto.
(get_logon_server_and_user_domain): Ditto.
(get_user_groups): Ditto.
(is_group_member): Ditto.
(get_user_local_groups): Ditto.
(sid_in_token_groups): Ditto.
(get_user_primary_group): Ditto.
(get_group_sidlist): Ditto.
(get_system_priv_list): Ditto.
(get_priv_list): Ditto.
(get_dacl): Ditto.
(create_token): Ditto.
(subauth): Return immediately if SE_TCB_NAME can't be assigned.
Change all return statements in case of error to jumps to `out'
label. Add `out' label to support cleanup.
* security.h: Add extern declarations for `well_known_local_sid',
`well_known_dialup_sid', `well_known_network_sid',
`well_known_batch_sid', `well_known_interactive_sid',
`well_known_service_sid' and `well_known_authenticated_users_sid'.
Add extern declarations for functions `create_token',
`extract_nt_dom_user' and `get_logon_server_and_user_domain'.
(class cygsid): Add method `assign'. Change operator= to call new
`assign' method. Add `debug_print' method.
(class cygsidlist): New class.
(legal_sid_type): Moved from sec_helper.cc to here.
* spawn.cc (spawn_guts) Revert reversion of previous patch.
Call `RevertToSelf' and `ImpersonateLoggedOnUser' instead of `seteuid'
again.
* syscalls.cc (seteuid): Rearranged. Call `create_token' now when
needed. Call `subauth' if `create_token' fails. Try setting token
owner and primary group only if token was not explicitely created
by `create_token'.
* uinfo.cc (internal_getlogin): Try harder to generate correct user
information. Especially don't trust return value of `GetUserName'.
2001-05-20 10:10:47 +02:00
|
|
|
}
|
2001-06-09 23:25:55 +02:00
|
|
|
LPUSER_INFO_3 ui = NULL;
|
2001-05-29 22:43:40 +02:00
|
|
|
WCHAR wuser[UNLEN + 1];
|
2001-06-09 23:25:55 +02:00
|
|
|
WCHAR wlogsrv[INTERNET_MAX_HOST_NAME_LENGTH + 3];
|
|
|
|
|
|
|
|
/* HOMEDRIVE and HOMEPATH are wrong most of the time, too,
|
|
|
|
after changing user context! */
|
2001-05-29 22:43:40 +02:00
|
|
|
sys_mbstowcs (wuser, user.name (), UNLEN + 1);
|
2001-07-09 11:05:17 +02:00
|
|
|
wlogsrv[0] = '\0';
|
|
|
|
if (user.logsrv ())
|
2001-09-07 23:32:07 +02:00
|
|
|
{
|
2001-07-09 11:05:17 +02:00
|
|
|
strcat (strcpy (buf, "\\\\"), user.logsrv ());
|
|
|
|
sys_mbstowcs (wlogsrv, buf, INTERNET_MAX_HOST_NAME_LENGTH + 3);
|
|
|
|
}
|
2001-06-09 23:25:55 +02:00
|
|
|
if (!NetUserGetInfo (NULL, wuser, 3, (LPBYTE *)&ui)
|
2001-07-09 11:05:17 +02:00
|
|
|
|| (wlogsrv[0] && !NetUserGetInfo (wlogsrv, wuser, 3,(LPBYTE *)&ui)))
|
2000-09-03 06:16:35 +02:00
|
|
|
{
|
2001-05-29 22:43:40 +02:00
|
|
|
sys_wcstombs (buf, ui->usri3_home_dir, MAX_PATH);
|
|
|
|
if (!buf[0])
|
2000-09-03 06:16:35 +02:00
|
|
|
{
|
2001-05-29 22:43:40 +02:00
|
|
|
sys_wcstombs (buf, ui->usri3_home_dir_drive, MAX_PATH);
|
|
|
|
if (buf[0])
|
|
|
|
strcat (buf, "\\");
|
|
|
|
else
|
* autoload.cc: Add load statements for `LookupAccountNameW',
`LsaClose', `LsaEnumerateAccountRights', `LsaFreeMemory',
`LsaOpenPolicy', `LsaQueryInformationPolicy', `NetLocalGroupEnum',
`NetLocalGroupGetMembers', `NetServerEnum', `NetUserGetGroups' and
`NtCreateToken'.
* ntdll.h: Add declaration for `NtCreateToken'.
* sec_helper.cc: Add `well_known_local_sid', `well_known_dialup_sid',
`well_known_network_sid', `well_known_batch_sid',
`well_known_interactive_sid', `well_known_service_sid' and
`well_known_authenticated_users_sid'.
(cygsid::string): Define as const method.
(cygsid::get_sid): Set psid to NO_SID on error.
(cygsid::getfromstr): Ditto.
(cygsid::getfrompw): Simplify.
(cygsid::getfromgr): Check for gr == NULL.
(legal_sid_type): Move to security.h.
(set_process_privilege): Return -1 on error, otherwise 0 or 1 related
to previous privilege setting.
* security.cc (extract_nt_dom_user): Remove `static'.
(lsa2wchar): New function.
(open_local_policy): Ditto.
(close_local_policy): Ditto.
(get_lsa_srv_inf): Ditto.
(get_logon_server): Ditto.
(get_logon_server_and_user_domain): Ditto.
(get_user_groups): Ditto.
(is_group_member): Ditto.
(get_user_local_groups): Ditto.
(sid_in_token_groups): Ditto.
(get_user_primary_group): Ditto.
(get_group_sidlist): Ditto.
(get_system_priv_list): Ditto.
(get_priv_list): Ditto.
(get_dacl): Ditto.
(create_token): Ditto.
(subauth): Return immediately if SE_TCB_NAME can't be assigned.
Change all return statements in case of error to jumps to `out'
label. Add `out' label to support cleanup.
* security.h: Add extern declarations for `well_known_local_sid',
`well_known_dialup_sid', `well_known_network_sid',
`well_known_batch_sid', `well_known_interactive_sid',
`well_known_service_sid' and `well_known_authenticated_users_sid'.
Add extern declarations for functions `create_token',
`extract_nt_dom_user' and `get_logon_server_and_user_domain'.
(class cygsid): Add method `assign'. Change operator= to call new
`assign' method. Add `debug_print' method.
(class cygsidlist): New class.
(legal_sid_type): Moved from sec_helper.cc to here.
* spawn.cc (spawn_guts) Revert reversion of previous patch.
Call `RevertToSelf' and `ImpersonateLoggedOnUser' instead of `seteuid'
again.
* syscalls.cc (seteuid): Rearranged. Call `create_token' now when
needed. Call `subauth' if `create_token' fails. Try setting token
owner and primary group only if token was not explicitely created
by `create_token'.
* uinfo.cc (internal_getlogin): Try harder to generate correct user
information. Especially don't trust return value of `GetUserName'.
2001-05-20 10:10:47 +02:00
|
|
|
{
|
2001-06-09 23:25:55 +02:00
|
|
|
env = getenv ("SYSTEMDRIVE");
|
2001-05-29 22:43:40 +02:00
|
|
|
if (env && *env)
|
|
|
|
strcat (strcpy (buf, env), "\\");
|
* autoload.cc: Add load statements for `LookupAccountNameW',
`LsaClose', `LsaEnumerateAccountRights', `LsaFreeMemory',
`LsaOpenPolicy', `LsaQueryInformationPolicy', `NetLocalGroupEnum',
`NetLocalGroupGetMembers', `NetServerEnum', `NetUserGetGroups' and
`NtCreateToken'.
* ntdll.h: Add declaration for `NtCreateToken'.
* sec_helper.cc: Add `well_known_local_sid', `well_known_dialup_sid',
`well_known_network_sid', `well_known_batch_sid',
`well_known_interactive_sid', `well_known_service_sid' and
`well_known_authenticated_users_sid'.
(cygsid::string): Define as const method.
(cygsid::get_sid): Set psid to NO_SID on error.
(cygsid::getfromstr): Ditto.
(cygsid::getfrompw): Simplify.
(cygsid::getfromgr): Check for gr == NULL.
(legal_sid_type): Move to security.h.
(set_process_privilege): Return -1 on error, otherwise 0 or 1 related
to previous privilege setting.
* security.cc (extract_nt_dom_user): Remove `static'.
(lsa2wchar): New function.
(open_local_policy): Ditto.
(close_local_policy): Ditto.
(get_lsa_srv_inf): Ditto.
(get_logon_server): Ditto.
(get_logon_server_and_user_domain): Ditto.
(get_user_groups): Ditto.
(is_group_member): Ditto.
(get_user_local_groups): Ditto.
(sid_in_token_groups): Ditto.
(get_user_primary_group): Ditto.
(get_group_sidlist): Ditto.
(get_system_priv_list): Ditto.
(get_priv_list): Ditto.
(get_dacl): Ditto.
(create_token): Ditto.
(subauth): Return immediately if SE_TCB_NAME can't be assigned.
Change all return statements in case of error to jumps to `out'
label. Add `out' label to support cleanup.
* security.h: Add extern declarations for `well_known_local_sid',
`well_known_dialup_sid', `well_known_network_sid',
`well_known_batch_sid', `well_known_interactive_sid',
`well_known_service_sid' and `well_known_authenticated_users_sid'.
Add extern declarations for functions `create_token',
`extract_nt_dom_user' and `get_logon_server_and_user_domain'.
(class cygsid): Add method `assign'. Change operator= to call new
`assign' method. Add `debug_print' method.
(class cygsidlist): New class.
(legal_sid_type): Moved from sec_helper.cc to here.
* spawn.cc (spawn_guts) Revert reversion of previous patch.
Call `RevertToSelf' and `ImpersonateLoggedOnUser' instead of `seteuid'
again.
* syscalls.cc (seteuid): Rearranged. Call `create_token' now when
needed. Call `subauth' if `create_token' fails. Try setting token
owner and primary group only if token was not explicitely created
by `create_token'.
* uinfo.cc (internal_getlogin): Try harder to generate correct user
information. Especially don't trust return value of `GetUserName'.
2001-05-20 10:10:47 +02:00
|
|
|
else
|
2001-05-29 22:43:40 +02:00
|
|
|
GetSystemDirectoryA (buf, MAX_PATH);
|
* autoload.cc: Add load statements for `LookupAccountNameW',
`LsaClose', `LsaEnumerateAccountRights', `LsaFreeMemory',
`LsaOpenPolicy', `LsaQueryInformationPolicy', `NetLocalGroupEnum',
`NetLocalGroupGetMembers', `NetServerEnum', `NetUserGetGroups' and
`NtCreateToken'.
* ntdll.h: Add declaration for `NtCreateToken'.
* sec_helper.cc: Add `well_known_local_sid', `well_known_dialup_sid',
`well_known_network_sid', `well_known_batch_sid',
`well_known_interactive_sid', `well_known_service_sid' and
`well_known_authenticated_users_sid'.
(cygsid::string): Define as const method.
(cygsid::get_sid): Set psid to NO_SID on error.
(cygsid::getfromstr): Ditto.
(cygsid::getfrompw): Simplify.
(cygsid::getfromgr): Check for gr == NULL.
(legal_sid_type): Move to security.h.
(set_process_privilege): Return -1 on error, otherwise 0 or 1 related
to previous privilege setting.
* security.cc (extract_nt_dom_user): Remove `static'.
(lsa2wchar): New function.
(open_local_policy): Ditto.
(close_local_policy): Ditto.
(get_lsa_srv_inf): Ditto.
(get_logon_server): Ditto.
(get_logon_server_and_user_domain): Ditto.
(get_user_groups): Ditto.
(is_group_member): Ditto.
(get_user_local_groups): Ditto.
(sid_in_token_groups): Ditto.
(get_user_primary_group): Ditto.
(get_group_sidlist): Ditto.
(get_system_priv_list): Ditto.
(get_priv_list): Ditto.
(get_dacl): Ditto.
(create_token): Ditto.
(subauth): Return immediately if SE_TCB_NAME can't be assigned.
Change all return statements in case of error to jumps to `out'
label. Add `out' label to support cleanup.
* security.h: Add extern declarations for `well_known_local_sid',
`well_known_dialup_sid', `well_known_network_sid',
`well_known_batch_sid', `well_known_interactive_sid',
`well_known_service_sid' and `well_known_authenticated_users_sid'.
Add extern declarations for functions `create_token',
`extract_nt_dom_user' and `get_logon_server_and_user_domain'.
(class cygsid): Add method `assign'. Change operator= to call new
`assign' method. Add `debug_print' method.
(class cygsidlist): New class.
(legal_sid_type): Moved from sec_helper.cc to here.
* spawn.cc (spawn_guts) Revert reversion of previous patch.
Call `RevertToSelf' and `ImpersonateLoggedOnUser' instead of `seteuid'
again.
* syscalls.cc (seteuid): Rearranged. Call `create_token' now when
needed. Call `subauth' if `create_token' fails. Try setting token
owner and primary group only if token was not explicitely created
by `create_token'.
* uinfo.cc (internal_getlogin): Try harder to generate correct user
information. Especially don't trust return value of `GetUserName'.
2001-05-20 10:10:47 +02:00
|
|
|
}
|
2000-09-03 06:16:35 +02:00
|
|
|
}
|
2001-05-29 22:43:40 +02:00
|
|
|
setenv ("HOMEPATH", buf + 2, 1);
|
|
|
|
buf[2] = '\0';
|
|
|
|
setenv ("HOMEDRIVE", buf, 1);
|
|
|
|
NetApiBufferFree (ui);
|
|
|
|
}
|
2001-06-09 23:25:55 +02:00
|
|
|
debug_printf ("Domain: %s, Logon Server: %s, Windows Username: %s",
|
|
|
|
user.domain (), user.logsrv (), user.name ());
|
2001-04-25 11:43:25 +02:00
|
|
|
|
2001-06-09 23:25:55 +02:00
|
|
|
if (allow_ntsec)
|
2001-05-29 22:43:40 +02:00
|
|
|
{
|
2001-06-09 23:25:55 +02:00
|
|
|
HANDLE ptok = user.token; /* Which is INVALID_HANDLE_VALUE if no
|
|
|
|
impersonation took place. */
|
|
|
|
DWORD siz;
|
|
|
|
cygsid tu;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/* Try to get the SID either from already impersonated token
|
|
|
|
or from current process first. To differ that two cases is
|
|
|
|
important, because you can't rely on the user information
|
|
|
|
in a process token of a currently impersonated process. */
|
|
|
|
if (ptok == INVALID_HANDLE_VALUE
|
|
|
|
&& !OpenProcessToken (GetCurrentProcess (),
|
2001-09-07 23:32:07 +02:00
|
|
|
TOKEN_ADJUST_DEFAULT | TOKEN_QUERY,
|
2001-06-09 23:25:55 +02:00
|
|
|
&ptok))
|
|
|
|
debug_printf ("OpenProcessToken(): %E\n");
|
|
|
|
else if (!GetTokenInformation (ptok, TokenUser, &tu, sizeof tu, &siz))
|
|
|
|
debug_printf ("GetTokenInformation(): %E");
|
|
|
|
else if (!(ret = user.set_sid (tu)))
|
|
|
|
debug_printf ("Couldn't retrieve SID from access token!");
|
|
|
|
/* If that failes, try to get the SID from localhost. This can only
|
|
|
|
be done if a domain is given because there's a chance that a local
|
|
|
|
and a domain user may have the same name. */
|
|
|
|
if (!ret && user.domain ())
|
|
|
|
{
|
|
|
|
/* Concat DOMAIN\USERNAME for the next lookup */
|
|
|
|
strcat (strcat (strcpy (buf, user.domain ()), "\\"), user.name ());
|
|
|
|
if (!(ret = lookup_name (buf, NULL, user.sid ())))
|
|
|
|
debug_printf ("Couldn't retrieve SID locally!");
|
|
|
|
}
|
2001-04-25 11:43:25 +02:00
|
|
|
|
2001-06-09 23:25:55 +02:00
|
|
|
/* If that fails, too, as a last resort try to get the SID from
|
|
|
|
the logon server. */
|
|
|
|
if (!ret && !(ret = lookup_name (user.name (), user.logsrv (),
|
|
|
|
user.sid ())))
|
|
|
|
debug_printf ("Couldn't retrieve SID from '%s'!", user.logsrv ());
|
2001-05-29 22:43:40 +02:00
|
|
|
|
2001-06-09 23:25:55 +02:00
|
|
|
/* If we have a SID, try to get the corresponding Cygwin user name
|
|
|
|
which can be different from the Windows user name. */
|
|
|
|
cygsid gsid (NO_SID);
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
cygsid psid;
|
|
|
|
|
|
|
|
for (int pidx = 0; (pw = internal_getpwent (pidx)); ++pidx)
|
|
|
|
if (psid.getfrompw (pw) && EqualSid (user.sid (), psid))
|
|
|
|
{
|
|
|
|
user.set_name (pw->pw_name);
|
|
|
|
struct group *gr = getgrgid (pw->pw_gid);
|
|
|
|
if (gr)
|
|
|
|
if (!gsid.getfromgr (gr))
|
|
|
|
gsid = NO_SID;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strcasematch (user.name (), "SYSTEM")
|
|
|
|
&& user.domain () && user.logsrv ())
|
|
|
|
{
|
|
|
|
if (get_registry_hive_path (user.sid (), buf))
|
|
|
|
setenv ("USERPROFILE", buf, 1);
|
|
|
|
else
|
|
|
|
unsetenv ("USERPROFILE");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If this process is started from a non Cygwin process,
|
|
|
|
set token owner to the same value as token user and
|
|
|
|
primary group to the group which is set as primary group
|
|
|
|
in /etc/passwd. */
|
|
|
|
if (ptok != INVALID_HANDLE_VALUE && myself->ppid == 1)
|
|
|
|
{
|
|
|
|
if (!SetTokenInformation (ptok, TokenOwner, &tu, sizeof tu))
|
|
|
|
debug_printf ("SetTokenInformation(TokenOwner): %E");
|
|
|
|
if (gsid && !SetTokenInformation (ptok, TokenPrimaryGroup,
|
2001-09-07 23:32:07 +02:00
|
|
|
&gsid, sizeof gsid))
|
2001-06-09 23:25:55 +02:00
|
|
|
debug_printf ("SetTokenInformation(TokenPrimaryGroup): %E");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close token only if it's a result from OpenProcessToken(). */
|
|
|
|
if (ptok != INVALID_HANDLE_VALUE
|
|
|
|
&& user.token == INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (ptok);
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
2000-11-15 01:13:09 +01:00
|
|
|
debug_printf ("Cygwins Username: %s", user.name ());
|
2001-04-25 14:54:21 +02:00
|
|
|
return pw ?: getpwnam(user.name ());
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
uinfo_init ()
|
|
|
|
{
|
|
|
|
struct passwd *p;
|
|
|
|
|
2000-06-28 19:42:28 +02:00
|
|
|
/* Initialize to non impersonated values.
|
|
|
|
Setting `impersonated' to TRUE seems to be wrong but it
|
|
|
|
isn't. Impersonated is thought as "Current User and `token'
|
|
|
|
are coincident". See seteuid() for the mechanism behind that. */
|
2001-06-04 16:29:54 +02:00
|
|
|
if (cygheap->user.token != INVALID_HANDLE_VALUE)
|
|
|
|
CloseHandle (cygheap->user.token);
|
2001-05-16 23:53:18 +02:00
|
|
|
cygheap->user.token = INVALID_HANDLE_VALUE;
|
2000-11-15 22:04:02 +01:00
|
|
|
cygheap->user.impersonated = TRUE;
|
2000-06-28 19:42:28 +02:00
|
|
|
|
2000-07-02 12:17:44 +02:00
|
|
|
/* If uid is USHRT_MAX, the process is started from a non cygwin
|
|
|
|
process or the user context was changed in spawn.cc */
|
|
|
|
if (myself->uid == USHRT_MAX)
|
2001-04-25 14:54:21 +02:00
|
|
|
if ((p = internal_getlogin (cygheap->user)) != NULL)
|
2000-07-02 02:00:17 +02:00
|
|
|
{
|
2000-09-03 06:16:35 +02:00
|
|
|
myself->uid = p->pw_uid;
|
2001-04-25 11:43:25 +02:00
|
|
|
/* Set primary group only if ntsec is off or the process has been
|
|
|
|
started from a non cygwin process. */
|
|
|
|
if (!allow_ntsec || myself->ppid == 1)
|
|
|
|
myself->gid = p->pw_gid;
|
2000-07-02 02:00:17 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-09-03 06:16:35 +02:00
|
|
|
myself->uid = DEFAULT_UID;
|
|
|
|
myself->gid = DEFAULT_GID;
|
2000-07-02 02:00:17 +02:00
|
|
|
}
|
2000-06-28 19:42:28 +02:00
|
|
|
/* Real and effective uid/gid are always identical on process start up.
|
|
|
|
This is at least true for NT/W2K. */
|
2000-11-15 01:13:09 +01:00
|
|
|
cygheap->user.orig_uid = cygheap->user.real_uid = myself->uid;
|
|
|
|
cygheap->user.orig_gid = cygheap->user.real_gid = myself->gid;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" char *
|
|
|
|
getlogin (void)
|
|
|
|
{
|
|
|
|
#ifdef _MT_SAFE
|
2001-03-18 22:11:25 +01:00
|
|
|
char *this_username=_reent_winsup ()->_username;
|
2000-02-17 20:38:33 +01:00
|
|
|
#else
|
2001-04-30 20:21:48 +02:00
|
|
|
static NO_COPY char this_username[UNLEN + 1];
|
2000-02-17 20:38:33 +01:00
|
|
|
#endif
|
|
|
|
|
2000-11-15 01:13:09 +01:00
|
|
|
return strcpy (this_username, cygheap->user.name ());
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" uid_t
|
|
|
|
getuid (void)
|
|
|
|
{
|
2000-11-15 01:13:09 +01:00
|
|
|
return cygheap->user.real_uid;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" gid_t
|
|
|
|
getgid (void)
|
|
|
|
{
|
2000-11-15 01:13:09 +01:00
|
|
|
return cygheap->user.real_gid;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" uid_t
|
|
|
|
geteuid (void)
|
|
|
|
{
|
2000-06-16 21:36:07 +02:00
|
|
|
return myself->uid;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" gid_t
|
|
|
|
getegid (void)
|
|
|
|
{
|
2000-06-16 21:36:07 +02:00
|
|
|
return myself->gid;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Not quite right - cuserid can change, getlogin can't */
|
|
|
|
extern "C" char *
|
|
|
|
cuserid (char *src)
|
|
|
|
{
|
|
|
|
if (src)
|
|
|
|
{
|
|
|
|
strcpy (src, getlogin ());
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return getlogin ();
|
|
|
|
}
|
|
|
|
}
|