mirror of https://github.com/OpenVPN/openvpn-gui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
385 lines
10 KiB
385 lines
10 KiB
/* |
|
* OpenVPN-GUI -- A Windows GUI for OpenVPN. |
|
* |
|
* Copyright (C) 2010 Heiko Hund <heikoh@users.sf.net> |
|
* |
|
* This program 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 2 of the License, or |
|
* (at your option) any later version. |
|
* |
|
* This program 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 (see the file COPYING included with this |
|
* distribution); if not, write to the Free Software Foundation, Inc., |
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
*/ |
|
|
|
#ifdef HAVE_CONFIG_H |
|
#include <config.h> |
|
#endif |
|
|
|
#include <windows.h> |
|
#include <winsock2.h> |
|
#include <malloc.h> |
|
|
|
#include "options.h" |
|
#include "manage.h" |
|
#include "main.h" |
|
#include "misc.h" |
|
|
|
extern options_t o; |
|
|
|
static mgmt_msg_func rtmsg_handler[mgmt_rtmsg_type_max]; |
|
|
|
/* |
|
* Number of seconds to try connecting to management interface |
|
*/ |
|
static const time_t max_connect_time = 15; |
|
|
|
/* |
|
* Initialize the real-time notification handlers |
|
*/ |
|
void |
|
InitManagement(const mgmt_rtmsg_handler *handler) |
|
{ |
|
int i; |
|
for (i = 0; handler[i].handler; ++i) |
|
{ |
|
rtmsg_handler[handler[i].type] = handler[i].handler; |
|
} |
|
} |
|
|
|
/* |
|
* Connect to the OpenVPN management interface and register |
|
* asynchronous socket event notification for it |
|
*/ |
|
BOOL |
|
OpenManagement(connection_t *c) |
|
{ |
|
WSADATA wsaData; |
|
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != 0) |
|
return FALSE; |
|
|
|
c->manage.connected = FALSE; |
|
c->manage.sk = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); |
|
if (c->manage.sk == INVALID_SOCKET) |
|
{ |
|
WSACleanup (); |
|
return FALSE; |
|
} |
|
if (WSAAsyncSelect(c->manage.sk, c->hwndStatus, WM_MANAGEMENT, |
|
FD_CONNECT|FD_READ|FD_WRITE|FD_CLOSE) != 0) |
|
return FALSE; |
|
|
|
connect(c->manage.sk, (SOCKADDR *)&c->manage.skaddr, sizeof(c->manage.skaddr)); |
|
c->manage.timeout = time(NULL) + max_connect_time; |
|
|
|
return TRUE; |
|
} |
|
|
|
|
|
/* |
|
* Try to send a queued management command to OpenVPN |
|
*/ |
|
static void |
|
SendCommand(connection_t *c) |
|
{ |
|
int res; |
|
mgmt_cmd_t *cmd = c->manage.cmd_queue; |
|
if (cmd == NULL || cmd->size == 0) |
|
return; |
|
|
|
res = send(c->manage.sk, cmd->command, cmd->size, 0); |
|
if (res < 1) |
|
return; |
|
|
|
if (res != cmd->size) |
|
memmove(cmd->command, cmd->command + res, cmd->size - res); |
|
|
|
cmd->size -= res; |
|
} |
|
|
|
|
|
/* |
|
* Send a command to the OpenVPN management interface |
|
*/ |
|
BOOL |
|
ManagementCommand(connection_t *c, char *command, mgmt_msg_func handler, mgmt_cmd_type type) |
|
{ |
|
mgmt_cmd_t *cmd = calloc(1, sizeof(*cmd)); |
|
if (cmd == NULL) |
|
return FALSE; |
|
|
|
cmd->size = strlen(command) + 1; |
|
cmd->command = malloc(cmd->size); |
|
if (cmd->command == NULL) |
|
{ |
|
free(cmd); |
|
return FALSE; |
|
} |
|
memcpy(cmd->command, command, cmd->size); |
|
*(cmd->command + cmd->size - 1) = '\n'; |
|
|
|
cmd->handler = handler; |
|
cmd->type = type; |
|
|
|
if (c->manage.cmd_queue) |
|
{ |
|
cmd->next = c->manage.cmd_queue; |
|
cmd->prev = c->manage.cmd_queue->prev; |
|
cmd->next->prev = cmd->prev->next = cmd; |
|
} |
|
else |
|
{ |
|
cmd->next = cmd->prev = cmd; |
|
c->manage.cmd_queue = cmd; |
|
} |
|
|
|
if (c->manage.cmd_queue == cmd) |
|
SendCommand(c); |
|
|
|
return TRUE; |
|
} |
|
|
|
|
|
/* |
|
* Remove a command from a connection's command queue |
|
*/ |
|
static BOOL |
|
UnqueueCommand(connection_t *c) |
|
{ |
|
mgmt_cmd_t *cmd = c->manage.cmd_queue; |
|
if (!cmd) |
|
return FALSE; |
|
|
|
/* Wipe command as it may contain passwords */ |
|
memset(cmd->command, 'x', cmd->size); |
|
|
|
if (cmd->type == combined) |
|
{ |
|
cmd->type = regular; |
|
return TRUE; |
|
} |
|
|
|
if (cmd->next == cmd) |
|
{ |
|
c->manage.cmd_queue = NULL; |
|
} |
|
else |
|
{ |
|
cmd->prev->next = cmd->next; |
|
cmd->next->prev = cmd->prev; |
|
c->manage.cmd_queue = cmd->next; |
|
SendCommand(c); |
|
} |
|
|
|
free(cmd->command); |
|
free(cmd); |
|
|
|
return TRUE; |
|
} |
|
|
|
|
|
/* |
|
* Handle management socket events asynchronously |
|
*/ |
|
void |
|
OnManagement(SOCKET sk, LPARAM lParam) |
|
{ |
|
int res; |
|
char *data; |
|
ULONG data_size, offset; |
|
|
|
connection_t *c = GetConnByManagement(sk); |
|
if (c == NULL) |
|
return; |
|
|
|
switch (WSAGETSELECTEVENT(lParam)) |
|
{ |
|
case FD_CONNECT: |
|
if (WSAGETSELECTERROR(lParam)) |
|
{ |
|
if (time(NULL) < c->manage.timeout) |
|
connect(c->manage.sk, (SOCKADDR *)&c->manage.skaddr, sizeof(c->manage.skaddr)); |
|
else |
|
{ |
|
/* Connection to MI timed out. */ |
|
if (c->state != disconnected) |
|
c->state = timedout; |
|
CloseManagement (c); |
|
rtmsg_handler[stop](c, ""); |
|
} |
|
} |
|
else |
|
c->manage.connected = TRUE; |
|
break; |
|
|
|
case FD_READ: |
|
if (ioctlsocket(c->manage.sk, FIONREAD, &data_size) != 0 |
|
|| data_size == 0) |
|
return; |
|
|
|
data = malloc(c->manage.saved_size + data_size); |
|
if (data == NULL) |
|
return; |
|
|
|
res = recv(c->manage.sk, data + c->manage.saved_size, data_size, 0); |
|
if (res != (int) data_size) |
|
{ |
|
free(data); |
|
return; |
|
} |
|
|
|
/* Copy previously saved management data */ |
|
if (c->manage.saved_size) |
|
{ |
|
memcpy(data, c->manage.saved_data, c->manage.saved_size); |
|
data_size += c->manage.saved_size; |
|
free(c->manage.saved_data); |
|
c->manage.saved_data = NULL; |
|
c->manage.saved_size = 0; |
|
} |
|
|
|
offset = 0; |
|
while (offset < data_size) |
|
{ |
|
char *pos; |
|
char *line = data + offset; |
|
size_t line_size = data_size - offset; |
|
|
|
pos = memchr(line, (*c->manage.password ? ':' : '\n'), line_size); |
|
if (pos == NULL) |
|
{ |
|
c->manage.saved_data = malloc(line_size); |
|
if (c->manage.saved_data) |
|
{ |
|
c->manage.saved_size = line_size; |
|
memcpy(c->manage.saved_data, line, c->manage.saved_size); |
|
} |
|
break; |
|
} |
|
|
|
offset += (pos - line) + 1; |
|
|
|
/* Reply to a management password request */ |
|
if (*c->manage.password) |
|
{ |
|
ManagementCommand(c, c->manage.password, NULL, regular); |
|
*c->manage.password = '\0'; |
|
continue; |
|
} |
|
|
|
/* Handle regular management interface output */ |
|
line[pos - line - 1] = '\0'; |
|
if (line[0] == '>') |
|
{ |
|
/* Real time notifications */ |
|
pos = line + 1; |
|
if (strncmp(pos, "LOG:", 4) == 0) |
|
{ |
|
if (rtmsg_handler[log]) |
|
rtmsg_handler[log](c, pos + 4); |
|
} |
|
else if (strncmp(pos, "STATE:", 6) == 0) |
|
{ |
|
if (rtmsg_handler[state]) |
|
rtmsg_handler[state](c, pos + 6); |
|
} |
|
else if (strncmp(pos, "HOLD:", 5) == 0) |
|
{ |
|
if (rtmsg_handler[hold]) |
|
rtmsg_handler[hold](c, pos + 5); |
|
} |
|
else if (strncmp(pos, "PASSWORD:", 9) == 0) |
|
{ |
|
if (rtmsg_handler[password]) |
|
rtmsg_handler[password](c, pos + 9); |
|
} |
|
else if (strncmp(pos, "PROXY:", 6) == 0) |
|
{ |
|
if (rtmsg_handler[proxy]) |
|
rtmsg_handler[proxy](c, pos + 6); |
|
} |
|
else if (strncmp(pos, "INFO:", 5) == 0) |
|
{ |
|
/* delay until management interface accepts input */ |
|
Sleep(100); |
|
if (rtmsg_handler[ready]) |
|
rtmsg_handler[ready](c, pos + 5); |
|
} |
|
else if (strncmp(pos, "NEED-OK:", 8) == 0) |
|
{ |
|
if (rtmsg_handler[needok]) |
|
rtmsg_handler[needok](c, pos + 8); |
|
} |
|
else if (strncmp(pos, "NEED-STR:", 9) == 0) |
|
{ |
|
if (rtmsg_handler[needstr]) |
|
rtmsg_handler[needstr](c, pos + 9); |
|
} |
|
} |
|
else if (c->manage.cmd_queue) |
|
{ |
|
/* Response to commands */ |
|
mgmt_cmd_t *cmd = c->manage.cmd_queue; |
|
if (strncmp(line, "SUCCESS:", 8) == 0) |
|
{ |
|
if (cmd->handler) |
|
cmd->handler(c, line + 9); |
|
UnqueueCommand(c); |
|
} |
|
else if (strncmp(line, "ERROR:", 6) == 0) |
|
{ |
|
if (cmd->handler) |
|
cmd->handler(c, NULL); |
|
UnqueueCommand(c); |
|
} |
|
else if (strcmp(line, "END") == 0) |
|
{ |
|
UnqueueCommand(c); |
|
} |
|
else if (cmd->handler) |
|
{ |
|
cmd->handler(c, line); |
|
} |
|
} |
|
} |
|
free(data); |
|
break; |
|
|
|
case FD_WRITE: |
|
SendCommand(c); |
|
break; |
|
|
|
case FD_CLOSE: |
|
CloseManagement (c); |
|
if (rtmsg_handler[stop]) |
|
rtmsg_handler[stop](c, ""); |
|
break; |
|
} |
|
} |
|
|
|
void |
|
CloseManagement(connection_t *c) |
|
{ |
|
if (c->manage.sk != INVALID_SOCKET) |
|
{ |
|
if (c->manage.saved_size) |
|
{ |
|
free(c->manage.saved_data); |
|
c->manage.saved_data = NULL; |
|
c->manage.saved_size = 0; |
|
} |
|
closesocket(c->manage.sk); |
|
c->manage.sk = INVALID_SOCKET; |
|
c->manage.connected = FALSE; |
|
while (UnqueueCommand(c)) |
|
; |
|
WSACleanup(); |
|
} |
|
}
|
|
|