summaryrefslogtreecommitdiff
path: root/src/openvpnserv/automatic.c
blob: aa7618f472464432017b973fdb52e7e9124f3733 (plain)
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
/*
 *  OpenVPN -- An application to securely tunnel IP networks
 *             over a single TCP/UDP port, with support for SSL/TLS-based
 *             session authentication and key exchange,
 *             packet encryption, packet authentication, and
 *             packet compression.
 *
 *  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
 *
 *  This program 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.
 *
 *  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
 */

/*
 * This program allows one or more OpenVPN processes to be started
 * as a service.  To build, you must get the service sample from the
 * Platform SDK and replace Simple.c with this file.
 *
 * You should also apply service.patch to
 * service.c and service.h from the Platform SDK service sample.
 *
 * This code is designed to be built with the mingw compiler.
 */

#include "service.h"

#include <stdio.h>
#include <stdarg.h>
#include <process.h>

/* bool definitions */
#define bool int
#define true 1
#define false 0

static SERVICE_STATUS_HANDLE service;
static SERVICE_STATUS status;

openvpn_service_t automatic_service = {
  automatic,
  TEXT(PACKAGE_NAME "ServiceLegacy"),
  TEXT(PACKAGE_NAME " Legacy Service"),
  TEXT(SERVICE_DEPENDENCIES),
  SERVICE_DEMAND_START
};

struct security_attributes
{
  SECURITY_ATTRIBUTES sa;
  SECURITY_DESCRIPTOR sd;
};

/*
 * Which registry key in HKLM should
 * we get config info from?
 */
#define REG_KEY "SOFTWARE\\" PACKAGE_NAME

static HANDLE exit_event = NULL;

/* clear an object */
#define CLEAR(x) memset(&(x), 0, sizeof(x))


bool
init_security_attributes_allow_all (struct security_attributes *obj)
{
  CLEAR (*obj);

  obj->sa.nLength = sizeof (SECURITY_ATTRIBUTES);
  obj->sa.lpSecurityDescriptor = &obj->sd;
  obj->sa.bInheritHandle = TRUE;
  if (!InitializeSecurityDescriptor (&obj->sd, SECURITY_DESCRIPTOR_REVISION))
    return false;
  if (!SetSecurityDescriptorDacl (&obj->sd, TRUE, NULL, FALSE))
    return false;
  return true;
}

/*
 * This event is initially created in the non-signaled
 * state.  It will transition to the signaled state when
 * we have received a terminate signal from the Service
 * Control Manager which will cause an asynchronous call
 * of ServiceStop below.
 */
#define EXIT_EVENT_NAME  TEXT(PACKAGE "_exit_1")

HANDLE
create_event (LPCTSTR name, bool allow_all, bool initial_state, bool manual_reset)
{
  if (allow_all)
    {
      struct security_attributes sa;
      if (!init_security_attributes_allow_all (&sa))
        return NULL;
      return CreateEvent (&sa.sa, (BOOL)manual_reset, (BOOL)initial_state, name);
    }
  else
    return CreateEvent (NULL, (BOOL)manual_reset, (BOOL)initial_state, name);
}

void
close_if_open (HANDLE h)
{
  if (h != NULL)
    CloseHandle (h);
}

