Imported Upstream version 0.3
[anytun.git] / src / win32 / winService.h
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2008 Othmar Gsenger, Erwin Nindl, 
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License version 3 as
21  *  published by the Free Software Foundation.
22  *
23  *  Anytun is distributed in the hope that it will be useful,
24  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *  GNU General Public License for more details.
27  *
28  *  You should have received a copy of the GNU General Public License
29  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 #ifndef _WIN_SERVICE_H_
33 #define _WIN_SERVICE_H_
34
35 #ifdef WIN_SERVICE
36
37 #include "../threadUtils.hpp"
38
39 class WinService
40 {
41 public:
42   static WinService& instance();
43   #define SVC_NAME "anytun"
44   static void install();
45   static void uninstall();
46   static void start();
47
48   void waitForStop();
49   void stop();
50
51   static VOID WINAPI main(DWORD dwArgc, LPTSTR *lpszArgv);
52   static VOID WINAPI ctrlHandler(DWORD dwCtrl);
53 private:
54   WinService() : started_(false) {};
55   ~WinService();
56   WinService(const WinService &w);
57   void operator=(const WinService &w);
58
59   void reportStatus(DWORD dwCurrentState, DWORD dwWin32ExitCode, DWORD dwWaitHint=0);
60
61   static WinService* inst;
62   static Mutex instMutex;
63   class instanceCleaner {
64     public: ~instanceCleaner() {
65       if(WinService::inst != NULL)
66         delete WinService::inst;
67     }
68   };
69   friend class instanceCleaner;
70   
71   bool started_;
72   SERVICE_STATUS status_;
73   SERVICE_STATUS_HANDLE status_handle_;
74   HANDLE stop_event_;
75 };
76
77 extern WinService& gWinService;
78
79 #endif
80
81 #endif