| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- /**
- * @file tapwin32-funcs.c
- * @author Ambroz Bizjak <ambrop7@gmail.com>
- *
- * @section LICENSE
- *
- * This file is part of BadVPN.
- *
- * BadVPN is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2
- * as published by the Free Software Foundation.
- *
- * BadVPN 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 this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
- #include <stddef.h>
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #include <misc/debug.h>
- #include "wintap-common.h"
- #include <tuntap/tapwin32-funcs.h>
- static int split_spec (char *name, char *sep, char *out_fields[], int num_fields)
- {
- ASSERT(num_fields > 0)
- ASSERT(strlen(sep) > 0)
-
- size_t seplen = strlen(sep);
-
- int i;
- for (i = 0; i < num_fields - 1; i++) {
- char *s = strstr(name, sep);
- if (!s) {
- DEBUG("missing separator number %d", (i + 1));
- return 0;
- }
-
- int flen = s - name;
- memcpy(out_fields[i], name, flen);
- out_fields[i][flen] = '\0';
-
- name = s + seplen;
- }
-
- int flen = strlen(name);
- memcpy(out_fields[i], name, flen);
- out_fields[i][flen] = '\0';
-
- return 1;
- }
- static int parse_ipv4_addr (char *name, uint8_t out_addr[4])
- {
- if (strlen(name) > 15) {
- return 0;
- }
-
- char (nums[4])[16];
-
- char *out_fields[] = { nums[0], nums[1], nums[2], nums[3] };
-
- if (!split_spec(name, ".", out_fields, 4)) {
- return 0;
- }
-
- for (int i = 0; i < 4; i++) {
- if (strlen(nums[i]) > 3) {
- return 0;
- }
-
- int num = atoi(nums[i]);
-
- if (!(num >= 0 && num < 256)) {
- return 0;
- }
-
- out_addr[i] = num;
- }
-
- return 1;
- }
- int tapwin32_parse_tap_spec (char *name, char *out_component_id, char *out_human_name)
- {
- char *out_fields[] = { out_component_id, out_human_name };
-
- return split_spec(name, ":", out_fields, 2);
- }
- int tapwin32_parse_tun_spec (char *name, char *out_component_id, char *out_human_name, uint32_t out_addrs[3])
- {
- int namelen = strlen(name);
-
- char (addr_strs[3])[namelen + 1];
-
- char *out_fields[] = { out_component_id, out_human_name, addr_strs[0], addr_strs[1], addr_strs[2] };
-
- if (!split_spec(name, ":", out_fields, 5)) {
- return 0;
- }
-
- for (int i = 0; i < 3; i++) {
- if (!parse_ipv4_addr(addr_strs[i], (uint8_t *)(out_addrs + i))) {
- return 0;
- }
- }
-
- return 1;
- }
- int tapwin32_find_device (char *device_component_id, char *device_name, char (*device_path)[TAPWIN32_MAX_REG_SIZE])
- {
- // open adapter key
- // used to find all devices with the given ComponentId
- HKEY adapter_key;
- if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, ADAPTER_KEY, 0, KEY_READ, &adapter_key) != ERROR_SUCCESS) {
- DEBUG("Error opening adapter key");
- return 0;
- }
-
- char net_cfg_instance_id[TAPWIN32_MAX_REG_SIZE];
- int found = 0;
-
- DWORD i;
- for (i = 0;; i++) {
- DWORD len;
- DWORD type;
-
- char key_name[TAPWIN32_MAX_REG_SIZE];
- len = sizeof(key_name);
- if (RegEnumKeyEx(adapter_key, i, key_name, &len, NULL, NULL, NULL, NULL) != ERROR_SUCCESS) {
- break;
- }
-
- char unit_string[TAPWIN32_MAX_REG_SIZE];
- snprintf(unit_string, sizeof(unit_string), "%s\\%s", ADAPTER_KEY, key_name);
- HKEY unit_key;
- if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, unit_string, 0, KEY_READ, &unit_key) != ERROR_SUCCESS) {
- continue;
- }
-
- char component_id[TAPWIN32_MAX_REG_SIZE];
- len = sizeof(component_id);
- if (RegQueryValueEx(unit_key, "ComponentId", NULL, &type, component_id, &len) != ERROR_SUCCESS || type != REG_SZ) {
- ASSERT_FORCE(RegCloseKey(unit_key) == ERROR_SUCCESS)
- continue;
- }
-
- len = sizeof(net_cfg_instance_id);
- if (RegQueryValueEx(unit_key, "NetCfgInstanceId", NULL, &type, net_cfg_instance_id, &len) != ERROR_SUCCESS || type != REG_SZ) {
- ASSERT_FORCE(RegCloseKey(unit_key) == ERROR_SUCCESS)
- continue;
- }
-
- RegCloseKey(unit_key);
-
- // check if ComponentId matches
- if (!strcmp(component_id, device_component_id)) {
- // if no name was given, use the first device with the given ComponentId
- if (!device_name) {
- found = 1;
- break;
- }
-
- // open connection key
- char conn_string[TAPWIN32_MAX_REG_SIZE];
- snprintf(conn_string, sizeof(conn_string), "%s\\%s\\Connection", NETWORK_CONNECTIONS_KEY, net_cfg_instance_id);
- HKEY conn_key;
- if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, conn_string, 0, KEY_READ, &conn_key) != ERROR_SUCCESS) {
- continue;
- }
-
- // read name
- char name[TAPWIN32_MAX_REG_SIZE];
- len = sizeof(name);
- if (RegQueryValueEx(conn_key, "Name", NULL, &type, name, &len) != ERROR_SUCCESS || type != REG_SZ) {
- ASSERT_FORCE(RegCloseKey(conn_key) == ERROR_SUCCESS)
- continue;
- }
-
- ASSERT_FORCE(RegCloseKey(conn_key) == ERROR_SUCCESS)
-
- // check name
- if (!strcmp(name, device_name)) {
- found = 1;
- break;
- }
- }
- }
-
- ASSERT_FORCE(RegCloseKey(adapter_key) == ERROR_SUCCESS)
-
- if (!found) {
- return 0;
- }
-
- snprintf(*device_path, sizeof(*device_path), "%s%s%s", USERMODEDEVICEDIR, net_cfg_instance_id, TAPSUFFIX);
-
- return 1;
- }
|