static bool
match (const WIN32_FIND_DATA *find, LPCTSTR ext)
{
  int i;

  if (find->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
    return false;

  if (!_tcslen (ext))
    return true;

  i = _tcslen (find->cFileName) - _tcslen (ext) - 1;
  if (i < 1)
    return false;

  return find->cFileName[i] == '.' && !_tcsicmp (find->cFileName + i + 1, ext);
}

/*
 * Modify the extension on a filename.
 */
static bool
modext (LPTSTR dest, int size, LPCTSTR src, LPCTSTR newext)
{
  int i;

  if (size > 0 && (_tcslen (src) + 1) <= size)
    {
      _tcscpy (dest, src);
      dest [size - 1] = TEXT('\0');
      i = _tcslen (dest);
      while (--i >= 0)
        {
          if (dest[i] == TEXT('\\'))
            break;
          if (dest[i] == TEXT('.'))
            {
              dest[i] = TEXT('\0');
              break;
            }
        }
      if (_tcslen (dest) + _tcslen(newext) + 2 <= size)
        {
          _tcscat (dest, TEXT("."));
          _tcscat (dest, newext);
          return true;
        }
      dest[0] = TEXT('\0');
    }
  return false;
}

static DWORD WINAPI
ServiceCtrlAutomatic (DWORD ctrl_code, DWORD event, LPVOID data, LPVOID ctx)
{
  SERVICE_STATUS *status = ctx;
  switch (ctrl_code)
    {
    case SERVICE_CONTROL_STOP:
      status->dwCurrentState = SERVICE_STOP_PENDING;
      ReportStatusToSCMgr (service, status);
      if (exit_event)
        SetEvent (exit_event);
      return NO_ERROR;

    case SERVICE_CONTROL_INTERROGATE:
      return NO_ERROR;

    default:
      return ERROR_CALL_NOT_IMPLEMENTED;
    }
}


VOID WINAPI
ServiceStartAutomatic (DWORD dwArgc, LPTSTR *lpszArgv)
{
  DWORD error = NO_ERROR;
  settings_t settings;

  service = RegisterServiceCtrlHandlerEx (automatic_service.name, ServiceCtrlAutomatic, &status);
  if (!service)
    return;

  status.dwServiceType = SERVICE_WIN32_SHARE_PROCESS;
  status.dwCurrentState = SERVICE_START_PENDING;
  status.dwServiceSpecificExitCode = NO_ERROR;
  status.dwWin32ExitCode = NO_ERROR;
  status.dwWaitHint = 3000;

  if (!ReportStatusToSCMgr(service, &status))
    {
      MsgToEventLog (M_ERR, TEXT("ReportStatusToSCMgr #1 failed"));
      goto finish;
    }

  /*
   * Create our exit event
   */
  exit_event = create_event (EXIT_EVENT_NAME, false, false, true);
  if (!exit_event)
    {
      MsgToEventLog (M_ERR, TEXT("CreateEvent failed"));
      goto finish;
    }

  /*
   * If exit event is already signaled, it means we were not
   * shut down properly.
   */
  if (WaitForSingleObject (exit_event, 0) != WAIT_TIMEOUT)
    {
      MsgToEventLog (M_ERR, TEXT("Exit event is already signaled -- we were not shut down properly"));
      goto finish;
    }

  if (!ReportStatusToSCMgr(service, &status))
    {
      MsgToEventLog (M_ERR, TEXT("ReportStatusToSCMgr #2 failed"));
      goto finish;
    }

  /*
   * Read info from registry in key HKLM\SOFTWARE\OpenVPN
   */
  error = GetOpenvpnSettings (&settings);
  if (error != ERROR_SUCCESS)
    goto finish;

  /*
   * Instantiate an OpenVPN process for each configuration
   * file found.
   */
  {
    WIN32_FIND_DATA find_obj;
    HANDLE find_handle;
    BOOL more_files;
    TCHAR find_string[MAX_PATH];

    openvpn_sntprintf (find_string, MAX_PATH, TEXT("%s\\*"), settings.config_dir);

    find_handle = FindFirstFile (find_string, &find_obj);
    if (find_handle == INVALID_HANDLE_VALUE)
      {
        MsgToEventLog (M_ERR, TEXT("Cannot get configuration file list using: %s"), find_string);
        goto finish;
      }

    /*
     * Loop over each config file
     */
    do {
      HANDLE log_handle = NULL;
      STARTUPINFO start_info;
      PROCESS_INFORMATION proc_info;
      struct security_attributes sa;
      TCHAR log_file[MAX_PATH];
      TCHAR log_path[MAX_PATH];
      TCHAR command_line[256];

      CLEAR (start_info);
      CLEAR (proc_info);
      CLEAR (sa);

      if (!ReportStatusToSCMgr(service, &status))
        {
          MsgToEventLog (M_ERR, TEXT("ReportStatusToSCMgr #3 failed"));
          FindClose (find_handle);
          goto finish;
        }

      /* does file have the correct type and extension? */
      if (match (&find_obj, settings.ext_string))
        {
          /* get log file pathname */
          if (!modext (log_file, _countof (log_file), find_obj.cFileName, TEXT("log")))
            {
              MsgToEventLog (M_ERR, TEXT("Cannot construct logfile name based on: %s"), find_obj.cFileName);
              FindClose (find_handle);
              goto finish;
            }
          openvpn_sntprintf (log_path, _countof (log_path),
                             TEXT("%s\\%s"), settings.log_dir, log_file);

          /* construct command line */
          openvpn_sntprintf (command_line, _countof (command_line), TEXT(PACKAGE " --service %s 1 --config \"%s\""),
                      EXIT_EVENT_NAME,
                      find_obj.cFileName);

          /* Make security attributes struct for logfile handle so it can
             be inherited. */
          if (!init_security_attributes_allow_all (&sa))
            {
              error = MsgToEventLog (M_SYSERR, TEXT("InitializeSecurityDescriptor start_" PACKAGE " failed"));
              goto finish;
            }

          /* open logfile as stdout/stderr for soon-to-be-spawned subprocess */
          log_handle = CreateFile (log_path,
                                   GENERIC_WRITE,
                                   FILE_SHARE_READ,
                                   &sa.sa,
                                   settings.append ? OPEN_ALWAYS : CREATE_ALWAYS,
                                   FILE_ATTRIBUTE_NORMAL,
                                   NULL);

          if (log_handle == INVALID_HANDLE_VALUE)
            {
              error = MsgToEventLog (M_SYSERR, TEXT("Cannot open logfile: %s"), log_path);
              FindClose (find_handle);
              goto finish;
            }

          /* append to logfile? */
          if (settings.append)
            {
              if (SetFilePointer (log_handle, 0, NULL, FILE_END) == INVALID_SET_FILE_POINTER)
                {
                  error = MsgToEventLog (M_SYSERR, TEXT("Cannot seek to end of logfile: %s"), log_path);
                  FindClose (find_handle);
                  goto finish;
                }
            }

          /* fill in STARTUPINFO struct */
          GetStartupInfo(&start_info);
          start_info.cb = sizeof(start_info);
          start_info.dwFlags = STARTF_USESTDHANDLES|STARTF_USESHOWWINDOW;
          start_info.wShowWindow = SW_HIDE;
          start_info.hStdInput = GetStdHandle(STD_INPUT_HANDLE);
          start_info.hStdOutput = start_info.hStdError = log_handle;

          /* create an OpenVPN process for one config file */
          if (!CreateProcess(settings.exe_path,
                             command_line,
                             NULL,
                             NULL,
                             TRUE,
                             settings.priority | CREATE_NEW_CONSOLE,
                             NULL,
                             settings.config_dir,
                             &start_info,
                             &proc_info))
            {
              error = MsgToEventLog (M_SYSERR, TEXT("CreateProcess failed, exe='%s' cmdline='%s' dir='%s'"),
                   settings.exe_path,
                   command_line,
                   settings.config_dir);

              FindClose (find_handle);
              CloseHandle (log_handle);
              goto finish;
            }

          /* close unneeded handles */
          Sleep (1000); /* try to prevent race if we close logfile
                           handle before child process DUPs it */
          if (!CloseHandle (proc_info.hProcess)
              || !CloseHandle (proc_info.hThread)
              || !CloseHandle (log_handle))
            {
              error = MsgToEventLog (M_SYSERR, TEXT("CloseHandle failed"));
              goto finish;
            }
        }

      /* more files to process? */
      more_files = FindNextFile (find_handle, &find_obj);

    } while (more_files);

    FindClose (find_handle);
  }

  /* we are now fully started */
  status.dwCurrentState = SERVICE_RUNNING;
  status.dwWaitHint = 0;
  if (!ReportStatusToSCMgr(service, &status))
    {
      MsgToEventLog (M_ERR, TEXT("ReportStatusToSCMgr SERVICE_RUNNING failed"));
      goto finish;
    }

  /* wait for our shutdown signal */
  if (WaitForSingleObject (exit_event, INFINITE) != WAIT_OBJECT_0)
    MsgToEventLog (M_ERR, TEXT("wait for shutdown signal failed"));

finish:
  if (exit_event)
    CloseHandle (exit_event);

  status.dwCurrentState = SERVICE_STOPPED;
  status.dwWin32ExitCode = error;
  ReportStatusToSCMgr (service, &status);
}