You've already forked openvpn-gui
mirror of
https://github.com/OpenVPN/openvpn-gui.git
synced 2025-11-26 14:08:00 +08:00
In some cases the service may take a while to startup openvpn.exe, causing connection to the management interface to timeout. This could leave behind the OpenVPN process if/when it eventually starts up. (Trac 905, 1050). As errors in starting up the OpenVPN daemon are independently handled, its better to keep retrying the management interface connection until aborted due to errors or by the user. - On timeout, log a message on the status window and retry the management interface connection - Eliminate the timed-out state that is no longer used - Call StopOpenVPN() before abort so that OpenVPN daemon is not left running in case it starts up later. - In the unlikely event that OpenManagement() fails, show an error - User can abort by pressing disconnect A "retrying.." message is logged on to the status window every 15 seconds. See Trac: #905, #1050 Signed-off-by: Selva Nair <selva.nair@gmail.com>
407 lines
11 KiB
C
407 lines
11 KiB
C
/*
|
|
* 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. */
|
|
CloseManagement (c);
|
|
if (c->state != disconnected)
|
|
rtmsg_handler[timeout_](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 (strncmp(pos, "ECHO:", 5) == 0)
|
|
{
|
|
if (rtmsg_handler[echo_])
|
|
rtmsg_handler[echo_](c, pos + 5);
|
|
}
|
|
else if (strncmp(pos, "BYTECOUNT:", 10) == 0)
|
|
{
|
|
if (rtmsg_handler[bytecount_])
|
|
rtmsg_handler[bytecount_](c, pos + 10);
|
|
}
|
|
else if (strncmp(pos, "INFOMSG:", 8) == 0)
|
|
{
|
|
if (rtmsg_handler[infomsg_])
|
|
rtmsg_handler[infomsg_](c, pos + 8);
|
|
}
|
|
}
|
|
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)
|
|
{
|
|
/* Response sent to management is not processed. Log an error in status window */
|
|
char buf[256];
|
|
_snprintf_0(buf, "%lld,N,Previous command sent to management failed: %s",
|
|
(long long)time(NULL), line)
|
|
rtmsg_handler[log_](c, buf);
|
|
|
|
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();
|
|
}
|
|
}
|