-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwntsecur.h
More file actions
439 lines (361 loc) · 9 KB
/
Copy pathwntsecur.h
File metadata and controls
439 lines (361 loc) · 9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
#ifndef _INC_WNTSECUR_
#define _INC_WNTSECUR_
#include <windows.h>
EXTERN_C BOOL EnablePrivilegeA(LPCSTR lpPrivName);
EXTERN_C BOOL EnablePrivilegeW(LPCWSTR lpPrivName);
#ifdef UNICODE
#define EnablePrivilege EnablePrivilegeW
#else
#define EnablePrivilege EnablePrivilegeA
#endif
#ifdef __cplusplus
/// SECURITY_ATTRIBUTES with initialization constructor.
struct WSecurityAttributes : public SECURITY_ATTRIBUTES
{
WSecurityAttributes(SECURITY_ATTRIBUTES &sa)
{
*(SECURITY_ATTRIBUTES*)this = sa;
}
WSecurityAttributes(BOOL bSetInheritHandle = false,
LPVOID lpSetSecurityDescriptor = NULL)
{
nLength = sizeof *this;
lpSecurityDescriptor = lpSetSecurityDescriptor;
bInheritHandle = bSetInheritHandle;
}
};
// SECURITY_DESCRIPTOR with encapsulated API functions
struct WSecurityDescriptor : private SECURITY_DESCRIPTOR
{
// Structure manipulation and validation
BOOL GetControl(PSECURITY_DESCRIPTOR_CONTROL pControl, LPDWORD lpdwRevision)
{
return GetSecurityDescriptorControl(this, pControl, lpdwRevision);
}
DWORD GetLength()
{
return GetSecurityDescriptorLength(this);
}
BOOL IsValid()
{
return IsValidSecurityDescriptor(this);
}
BOOL GetDacl(LPBOOL lpbDaclPresent, PACL *pDacl, LPBOOL lpbDaclDefaulted)
{
return GetSecurityDescriptorDacl(this, lpbDaclPresent, pDacl,
lpbDaclDefaulted);
}
BOOL GetSacl(LPBOOL lpbSaclPresent, PACL *pSacl, LPBOOL lpbSaclDefaulted)
{
return GetSecurityDescriptorSacl(this, lpbSaclPresent, pSacl,
lpbSaclDefaulted);
}
BOOL GetGroup(PSID *pGroup, LPBOOL lpbGroupDefaulted)
{
return GetSecurityDescriptorGroup(this, pGroup, lpbGroupDefaulted);
}
BOOL GetOwner(PSID *pOwner, LPBOOL lpbOwnerDefaulted)
{
return GetSecurityDescriptorOwner(this, pOwner, lpbOwnerDefaulted);
}
BOOL SetDacl(BOOL bDaclPresent, PACL pDacl, BOOL bDaclDefaulted)
{
return SetSecurityDescriptorDacl(this, bDaclPresent, pDacl,
bDaclDefaulted);
}
BOOL SetSacl(BOOL bSaclPresent, PACL pSacl, BOOL bSaclDefaulted)
{
return SetSecurityDescriptorSacl(this, bSaclPresent, pSacl,
bSaclDefaulted);
}
BOOL SetGroup(PSID pGroup, BOOL bGroupDefaulted)
{
return SetSecurityDescriptorGroup(this, pGroup, bGroupDefaulted);
}
BOOL SetOwner(PSID pOwner, BOOL bOwnerDefaulted)
{
return SetSecurityDescriptorOwner(this, pOwner, bOwnerDefaulted);
}
// Object set/get functions
BOOL FromFile(LPCTSTR lpFileName, SECURITY_INFORMATION RequestedInformation,
DWORD nLength, LPDWORD lpnLengthNeeded = NULL)
{
DWORD dwLengthNeeded;
if( !lpnLengthNeeded )
lpnLengthNeeded = &dwLengthNeeded;
return GetFileSecurity(lpFileName, RequestedInformation, this, nLength,
lpnLengthNeeded);
}
BOOL ToFile(LPCTSTR lpFileName, SECURITY_INFORMATION SecurityInformation)
{
return SetFileSecurity(lpFileName, SecurityInformation, this);
}
BOOL FromKernelObject(HANDLE Handle,
SECURITY_INFORMATION RequestedInformation,
DWORD nLength, LPDWORD lpnLengthNeeded = NULL)
{
DWORD dwLengthNeeded;
if( !lpnLengthNeeded )
lpnLengthNeeded = &dwLengthNeeded;
return GetKernelObjectSecurity(Handle, RequestedInformation, this,
nLength, lpnLengthNeeded);
}
BOOL ToKernelObject(HANDLE Handle,
SECURITY_INFORMATION SecurityInformation)
{
return SetKernelObjectSecurity(Handle, SecurityInformation, this);
}
bool FromKey(HKEY Handle,
SECURITY_INFORMATION RequestedInformation,
DWORD nLength, LPDWORD lpnLengthNeeded = NULL)
{
DWORD dwLengthNeeded;
if( !lpnLengthNeeded )
lpnLengthNeeded = &dwLengthNeeded;
*lpnLengthNeeded = nLength;
DWORD dwerr = RegGetKeySecurity(Handle, RequestedInformation, this,
lpnLengthNeeded);
if (dwerr == NO_ERROR)
{
return true;
}
else
{
SetLastError(dwerr);
return false;
}
}
BOOL ToKey(HKEY Handle,
SECURITY_INFORMATION SecurityInformation)
{
DWORD dwerr = RegSetKeySecurity(Handle, SecurityInformation, this);
if (dwerr == NO_ERROR)
{
return true;
}
else
{
SetLastError(dwerr);
return false;
}
}
BOOL FromUserObject(HANDLE hObj, PSECURITY_INFORMATION pSIRequested,
DWORD nLength, LPDWORD lpnLengthNeeded = NULL)
{
DWORD dwLengthNeeded;
if( !lpnLengthNeeded )
lpnLengthNeeded = &dwLengthNeeded;
return GetUserObjectSecurity(hObj, pSIRequested, this,
nLength, lpnLengthNeeded);
}
BOOL ToUserObject(HANDLE hObj, PSECURITY_INFORMATION pSIRequested)
{
return SetUserObjectSecurity(hObj, pSIRequested, this);
}
BOOL FromPrivateObject(PSECURITY_DESCRIPTOR ObjectDescriptor,
SECURITY_INFORMATION RequestedInformation,
DWORD nLength, LPDWORD lpnLengthNeeded = NULL)
{
DWORD dwLengthNeeded;
if( !lpnLengthNeeded )
lpnLengthNeeded = &dwLengthNeeded;
return GetPrivateObjectSecurity(ObjectDescriptor, RequestedInformation,
this, nLength, lpnLengthNeeded);
}
BOOL ToPrivateObject(SECURITY_INFORMATION SecurityInformation,
PSECURITY_DESCRIPTOR *ObjectsSecurityDescriptor,
PGENERIC_MAPPING GenericMapping, HANDLE Token)
{
return SetPrivateObjectSecurity(SecurityInformation, this,
ObjectsSecurityDescriptor, GenericMapping, Token);
}
// Initializes using InitializeSecurityDescriptor()
BOOL Initialize()
{
return InitializeSecurityDescriptor(this, SECURITY_DESCRIPTOR_REVISION);
}
WSecurityDescriptor()
{
Initialize();
}
};
// SECURITY_DESCRIPTOR_CONTROL with initialization
struct WSecurityDescriptorControl
{
SECURITY_DESCRIPTOR_CONTROL sdcData;
operator SECURITY_DESCRIPTOR_CONTROL() const
{
return sdcData;
}
WSecurityDescriptorControl(SECURITY_DESCRIPTOR_CONTROL &sdc)
{
sdcData = sdc;
}
WSecurityDescriptorControl(WSecurityDescriptor *&pwsd)
{
DWORD dwRevision;
pwsd->GetControl(&sdcData, &dwRevision);
}
};
#ifdef __SDDL_H__
class WSid : public WMem<VOID>
{
public:
WSid()
{
}
explicit WSid(LPCWSTR sid)
{
if (!ConvertStringSidToSidW(sid, &ptr))
{
ptr = NULL;
}
}
explicit WSid(LPCSTR sid)
{
if (!ConvertStringSidToSidA(sid, &ptr))
{
ptr = NULL;
}
}
PSID operator =(LPCWSTR sid)
{
Free();
if (!ConvertStringSidToSidW(sid, &ptr))
{
ptr = NULL;
}
return ptr;
}
PSID operator =(LPCSTR sid)
{
Free();
if (!ConvertStringSidToSidA(sid, &ptr))
{
ptr = NULL;
}
return ptr;
}
};
class WSidStr : public WMem<TCHAR>
{
public:
WSidStr()
{
}
explicit WSidStr(PSID sid)
{
if (!ConvertSidToStringSid(sid, &ptr))
{
ptr = NULL;
}
}
PTCHAR operator =(PSID sid)
{
Free();
if (!ConvertSidToStringSid(sid, &ptr))
{
ptr = NULL;
}
return ptr;
}
};
class WSidStrW : public WMem<WCHAR>
{
public:
WSidStrW()
{
}
explicit WSidStrW(PSID sid)
{
if (!ConvertSidToStringSidW(sid, &ptr))
{
ptr = NULL;
}
}
PWCHAR operator =(PSID sid)
{
Free();
if (!ConvertSidToStringSidW(sid, &ptr))
{
ptr = NULL;
}
return ptr;
}
};
class WSidStrA : public WMem<CHAR>
{
public:
WSidStrA()
{
}
explicit WSidStrA(PSID sid)
{
if (!ConvertSidToStringSidA(sid, &ptr))
{
ptr = NULL;
}
}
PCHAR operator =(PSID sid)
{
Free();
if (!ConvertSidToStringSidA(sid, &ptr))
{
ptr = NULL;
}
return ptr;
}
};
#ifdef NT_SUCCESS
class WSidUnicodeString : public UNICODE_STRING
{
public:
WSidUnicodeString()
{
MaximumLength = Length = 0;
Buffer = NULL;
}
explicit WSidUnicodeString(PSID sid)
{
if (!NT_SUCCESS(RtlConvertSidToUnicodeString(this, sid, TRUE)))
{
MaximumLength = Length = 0;
Buffer = NULL;
}
}
WSidUnicodeString * operator =(PSID sid)
{
Free();
if (!NT_SUCCESS(RtlConvertSidToUnicodeString(this, sid, TRUE)))
{
MaximumLength = Length = 0;
Buffer = NULL;
}
return this;
}
void Free()
{
if (Buffer != NULL)
{
RtlFreeUnicodeString(this);
MaximumLength = Length = 0;
Buffer = NULL;
}
}
~WSidUnicodeString()
{
Free();
}
operator bool()
{
return Buffer != NULL;
}
bool operator !()
{
return Buffer == NULL;
}
};
#endif
#endif
#endif // __cplusplus
#endif // _INC_WNTSECUR_