~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to lib/impersonate/impersonateInt.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2008-08-15 21:21:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080815212140-05fhxj8wroosysmj
Tags: 2008.08.08-109361-1ubuntu1
* Merge from Debian unstable (LP: #258393), remaining Ubuntu change:
  - add ubuntu_toolchain_FTBFS.dpatch patch, fix FTBFS
* Update ubuntu_toolchain_FTBFS.dpatch patch for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*********************************************************
 
2
 * Copyright (C) 2003 VMware, Inc. All rights reserved.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License as published
 
6
 * by the Free Software Foundation version 2.1 and no later version.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the Lesser GNU General Public
 
11
 * License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 
15
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA.
 
16
 *
 
17
 *********************************************************/
 
18
 
 
19
/*
 
20
 * impersonateInt.h --
 
21
 *
 
22
 *      Header file shared by impersonate code
 
23
 */
 
24
 
 
25
#ifndef _IMPERSONATE_INT_H_
 
26
#define _IMPERSONATE_INT_H_
 
27
 
 
28
#include "vmware.h"
 
29
#include "msg.h"
 
30
#include "impersonate.h"
 
31
#include "auth.h"
 
32
 
 
33
//#define IMP_VERBOSE 1
 
34
#define INVALID_PTHREAD_KEY_VALUE (-1)
 
35
#ifdef IMP_VERBOSE
 
36
#define IMPWARN(x) Warning x
 
37
#else
 
38
#define IMPWARN(x)
 
39
#endif
 
40
 
 
41
typedef struct ImpersonationState {
 
42
   const char *impersonatedUser;       // the user we are currently impersonating
 
43
   int refCount;                       // # of times we are impersonating as same user
 
44
 
 
45
#ifdef _WIN32
 
46
   HANDLE impersonatedToken;           // the access token currently impersonated with
 
47
   Bool forceRoot;                     // are we temporarily switching back to root?
 
48
#endif
 
49
} ImpersonationState;
 
50
 
 
51
void ImpersonateInit(void);
 
52
ImpersonationState *ImpersonateGetTLS(void);
 
53
Bool ImpersonateRunas(const char *cfg, const char *caller, AuthToken callerToken);
 
54
Bool ImpersonateOwner(const char *file);
 
55
Bool ImpersonateDo(const char *user, AuthToken token);
 
56
Bool ImpersonateUndo(void);
 
57
Bool ImpersonateForceRoot(void);
 
58
Bool ImpersonateUnforceRoot(void);
 
59
 
 
60
#endif // ImpersonateInt.h