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
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2019-02-23 19:28:12 +0300
committerCorinna Vinschen <corinna@vinschen.de>2019-02-23 19:28:12 +0300
commit9db6048c0fe7c35586f762ee2cdc1d0f92a041ea (patch)
tree37f536a6a9487fe36fade9c9eddfbdf45f288b5d
parent13b1f9c0d1c6860be91523289c8a6ac6a87cb9db (diff)
Cygwin: cygheap: better comment impersonation tokens
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r--winsup/cygwin/cygheap.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h
index be088b224..99d2e5389 100644
--- a/winsup/cygwin/cygheap.h
+++ b/winsup/cygwin/cygheap.h
@@ -101,12 +101,11 @@ public:
gid_t real_gid; /* Ditto */
user_groups groups; /* Primary and supp SIDs */
- /* token is needed if set(e)uid should be called. It can be set by a call
- to `set_impersonation_token()'. */
- HANDLE external_token;
- HANDLE internal_token;
- HANDLE curr_primary_token;
- HANDLE curr_imp_token;
+ HANDLE external_token; /* token from set_impersonation_token call */
+ HANDLE internal_token; /* password-less token fetched in seteuid32 */
+ HANDLE curr_primary_token; /* Just a copy of external or internal token */
+ HANDLE curr_imp_token; /* impersonation token derived from primary
+ token */
bool ext_token_is_restricted; /* external_token is restricted token */
bool curr_token_is_restricted; /* curr_primary_token is restricted token */
bool setuid_to_restricted; /* switch to restricted token by setuid () */