-
Notifications
You must be signed in to change notification settings - Fork 29
/
util.c
277 lines (196 loc) · 5.15 KB
/
util.c
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
/*
Copyright (C) 2011 Jay Satiro <[email protected]>
All rights reserved.
This file is part of GetHooks.
GetHooks is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
GetHooks is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GetHooks. If not, see <https://www.gnu.org/licenses/>.
*/
/**
This file contains various utility functions.
Each function is documented in the comment block above its definition.
-
must_calloc()
Must calloc() or die.
-
-
must_wcsdup()
Must _wcsdup() or die.
-
-
get_wstr_from_mbstr()
Get a wide character string from a multibyte character string.
-
-
get_user_obj_name()
Get the name of a user object.
-
-
print_init_time()
Print an initialization utc time as local time and date.
-
-
print_time()
Print the local time and date. No newline.
-
*/
#pragma warning(disable:4996) /* 'function': was declared deprecated */
#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_DEPRECATE
#include <stdio.h>
#include <limits.h>
/* traverse_threads() */
#include "nt_independent_sysprocinfo_structs.h"
#include "traverse_threads.h"
#include "util.h"
/* must_calloc()
Must calloc() or die.
returns a pointer to the allocated memory
if allocation fails this function calls exit(1)
*/
void *must_calloc(
const size_t num, // in
const size_t size // in
)
{
void *mem;
FAIL_IF( !num && !size );
mem = calloc( num, size );
if( !mem )
{
MSG_FATAL( "calloc() failed:" );
printf( "calloc(%Iu, %Iu)\n", num, size );
exit( 1 );
}
return mem;
}
/* must_wcsdup()
Must _wcsdup() or die.
returns a pointer to the duplicate of the wide character string pointed to by 'strSource'
if allocation fails this function calls exit(1)
*/
WCHAR *must_wcsdup(
const WCHAR *const strSource // in
)
{
WCHAR *s = NULL;
FAIL_IF( !strSource );
s = _wcsdup( strSource );
if( !s )
{
MSG_FATAL( "_wcsdup() failed." );
printf( "strSource: %ls\n", strSource );
exit( 1 );
}
return s;
}
/* get_wstr_from_mbstr()
Get a wide character string from a multibyte character string.
'mbstr' is the multibyte character string.
returns nonzero on success.
if success then '*pwcstr' has received a pointer to the wide character string. free() when done.
if fail then '*pwcstr' has received NULL.
*/
int get_wstr_from_mbstr(
WCHAR **const pwcstr, // out deref
const char *const mbstr // in
)
{
size_t ecount = 0;
FAIL_IF( !pwcstr );
FAIL_IF( !mbstr );
/* get the number of wide characters, excluding null,
needed to output the multibyte string as a wide character string
*/
ecount = mbstowcs( NULL, mbstr, 0 );
if( ecount >= (size_t)INT_MAX ) /* error */
{
*pwcstr = NULL;
return FALSE;
}
++ecount; /* add 1 for null terminator */
*pwcstr = must_calloc( ecount, sizeof( WCHAR ) );
ecount = mbstowcs( *pwcstr, mbstr, ecount );
if( ecount >= (size_t)INT_MAX ) /* error */
{
free( *pwcstr );
*pwcstr = NULL;
return FALSE;
}
(*pwcstr)[ ecount ] = L'\0';
return TRUE;
}
/* get_user_obj_name()
Get the name of a user object.
'object' is a handle to the user object you want the name of.
returns nonzero on success.
if success then '*name' has received a pointer to the user object's name. free() when done.
if fail then '*name' has received NULL.
if fail call GetLastError() for GetUserObjectInformationW() last error
*/
int get_user_obj_name(
WCHAR **const name, // out deref
HANDLE const object // in
)
{
DWORD bytes_needed = 0;
FAIL_IF( !name );
FAIL_IF( !object );
SetLastError( 0 ); // error code may be evaluated on success
GetUserObjectInformationW( object, UOI_NAME, NULL, 0, &bytes_needed );
if( ( GetLastError() != ERROR_INSUFFICIENT_BUFFER )
|| ( bytes_needed < sizeof( WCHAR ) )
)
{
*name = NULL;
return FALSE;
}
*name = must_calloc( bytes_needed, 1 );
SetLastError( 0 ); // error code may be evaluated on success
if( !GetUserObjectInformationW( object, UOI_NAME, *name, bytes_needed, NULL ) )
{
free( *name );
*name = NULL;
return FALSE;
}
(*name)[ ( bytes_needed / sizeof( WCHAR ) ) - 1 ] = L'\0';
return TRUE;
}
/* print_init_time()
Print an initialization utc time as local time and date.
'msg' is an optional message to print before printing the time
'utc' is the utc time
eg print_init_time( "store->init_time", store->init_time );
store->init_time: 12:35:38 PM 9/14/2011
*/
void print_init_time(
const char *const msg, // in, optional
const __int64 utc // in
)
{
if( msg )
printf( "%s: ", msg );
if( utc )
print_filetime_as_local( (FILETIME *)&utc );
else
printf( "<uninitialized>" );
printf( "\n" );
return;
}
/* print_time()
Print the local time and date. No newline.
*/
void print_time( void )
{
__int64 utc = 0;
GetSystemTimeAsFileTime( (FILETIME *)&utc );
print_filetime_as_local( (FILETIME *)&utc );
return;
}