-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwsl-launcher.c
353 lines (284 loc) · 9.11 KB
/
wsl-launcher.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
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
/** @file wsl-launcher.c
*/
#include <windows.h>
#include <stdio.h>
#include <strsafe.h>
#include <combaseapi.h>
#include "wsl-launcher.h"
#include "wsl-log.h"
#include "wslapi.h"
PROCESS_INFORMATION processInformation = {0};
STARTUPINFO startupInfo = {0};
WSL_DISTRIBUTION_FLAGS distributionFlags = 0;
ULONG defaultUID = 0;
BOOL wslDistributionIsRegistered(LPCWSTR distributionName){
if (!WslIsDistributionRegistered(distributionName)){
wslLog(L_ERROR, L"Distribution '%s' is not registered\n", distributionName);
return FALSE;
} else {
wslLog(L_DEBUG, L"Distribution '%s' is available\n", distributionName);
return TRUE;
}
}
void wslServiceThreadInteractive(WslInstance *instanceData){
TCHAR wslExecutable[copyBufferSize];
size_t maxSz = STRSAFE_MAX_CCH * sizeof(TCHAR);
LPCWSTR formatString;
switch(instanceData->action){
case WSL_START:
formatString = TEXT(BASH_START_TEMPLATE);
break;
case WSL_STOP:
formatString = TEXT(BASH_STOP_TEMPLATE);
break;
}
DWORD exitCode;
PCWSTR defaultDistW = defaultWslDistributionName();
if (copyBufferTCharSize > maxSz){
wslLog(L_ERROR, L"Size %u is bigger than maximum allowed %u\n", copyBufferTCharSize, maxSz);
return;
}
if (FAILED(StringCbPrintf(wslExecutable, copyBufferTCharSize, formatString, instanceData->command))){
wslLog(L_ERROR, L"Unable to prepare WSL executable string\n");
return;
}
WslLaunchInteractive(
defaultDistW,
wslExecutable,
FALSE,
&exitCode);
}
HANDLE startWslServiceInteractive(WslInstance *instanceData){
instanceData->action = WSL_START;
return wslThreadInteractive(instanceData, (LPTHREAD_START_ROUTINE)wslServiceThreadInteractive, TRUE);
}
HANDLE startWslServiceInteractiveA(LPCSTR serviceName, LPCSTR distributionName, WslInstance *instanceData){
instanceData->action = WSL_START;
return wslServiceInteractiveA(serviceName, distributionName, instanceData);
}
BOOL terminateWslProcess(){
///TODO
return FALSE;
}
HANDLE stopWslServiceInteractive(WslInstance *instanceData){
instanceData->action = WSL_STOP;
return wslThreadInteractive(instanceData, (LPTHREAD_START_ROUTINE)wslServiceThreadInteractive, FALSE);
}
HANDLE stopWslServiceInteractiveA(LPCSTR serviceName, LPCSTR distributionName, WslInstance *instanceData){
instanceData->action = WSL_STOP;
return wslServiceInteractiveA(serviceName, distributionName, instanceData);
}
LPWSTR defaultWslDistributionName(){
LSTATUS stat;
LPWSTR regValue;
DWORD regValueLength;
LPCWSTR lxssKey = L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Lxss\\";
DWORD defaultDistKeyLength;
LPWSTR defaultDistKey;
// check the length of the key
stat = RegGetValue(HKEY_CURRENT_USER,
lxssKey,
L"DefaultDistribution",
RRF_RT_REG_SZ, NULL,
NULL,
®ValueLength);
if (stat != ERROR_SUCCESS)
return NULL;
regValue = (LPWSTR)malloc((regValueLength+1) * sizeof(wchar_t));
// look up the UUID for the default distribution
stat = RegGetValue(HKEY_CURRENT_USER,
lxssKey,
L"DefaultDistribution",
RRF_RT_REG_SZ, NULL,
(PVOID)regValue,
®ValueLength);
if (stat != ERROR_SUCCESS){
free(regValue);
return NULL;
}
defaultDistKeyLength = lstrlen(lxssKey) + lstrlen(regValue) + 1;
defaultDistKey = (LPWSTR)malloc(defaultDistKeyLength * sizeof(wchar_t));
lstrcpyn(defaultDistKey, lxssKey, defaultDistKeyLength);
StringCbCat(defaultDistKey, defaultDistKeyLength * sizeof(wchar_t), regValue);
free(regValue);
stat = RegGetValue(HKEY_CURRENT_USER,
defaultDistKey,
L"DistributionName",
RRF_RT_REG_SZ, NULL,
NULL,
®ValueLength);
if (stat != ERROR_SUCCESS){
free(defaultDistKey);
return NULL;
}
regValue = (LPWSTR)malloc((regValueLength+1) * sizeof(wchar_t));
stat = RegGetValue(HKEY_CURRENT_USER,
defaultDistKey,
L"DistributionName",
RRF_RT_REG_SZ, NULL,
(PVOID)regValue,
®ValueLength);
free(defaultDistKey);
if (stat != ERROR_SUCCESS){
free(regValue);
return NULL;
}
return regValue;
}
ULONG wslSetUid(ULONG uid, BOOL save){
ULONG _ver, _uid;
WSL_DISTRIBUTION_FLAGS _flags;
PSTR *_env;
ULONG _envCnt;
PCWSTR defaultDistW = defaultWslDistributionName();
WslGetDistributionConfiguration(defaultDistW,
&_ver,
&_uid,
&_flags,
&_env,
&_envCnt);
//CoTaskMemFree(_env);
WslConfigureDistribution(defaultDistW, uid, _flags);
wslLog(L_INFO, L"Setting UID to %i\n", uid);
if (save && _uid != 0){
defaultUID = _uid;
distributionFlags = _flags;
}
return _uid;
}
void wslSetRootUid(){
ULONG _ver, _uid;
WSL_DISTRIBUTION_FLAGS _flags;
PSTR *_env;
ULONG _envCnt;
PCWSTR defaultDistW = defaultWslDistributionName();
WslGetDistributionConfiguration(defaultDistW,
&_ver,
&_uid,
&_flags,
&_env,
&_envCnt);
//CoTaskMemFree(_env);
defaultUID = _uid;
distributionFlags = _flags;
WslConfigureDistribution(defaultDistW, 0, _flags);
wslLogText(L_DEBUG, L"Setting UID to 0\n");
}
void wslRestoreUid(){
// if the saved UID is 0 don't set it to reduce risk of race conditions
if (defaultUID == 0 || distributionFlags == 0)
return;
PCWSTR defaultDistW = defaultWslDistributionName();
WslConfigureDistribution(defaultDistW, defaultUID, distributionFlags);
wslLog(L_INFO, L"Setting UID to %i\n", defaultUID);
}
/*
LPWSTR defaultWslDistributionNameW(){
LPWSTR defaultDistW;
LPTSTR defaultDist = defaultWslDistributionName();
if (defaultDist == NULL)
return NULL;
// check length of buffer to hold the wide string
int len =
MultiByteToWideChar(CP_ACP, 0, defaultDist, -1,
defaultDistW, 0);
if (len == 0){
free(defaultDist);
return NULL;
}
// now convert the string
defaultDistW = (LPWSTR)malloc(len * sizeof(wchar_t));
len =
MultiByteToWideChar(CP_ACP, 0, defaultDist, -1,
defaultDistW, len);
if (len == 0){
free(defaultDist);
free(defaultDistW);
return NULL;
}
return defaultDistW;
}
*/
int wslAtoW(LPCSTR input, LPWSTR *output){
if (input == NULL)
return -1;
int len = MultiByteToWideChar(CP_ACP, 0,
input, -1,
NULL, 0);
if (len == 0){
wslLogText(L_ERROR, L"Unable to get buffer length\n");
return -1;
}
*output = (LPWSTR)malloc(len * sizeof(wchar_t));
len = MultiByteToWideChar(CP_ACP, 0,
input, -1,
*output, len);
if (len == 0){
wslLogText(L_ERROR, L"Unable to convert argument to unicode\n");
return -1;
}
return len;
}
HANDLE wslServiceInteractiveA(LPCSTR serviceName, LPCSTR distributionName, WslInstance *instanceData){
LPWSTR serviceNameW = NULL;
LPWSTR distributionNameW = NULL;
int r = -1;
if (serviceName != NULL){
r = wslAtoW(serviceName, &serviceNameW);
if (r == -1)
return NULL;
else
instanceData->command = serviceNameW;
}
if (distributionName != NULL){
r = wslAtoW(distributionName, &distributionNameW);
if (r == -1)
return NULL;
else
instanceData->distributionName = distributionNameW;
}
HANDLE handle;
switch(instanceData->action){
case WSL_START:
handle = startWslServiceInteractive(instanceData);
break;
case WSL_STOP:
handle = stopWslServiceInteractive(instanceData);
break;
}
//free(serviceNameW);
return handle;
}
// TODO, add a flag to only run it if wsl is already running
HANDLE wslThreadInteractive(WslInstance *instanceData, LPTHREAD_START_ROUTINE startFunction, BOOL startWsl){
HANDLE hThread;
DWORD threadId;
if (instanceData->distributionName == NULL){
LPWSTR defaultDist = defaultWslDistributionName();
if (defaultDist == NULL){
wslLogText(L_ERROR, L"Unable to determine default distribution name.\n");
wslLogText(L_ERROR, L"Is WSL initialized?\n");
return NULL;
} else {
wslLog(L_DEBUG, L"Default distribution is: %s\n", defaultDist);
instanceData->distributionName = defaultDist;
}
}
if (!wslDistributionIsRegistered(instanceData->distributionName))
return NULL;
wslSetUid(instanceData->uid, TRUE);
hThread = CreateThread(NULL,0,
startFunction,
instanceData,0,&threadId);
if (hThread == NULL){
wslLog(L_ERROR, L"CreateThread() failed, error %u\n", GetLastError());
wslRestoreUid();
return NULL;
} else {
wslLogText(L_DEBUG, L"WSL launched\n");
///TODO: figure out a better way to delay resetting the UID
Sleep(2000);
wslRestoreUid();
}
return hThread;
}