35 #pragma comment(lib, "ole32.lib")
36 #pragma comment(lib, "setupapi.lib")
49 L
"tapctl <command> [<command specific options>]\n"
53 L
"create Create a new TUN/TAP adapter\n"
54 L
"list List TUN/TAP adapters\n"
55 L
"delete Delete specified network adapter\n"
56 L
"help Display this text\n"
58 L
"Hint: Use \"tapctl help <command>\" to display help for particular command.\n"
64 L
"Creates a new TUN/TAP adapter\n"
68 L
"tapctl create [<options>]\n"
72 L
"--name <name> Set TUN/TAP adapter name. Should the adapter with given name \n"
73 L
" already exist, an error is returned. If this option is not \n"
74 L
" specified, a default adapter name is chosen by Windows. \n"
75 L
" Note: This name can also be specified as OpenVPN's --dev-node \n"
77 L
"--hwid <hwid> Adapter hardware ID. Default value is root\\tap0901, which \n"
78 L
" describes tap-windows6 driver. To work with wintun or ovpn-dco \n"
79 L
" driver, specify 'wintun' or 'ovpn-dco'. \n"
83 L
"This command prints newly created TUN/TAP adapter's GUID to stdout. \n"
89 L
"Lists TUN/TAP adapters\n"
97 L
"--hwid <hwid> Adapter hardware ID. By default, root\\tap0901, tap0901, wintun and \n"
98 L
" ovpn-dco adapters are listed. Use this switch to limit the list.\n"
102 L
"This command prints all TUN/TAP adapters to stdout. \n"
108 L
"Deletes the specified network adapter\n"
112 L
"tapctl delete <adapter GUID | adapter name>\n"
135 if (wcsicmp(name, a->szName) == 0)
139 LPOLESTR adapter_id = NULL;
140 StringFromIID((REFIID)&a->guid, &adapter_id);
141 fwprintf(stderr, L
"Adapter \"%ls\" already exists (GUID %"
142 L
"ls).\n", a->szName, adapter_id);
143 CoTaskMemFree(adapter_id);
166 if (wcsicmp(hwid, L
"ovpn-dco") == 0)
168 base_name = L
"OpenVPN Data Channel Offload";
170 else if (wcsicmp(hwid, L
"wintun") == 0)
172 base_name = L
"OpenVPN Wintun";
176 base_name = L
"OpenVPN TAP-Windows6";
185 return wcsdup(base_name);
188 size_t name_len = wcslen(base_name) + 10;
189 LPWSTR name = malloc(name_len *
sizeof(WCHAR));
194 for (
int i = 1; i < 100; ++i)
196 swprintf_s(name, name_len, L
"%ls #%d", base_name, i);
214 BOOL bRebootRequired = FALSE;
217 SetupSetNonInteractiveMode(TRUE);
224 else if (wcsicmp(
argv[1], L
"help") == 0)
231 else if (wcsicmp(
argv[2], L
"create") == 0)
235 else if (wcsicmp(
argv[2], L
"list") == 0)
239 else if (wcsicmp(
argv[2], L
"delete") == 0)
245 fwprintf(stderr, L
"Unknown command \"%ls"
246 L
"\". Please, use \"tapctl help\" to list supported commands.\n",
argv[2]);
251 else if (wcsicmp(
argv[1], L
"create") == 0)
253 LPCWSTR szName = NULL;
257 for (
int i = 2; i < argc; i++)
259 if (wcsicmp(
argv[i], L
"--name") == 0)
263 else if (wcsicmp(
argv[i], L
"--hwid") == 0)
269 fwprintf(stderr, L
"Unknown option \"%ls"
270 L
"\". Please, use \"tapctl help create\" to list supported options. Ignored.\n",
277 LPOLESTR szAdapterId = NULL;
284 if (dwResult != ERROR_SUCCESS)
286 fwprintf(stderr, L
"Creating TUN/TAP adapter failed (error 0x%x).\n", dwResult);
287 iResult = 1;
goto quit;
293 if (dwResult != ERROR_SUCCESS)
295 fwprintf(stderr, L
"Enumerating adapters failed (error 0x%x).\n", dwResult);
297 goto create_delete_adapter;
308 goto create_cleanup_pAdapterList;
313 if (dwResult != ERROR_SUCCESS)
315 StringFromIID((REFIID)&guidAdapter, &szAdapterId);
316 fwprintf(stderr, L
"Renaming TUN/TAP adapter %ls"
317 L
" to \"%ls\" failed (error 0x%x).\n",
318 szAdapterId, adapter_name, dwResult);
319 CoTaskMemFree(szAdapterId);
320 iResult = 1;
goto quit;
326 create_cleanup_pAdapterList:
332 goto create_delete_adapter;
336 StringFromIID((REFIID)&guidAdapter, &szAdapterId);
337 fwprintf(stdout, L
"%ls\n", szAdapterId);
338 CoTaskMemFree(szAdapterId);
340 iResult = 0;
goto quit;
342 create_delete_adapter:
347 iResult = 1;
goto quit;
349 else if (wcsicmp(
argv[1], L
"list") == 0)
351 WCHAR szzHwId[0x100] =
358 for (
int i = 2; i < argc; i++)
360 if (wcsicmp(
argv[i], L
"--hwid") == 0)
362 memset(szzHwId, 0,
sizeof(szzHwId));
364 memcpy_s(szzHwId,
sizeof(szzHwId) - 2*
sizeof(WCHAR) ,
argv[i], wcslen(
argv[i])*
sizeof(WCHAR));
368 fwprintf(stderr, L
"Unknown option \"%ls"
369 L
"\". Please, use \"tapctl help list\" to list supported options. Ignored.\n",
377 if (dwResult != ERROR_SUCCESS)
379 fwprintf(stderr, L
"Enumerating TUN/TAP adapters failed (error 0x%x).\n", dwResult);
380 iResult = 1;
goto quit;
385 LPOLESTR szAdapterId = NULL;
386 StringFromIID((REFIID)&pAdapter->guid, &szAdapterId);
387 fwprintf(stdout, L
"%ls\t%"
388 L
"ls\n", szAdapterId, pAdapter->szName);
389 CoTaskMemFree(szAdapterId);
395 else if (wcsicmp(
argv[1], L
"delete") == 0)
399 fwprintf(stderr, L
"Missing adapter GUID or name. Please, use \"tapctl help delete\" for usage info.\n");
404 if (FAILED(IIDFromString(
argv[2], (LPIID)&guidAdapter)))
409 if (dwResult != ERROR_SUCCESS)
411 fwprintf(stderr, L
"Enumerating TUN/TAP adapters failed (error 0x%x).\n", dwResult);
412 iResult = 1;
goto quit;
417 if (pAdapter == NULL)
419 fwprintf(stderr, L
"\"%ls\" adapter not found.\n",
argv[2]);
420 iResult = 1;
goto delete_cleanup_pAdapterList;
422 else if (wcsicmp(
argv[2], pAdapter->szName) == 0)
424 memcpy(&guidAdapter, &pAdapter->guid,
sizeof(GUID));
431 delete_cleanup_pAdapterList:
444 if (dwResult != ERROR_SUCCESS)
446 fwprintf(stderr, L
"Deleting adapter \"%ls"
447 L
"\" failed (error 0x%x).\n",
argv[2], dwResult);
448 iResult = 1;
goto quit;
451 iResult = 0;
goto quit;
455 fwprintf(stderr, L
"Unknown command \"%ls"
456 L
"\". Please, use \"tapctl help\" to list supported commands.\n",
argv[1]);
463 fwprintf(stderr, L
"A system reboot is required.\n");
473 UNREFERENCED_PARAMETER(flags);
480 x_msg_va(
const unsigned int flags,
const char *format, va_list arglist)
483 vfprintf(stderr, format, arglist);
484 fwprintf(stderr, L
"\n");
489 DWORD dwResult = GetLastError();
490 LPWSTR szErrMessage = NULL;
492 FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_IGNORE_INSERTS,
496 (LPWSTR)&szErrMessage,
498 NULL) && szErrMessage)
501 for (
size_t i = 0, i_last = 0;; i++)
505 if (!iswspace(szErrMessage[i]))
512 szErrMessage[i_last] = 0;
518 fwprintf(stderr, L
"Error 0x%x: %ls\n", dwResult, szErrMessage);
520 LocalFree(szErrMessage);
524 fwprintf(stderr, L
"Error 0x%x\n", dwResult);