OSDN Git Service

* fhandler.cc (fhandler_base::open): Set query access mode according
[pf3gnuchains/pf3gnuchains4x.git] / winsup / cygwin / security.h
1 /* security.h: security declarations
2
3    Copyright 2000, 2001, 2002, 2003, 2004 Red Hat, Inc.
4
5 This file is part of Cygwin.
6
7 This software is a copyrighted work licensed under the terms of the
8 Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
9 details. */
10
11 #ifndef _SECURITY_H
12 #define _SECURITY_H
13
14 #include <accctrl.h>
15
16 #define DEFAULT_UID DOMAIN_USER_RID_ADMIN
17 #define UNKNOWN_UID 400 /* Non conflicting number */
18 #define UNKNOWN_GID 401
19
20 #define MAX_SID_LEN 40
21 #define MAX_DACL_LEN(n) (sizeof (ACL) \
22                    + (n) * (sizeof (ACCESS_ALLOWED_ACE) - sizeof (DWORD) + MAX_SID_LEN))
23 #define ACL_DEFAULT_SIZE 3072
24 #define NO_SID ((PSID)NULL)
25
26 /* Macro to define variable length SID structures */
27 #define SID(name, comment, authority, count, rid...) \
28 static NO_COPY struct  { \
29   BYTE  Revision; \
30   BYTE  SubAuthorityCount; \
31   SID_IDENTIFIER_AUTHORITY IdentifierAuthority; \
32   DWORD SubAuthority[count]; \
33 } name##_struct = { SID_REVISION, count, {authority}, {rid}}; \
34 cygpsid NO_COPY name = (PSID) &name##_struct;
35
36 #define FILE_READ_BITS   (FILE_READ_DATA | GENERIC_READ | GENERIC_ALL)
37 #define FILE_WRITE_BITS  (FILE_WRITE_DATA | GENERIC_WRITE | GENERIC_ALL)
38 #define FILE_EXEC_BITS   (FILE_EXECUTE | GENERIC_EXECUTE | GENERIC_ALL)
39
40 class cygpsid {
41 protected:
42   PSID psid;
43 public:
44   cygpsid () {}
45   cygpsid (PSID nsid) { psid = nsid; }
46   operator const PSID () { return psid; }
47   const PSID operator= (PSID nsid) { return psid = nsid;}
48   __uid32_t get_id (BOOL search_grp, int *type = NULL);
49   int get_uid () { return get_id (FALSE); }
50   int get_gid () { return get_id (TRUE); }
51
52   char *string (char *nsidstr) const;
53
54   bool operator== (const PSID nsid) const
55     {
56       if (!psid || !nsid)
57         return nsid == psid;
58       return EqualSid (psid, nsid);
59     }
60   bool operator!= (const PSID nsid) const
61     { return !(*this == nsid); }
62   bool operator== (const char *nsidstr) const;
63   bool operator!= (const char *nsidstr) const
64     { return !(*this == nsidstr); }
65
66   void debug_print (const char *prefix = NULL) const
67     {
68       char buf[256] __attribute__ ((unused));
69       debug_printf ("%s %s", prefix ?: "", string (buf) ?: "NULL");
70     }
71 };
72
73 class cygsid : public cygpsid {
74   char sbuf[MAX_SID_LEN];
75
76   const PSID getfromstr (const char *nsidstr);
77   PSID get_sid (DWORD s, DWORD cnt, DWORD *r);
78
79   inline const PSID assign (const PSID nsid)
80     {
81       if (!nsid)
82         psid = NO_SID;
83       else
84         {
85           psid = (PSID) sbuf;
86           CopySid (MAX_SID_LEN, psid, nsid);
87         }
88       return psid;
89     }
90
91 public:
92   inline operator const PSID () { return psid; }
93
94   inline const PSID operator= (cygsid &nsid)
95     { return assign (nsid); }
96   inline const PSID operator= (const PSID nsid)
97     { return assign (nsid); }
98   inline const PSID operator= (const char *nsidstr)
99     { return getfromstr (nsidstr); }
100
101   inline cygsid () : cygpsid ((PSID) sbuf) {}
102   inline cygsid (const PSID nsid) { *this = nsid; }
103   inline cygsid (const char *nstrsid) { *this = nstrsid; }
104
105   inline PSID set () { return psid = (PSID) sbuf; }
106
107   BOOL getfrompw (const struct passwd *pw);
108   BOOL getfromgr (const struct __group32 *gr);
109 };
110
111 typedef enum { cygsidlist_empty, cygsidlist_alloc, cygsidlist_auto } cygsidlist_type;
112 class cygsidlist {
113   int maxcount;
114 public:
115   int count;
116   cygsid *sids;
117   cygsidlist_type type;
118
119   cygsidlist (cygsidlist_type t, int m)
120     {
121       type = t;
122       count = 0;
123       maxcount = m;
124       if (t == cygsidlist_alloc)
125         sids = alloc_sids (m);
126       else
127         sids = new cygsid [m];
128     }
129   ~cygsidlist () { if (type == cygsidlist_auto) delete [] sids; }
130
131   BOOL add (const PSID nsi) /* Only with auto for now */
132     {
133       if (count >= maxcount)
134         {
135           cygsid *tmp = new cygsid [ 2 * maxcount];
136           if (!tmp)
137             return FALSE;
138           maxcount *= 2;
139           for (int i = 0; i < count; ++i)
140             tmp[i] = sids[i];
141           delete [] sids;
142           sids = tmp;
143         }
144       sids[count++] = nsi;
145       return TRUE;
146     }
147   BOOL add (cygsid &nsi) { return add ((PSID) nsi); }
148   BOOL add (const char *sidstr)
149     { cygsid nsi (sidstr); return add (nsi); }
150   BOOL addfromgr (struct __group32 *gr) /* Only with alloc */
151     { return sids[count++].getfromgr (gr); }
152
153   BOOL operator+= (cygsid &si) { return add (si); }
154   BOOL operator+= (const char *sidstr) { return add (sidstr); }
155   BOOL operator+= (const PSID psid) { return add (psid); }
156
157   int position (const PSID sid) const
158     {
159       for (int i = 0; i < count; ++i)
160         if (sids[i] == sid)
161           return i;
162       return -1;
163     }
164
165   BOOL contains (const PSID sid) const { return position (sid) >= 0; }
166   cygsid *alloc_sids (int n);
167   void free_sids ();
168   void debug_print (const char *prefix = NULL) const
169     {
170       debug_printf ("-- begin sidlist ---");
171       if (!count)
172         debug_printf ("No elements");
173       for (int i = 0; i < count; ++i)
174         sids[i].debug_print (prefix);
175       debug_printf ("-- ende sidlist ---");
176     }
177 };
178
179 /* Wrapper class to allow simple deleting of buffer space allocated
180    by read_sd() */
181 class security_descriptor {
182 protected:
183   PSECURITY_DESCRIPTOR psd;
184   DWORD sd_size;
185 public:
186   security_descriptor () : psd (NULL), sd_size (0) {}
187   ~security_descriptor () { free (); }
188
189   PSECURITY_DESCRIPTOR malloc (size_t nsize);
190   PSECURITY_DESCRIPTOR realloc (size_t nsize);
191   void free (void);
192
193   inline DWORD size (void) const { return sd_size; }
194   inline operator const PSECURITY_DESCRIPTOR () { return psd; }
195 };
196
197 class user_groups {
198 public:
199   cygsid pgsid;
200   cygsidlist sgsids;
201   BOOL ischanged;
202
203   BOOL issetgroups () const { return (sgsids.type == cygsidlist_alloc); }
204   void update_supp (const cygsidlist &newsids)
205     {
206       sgsids.free_sids ();
207       sgsids = newsids;
208       ischanged = TRUE;
209     }
210   void clear_supp ()
211     {
212       if (issetgroups ())
213         {
214           sgsids.free_sids ();
215           ischanged = TRUE;
216         }
217     }
218   void update_pgrp (const PSID sid)
219     {
220       pgsid = sid;
221       ischanged = TRUE;
222     }
223 };
224
225 extern cygpsid well_known_null_sid;
226 extern cygpsid well_known_world_sid;
227 extern cygpsid well_known_local_sid;
228 extern cygpsid well_known_creator_owner_sid;
229 extern cygpsid well_known_creator_group_sid;
230 extern cygpsid well_known_dialup_sid;
231 extern cygpsid well_known_network_sid;
232 extern cygpsid well_known_batch_sid;
233 extern cygpsid well_known_interactive_sid;
234 extern cygpsid well_known_service_sid;
235 extern cygpsid well_known_authenticated_users_sid;
236 extern cygpsid well_known_system_sid;
237 extern cygpsid well_known_admins_sid;
238
239 inline BOOL
240 legal_sid_type (SID_NAME_USE type)
241 {
242   return type == SidTypeUser  || type == SidTypeGroup
243       || type == SidTypeAlias || type == SidTypeWellKnownGroup;
244 }
245
246 extern bool allow_ntea;
247 extern bool allow_ntsec;
248 extern bool allow_smbntsec;
249
250 /* File manipulation */
251 int __stdcall set_process_privileges ();
252 int __stdcall get_file_attribute (int, HANDLE, const char *, mode_t *,
253                                   __uid32_t * = NULL, __gid32_t * = NULL);
254 int __stdcall set_file_attribute (int, const char *, int);
255 int __stdcall set_file_attribute (int, const char *, __uid32_t, __gid32_t, int);
256 int __stdcall get_object_attribute (HANDLE handle, SE_OBJECT_TYPE object_type, mode_t *,
257                                   __uid32_t * = NULL, __gid32_t * = NULL);
258 LONG __stdcall read_sd (const char *file, security_descriptor &sd);
259 LONG __stdcall write_sd (const char *file, security_descriptor &sd);
260 bool __stdcall add_access_allowed_ace (PACL acl, int offset, DWORD attributes, PSID sid, size_t &len_add, DWORD inherit);
261 bool __stdcall add_access_denied_ace (PACL acl, int offset, DWORD attributes, PSID sid, size_t &len_add, DWORD inherit);
262 int __stdcall check_file_access (const char *, int);
263
264 void set_security_attribute (int attribute, PSECURITY_ATTRIBUTES psa,
265                              security_descriptor &sd_buf);
266
267 bool get_sids_info (cygpsid, cygpsid, __uid32_t * , __gid32_t *);
268
269 /* Try a subauthentication. */
270 HANDLE subauth (struct passwd *pw);
271 /* Try creating a token directly. */
272 HANDLE create_token (cygsid &usersid, user_groups &groups, struct passwd * pw);
273 /* Verify an existing token */
274 bool verify_token (HANDLE token, cygsid &usersid, user_groups &groups, bool *pintern = NULL);
275
276 /* Extract U-domain\user field from passwd entry. */
277 void extract_nt_dom_user (const struct passwd *pw, char *domain, char *user);
278 /* Get default logonserver for a domain. */
279 bool get_logon_server (const char * domain, char * server, WCHAR *wserver = NULL);
280
281 /* sec_helper.cc: Security helper functions. */
282 int set_process_privilege (const char *privilege, bool enable = true, bool use_thread = false);
283
284 /* shared.cc: */
285 /* Retrieve a security descriptor that allows all access */
286 SECURITY_DESCRIPTOR *__stdcall get_null_sd (void);
287
288 /* Various types of security attributes for use in Create* functions. */
289 extern SECURITY_ATTRIBUTES sec_none, sec_none_nih, sec_all, sec_all_nih;
290 extern SECURITY_ATTRIBUTES *__stdcall __sec_user (PVOID sa_buf, PSID sid1, PSID sid2, 
291                                                   DWORD access2, BOOL inherit)
292   __attribute__ ((regparm (3)));
293 extern bool sec_acl (PACL acl, bool original, bool admins, PSID sid1 = NO_SID, 
294                      PSID sid2 = NO_SID, DWORD access2 = 0);
295
296 int __stdcall NTReadEA (const char *file, const char *attrname, char *buf, int len);
297 BOOL __stdcall NTWriteEA (const char *file, const char *attrname, const char *buf, int len);
298
299 extern inline SECURITY_ATTRIBUTES *
300 sec_user_nih (char sa_buf[], PSID sid1 = NULL, PSID sid2 = NULL, DWORD access2 = 0)
301 {
302   return __sec_user (sa_buf, sid1, sid2, access2, FALSE);
303 }
304
305 extern inline SECURITY_ATTRIBUTES *
306 sec_user (char sa_buf[], PSID sid1 = NULL, PSID sid2 = NULL, DWORD access2 = 0)
307 {
308   return __sec_user (sa_buf, sid1, sid2, access2, TRUE);
309 }
310 #endif /*_SECURITY_H*/