-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathshell.c
311 lines (247 loc) · 7.04 KB
/
shell.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
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
/**
* PROJECT: Native Shell
* COPYRIGHT: LGPL; See LICENSE in the top level directory
* FILE: shell.c
* DESCRIPTION: Shell helper functions.
* DEVELOPERS: See CONTRIBUTORS.md in the top level directory
*/
#include "precomp.h"
/*
*****************************************************************************
* GetFullPath - Get a full path.
*
* filename: File name
* out: String for full path
* add_slash: Add slash to the end of string
*
* Returns: TRUE or FALSE
*****************************************************************************
*/
BOOL GetFullPath(IN PCSTR filename, OUT PWSTR out, IN BOOL add_slash)
{
UNICODE_STRING us;
ANSI_STRING as;
WCHAR cur_path[MAX_PATH];
RtlCliGetCurrentDirectory(cur_path);
if (NULL == filename || NULL == cur_path || NULL == out)
{
return FALSE;
}
if ((strlen(filename) > 1) && filename[1] == ':')
{
RtlInitAnsiString(&as, filename);
RtlAnsiStringToUnicodeString(&us, &as, TRUE);
wcscpy(out, us.Buffer);
if (add_slash)
{
wcscat(out, L"\\");
}
RtlFreeUnicodeString(&us);
}
else
{
RtlInitAnsiString(&as, filename);
RtlAnsiStringToUnicodeString(&us, &as, TRUE);
wcscpy(out, cur_path);
if (out[wcslen(out) - 1] != L'\\')
{
wcscat(out, L"\\");
}
wcscat(out, us.Buffer);
if (add_slash)
{
wcscat(out, L"\\");
}
RtlFreeUnicodeString(&us);
}
return TRUE;
}
// Argument processing functions:
static CHAR *xargv[NUM_ARGS];
CHAR **StringToArguments(CHAR *string, UINT *argc)
{
/* Extract whitespace- and quotes- delimited tokens from the given string
and put them into the tokens array. Returns number of tokens
extracted. Length specifies the current size of tokens[].
THIS METHOD MODIFIES string. */
const char *whitespace = " \t\r\n";
char *tokenEnd;
const char *quoteCharacters = "\"\'";
char *end = string + strlen(string);
UINT length = NUM_ARGS;
if ((NULL == string) || (NULL == argc) || (0 == length))
return NULL;
*argc = 0;
while (1)
{
const char *q;
/* Skip over initial whitespace. */
string += strspn(string, whitespace);
if (!*string)
break;
for (q = quoteCharacters; *q; ++q)
{
if (*string == *q)
break;
}
if (*q)
{
/* Token is quoted. */
char quote = *string++;
tokenEnd = strchr(string, quote);
/* If there is no endquote, the token is the rest of the string. */
if (!tokenEnd)
tokenEnd = end;
}
else
{
tokenEnd = string + strcspn(string, whitespace);
}
*tokenEnd = 0;
xargv[*argc] = string;
*argc = *argc + 1;
if ((tokenEnd == end) || (*argc >= length))
break;
string = tokenEnd + 1;
}
return xargv;
}
/******************************************************************************\
* GetFileAttributesNt - Get File Attributes
* fname: File name
\******************************************************************************/
ULONG GetFileAttributesNt(PCWSTR filename)
{
OBJECT_ATTRIBUTES oa;
FILE_BASIC_INFORMATION fbi;
UNICODE_STRING nt_filename;
RtlDosPathNameToNtPathName_U(filename, &nt_filename, NULL, NULL);
InitializeObjectAttributes(&oa, &nt_filename, OBJ_CASE_INSENSITIVE, 0, 0);
fbi.FileAttributes = 0;
NtQueryAttributesFile(&oa, &fbi);
return fbi.FileAttributes;
}
/******************************************************************************\
* FolderExists - Check if folder exists
* fFile: Folder
\******************************************************************************/
BOOL FolderExists(PCWSTR foldername)
{
BOOL retval = FALSE;
UNICODE_STRING u_filename, nt_filename;
FILE_BASIC_INFORMATION fbi;
OBJECT_ATTRIBUTES oa;
NTSTATUS st;
RtlInitUnicodeString(&u_filename, foldername);
RtlDosPathNameToNtPathName_U(u_filename.Buffer, &nt_filename, NULL, NULL);
InitializeObjectAttributes(&oa, &nt_filename, OBJ_CASE_INSENSITIVE, 0, 0);
st = NtQueryAttributesFile(&oa, &fbi);
retval = NT_SUCCESS(st);
if (retval && (fbi.FileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
return TRUE;
}
return FALSE;
}
/******************************************************************************\
* FileExists - Checks if file exists
* filename: File name
\******************************************************************************/
BOOL FileExists(PCWSTR filename)
{
UNICODE_STRING u_filename, nt_filename;
FILE_BASIC_INFORMATION fbi;
OBJECT_ATTRIBUTES oa;
NTSTATUS st;
RtlInitUnicodeString(&u_filename, filename);
RtlDosPathNameToNtPathName_U(u_filename.Buffer, &nt_filename, NULL, NULL);
InitializeObjectAttributes(&oa, &nt_filename, OBJ_CASE_INSENSITIVE, 0, 0);
st = NtQueryAttributesFile(&oa, &fbi);
return NT_SUCCESS(st);
}
BOOLEAN DisplayString(WCHAR *pwszData)
{
UNICODE_STRING ustrData;
BOOLEAN bRet;
bRet = SetUnicodeString(&ustrData, pwszData);
if (bRet == FALSE)
return FALSE;
NtDisplayString(&ustrData);
return TRUE;
}
BOOLEAN SetUnicodeString(UNICODE_STRING *pustrRet, WCHAR *pwszData)
{
if (pustrRet == NULL || pwszData == NULL)
{
return FALSE;
}
pustrRet->Buffer = pwszData;
pustrRet->Length = wcslen(pwszData) * sizeof(WCHAR);
pustrRet->MaximumLength = pustrRet->Length + sizeof(WCHAR);
return TRUE;
}
HANDLE InitHeapMemory(void)
{
RTL_HEAP_PARAMETERS sHeapDef;
HANDLE hHeap;
// Init Heap Memory
memset(&sHeapDef, 0, sizeof(RTL_HEAP_PARAMETERS));
sHeapDef.Length = sizeof(RTL_HEAP_PARAMETERS);
hHeap = RtlCreateHeap(HEAP_GROWABLE, NULL, 0x100000, 0x1000, NULL, &sHeapDef);
return hHeap;
}
BOOLEAN DeinitHeapMemory(HANDLE hHeap)
{
PVOID pRet;
pRet = RtlDestroyHeap(hHeap);
if (pRet == NULL)
return TRUE;
return FALSE;
}
PVOID kmalloc(HANDLE hHeap, int nSize)
{
// if you wanna set new memory to zero, use HEAP_ZERO_MEMORY.
PVOID pRet = RtlAllocateHeap(hHeap, 0, nSize);
return pRet;
}
BOOLEAN kfree(HANDLE hHeap, PVOID pMemory)
{
BOOLEAN bRet = RtlFreeHeap(hHeap, 0, pMemory);
return bRet;
}
BOOLEAN AppendString(WCHAR *pszInput, WCHAR *pszAppend)
{
int i, nAppendIndex;
for (i = 0;; i++)
{
if (pszInput[i] == 0x0000)
{
break;
}
}
nAppendIndex = 0;
for (;;)
{
if (pszAppend[nAppendIndex] == 0x0000)
{
break;
}
pszInput[i] = pszAppend[nAppendIndex];
nAppendIndex++;
i++;
}
pszInput[i] = 0x0000; // set end of string.
return TRUE;
}
UINT GetStringLength(WCHAR *pszInput)
{
int i;
for (i = 0;; i++)
{
if (pszInput[i] == 0x0000)
{
break;
}
}
return i;
}