|
|
|
|
@ -1,50 +1,42 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c)2019 ZeroTier, Inc. |
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this |
|
|
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
|
* |
|
|
|
|
* Use of this software is governed by the Business Source License included |
|
|
|
|
* in the LICENSE.TXT file in the project's root directory. |
|
|
|
|
* |
|
|
|
|
* Change Date: 2026-01-01 |
|
|
|
|
* |
|
|
|
|
* On the date above, in accordance with the Business Source License, use |
|
|
|
|
* of this software will be governed by version 2.0 of the Apache License. |
|
|
|
|
* (c) ZeroTier, Inc. |
|
|
|
|
* https://www.zerotier.com/
|
|
|
|
|
*/ |
|
|
|
|
/****/ |
|
|
|
|
|
|
|
|
|
#pragma region Includes |
|
|
|
|
|
|
|
|
|
#if defined(_WIN32) || defined(_WIN64) |
|
|
|
|
|
|
|
|
|
#include <winsock2.h> |
|
|
|
|
#include <windows.h> |
|
|
|
|
#include <stdio.h> |
|
|
|
|
#include <stdlib.h> |
|
|
|
|
|
|
|
|
|
#include "ZeroTierOneService.h" |
|
|
|
|
|
|
|
|
|
#include "../../version.h" |
|
|
|
|
#include "../../include/ZeroTierOne.h" |
|
|
|
|
|
|
|
|
|
#include "../../node/Constants.hpp" |
|
|
|
|
#include "../../node/Utils.hpp" |
|
|
|
|
#include "../../osdep/OSUtils.hpp" |
|
|
|
|
#include "../../service/OneService.hpp" |
|
|
|
|
#include "../../version.h" |
|
|
|
|
|
|
|
|
|
#pragma endregion // Includes
|
|
|
|
|
#include <stdio.h> |
|
|
|
|
#include <stdlib.h> |
|
|
|
|
#include <windows.h> |
|
|
|
|
#include <winsock2.h> |
|
|
|
|
|
|
|
|
|
#pragma endregion // Includes
|
|
|
|
|
|
|
|
|
|
#ifdef ZT_DEBUG_SERVICE |
|
|
|
|
FILE *SVCDBGfile = (FILE *)0; |
|
|
|
|
FILE* SVCDBGfile = (FILE*)0; |
|
|
|
|
ZeroTier::Mutex SVCDBGfile_m; |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
ZeroTierOneService::ZeroTierOneService() : |
|
|
|
|
CServiceBase(ZT_SERVICE_NAME,TRUE,TRUE,FALSE), |
|
|
|
|
_service((ZeroTier::OneService *)0) |
|
|
|
|
ZeroTierOneService::ZeroTierOneService() : CServiceBase(ZT_SERVICE_NAME, TRUE, TRUE, FALSE), _service((ZeroTier::OneService*)0) |
|
|
|
|
{ |
|
|
|
|
#ifdef ZT_DEBUG_SERVICE |
|
|
|
|
SVCDBGfile_m.lock(); |
|
|
|
|
if (!SVCDBGfile) |
|
|
|
|
SVCDBGfile = fopen(ZT_DEBUG_SERVICE,"a"); |
|
|
|
|
if (! SVCDBGfile) |
|
|
|
|
SVCDBGfile = fopen(ZT_DEBUG_SERVICE, "a"); |
|
|
|
|
SVCDBGfile_m.unlock(); |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
@ -59,14 +51,13 @@ ZeroTierOneService::~ZeroTierOneService(void)
|
|
|
|
|
SVCDBGfile_m.lock(); |
|
|
|
|
if (SVCDBGfile) { |
|
|
|
|
fclose(SVCDBGfile); |
|
|
|
|
SVCDBGfile = (FILE *)0; |
|
|
|
|
SVCDBGfile = (FILE*)0; |
|
|
|
|
} |
|
|
|
|
SVCDBGfile_m.unlock(); |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void ZeroTierOneService::threadMain() |
|
|
|
|
throw() |
|
|
|
|
void ZeroTierOneService::threadMain() throw() |
|
|
|
|
{ |
|
|
|
|
ZT_SVCDBG("ZeroTierOneService::threadMain()\r\n"); |
|
|
|
|
|
|
|
|
|
@ -75,38 +66,41 @@ restart_node:
|
|
|
|
|
{ |
|
|
|
|
ZeroTier::Mutex::Lock _l(_lock); |
|
|
|
|
delete _service; |
|
|
|
|
_service = (ZeroTier::OneService *)0; // in case newInstance() fails
|
|
|
|
|
_service = (ZeroTier::OneService*)0; // in case newInstance() fails
|
|
|
|
|
_service = ZeroTier::OneService::newInstance(_path.c_str(), ZT_DEFAULT_PORT); |
|
|
|
|
} |
|
|
|
|
switch(_service->run()) { |
|
|
|
|
switch (_service->run()) { |
|
|
|
|
case ZeroTier::OneService::ONE_UNRECOVERABLE_ERROR: { |
|
|
|
|
std::string err("ZeroTier One encountered an unrecoverable error: "); |
|
|
|
|
err.append(_service->fatalErrorMessage()); |
|
|
|
|
err.append(" (restarting in 5 seconds)"); |
|
|
|
|
WriteEventLogEntry(const_cast <PSTR>(err.c_str()),EVENTLOG_ERROR_TYPE); |
|
|
|
|
WriteEventLogEntry(const_cast<PSTR>(err.c_str()), EVENTLOG_ERROR_TYPE); |
|
|
|
|
Sleep(5000); |
|
|
|
|
} goto restart_node; |
|
|
|
|
} |
|
|
|
|
goto restart_node; |
|
|
|
|
|
|
|
|
|
case ZeroTier::OneService::ONE_IDENTITY_COLLISION: { |
|
|
|
|
std::string homeDir(ZeroTier::OneService::platformDefaultHomePath()); |
|
|
|
|
delete _service; |
|
|
|
|
_service = (ZeroTier::OneService *)0; |
|
|
|
|
_service = (ZeroTier::OneService*)0; |
|
|
|
|
std::string oldid; |
|
|
|
|
ZeroTier::OSUtils::readFile((homeDir + ZT_PATH_SEPARATOR_S + "identity.secret").c_str(),oldid); |
|
|
|
|
ZeroTier::OSUtils::readFile((homeDir + ZT_PATH_SEPARATOR_S + "identity.secret").c_str(), oldid); |
|
|
|
|
if (oldid.length()) { |
|
|
|
|
ZeroTier::OSUtils::writeFile((homeDir + ZT_PATH_SEPARATOR_S + "identity.secret.saved_after_collision").c_str(),oldid); |
|
|
|
|
ZeroTier::OSUtils::writeFile((homeDir + ZT_PATH_SEPARATOR_S + "identity.secret.saved_after_collision").c_str(), oldid); |
|
|
|
|
ZeroTier::OSUtils::rm((homeDir + ZT_PATH_SEPARATOR_S + "identity.secret").c_str()); |
|
|
|
|
ZeroTier::OSUtils::rm((homeDir + ZT_PATH_SEPARATOR_S + "identity.public").c_str()); |
|
|
|
|
} |
|
|
|
|
} goto restart_node; |
|
|
|
|
} |
|
|
|
|
goto restart_node; |
|
|
|
|
|
|
|
|
|
default: // normal termination
|
|
|
|
|
default: // normal termination
|
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} catch ( ... ) { |
|
|
|
|
} |
|
|
|
|
catch (...) { |
|
|
|
|
// sanity check, shouldn't happen since Node::run() should catch all its own errors
|
|
|
|
|
// could also happen if we're out of memory though!
|
|
|
|
|
WriteEventLogEntry("unexpected exception (out of memory?) (trying again in 5 seconds)",EVENTLOG_ERROR_TYPE); |
|
|
|
|
WriteEventLogEntry("unexpected exception (out of memory?) (trying again in 5 seconds)", EVENTLOG_ERROR_TYPE); |
|
|
|
|
Sleep(5000); |
|
|
|
|
goto restart_node; |
|
|
|
|
} |
|
|
|
|
@ -114,23 +108,25 @@ restart_node:
|
|
|
|
|
{ |
|
|
|
|
ZeroTier::Mutex::Lock _l(_lock); |
|
|
|
|
delete _service; |
|
|
|
|
_service = (ZeroTier::OneService *)0; |
|
|
|
|
_service = (ZeroTier::OneService*)0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void ZeroTierOneService::OnStart(DWORD dwArgc, PSTR *lpszArgv) |
|
|
|
|
void ZeroTierOneService::OnStart(DWORD dwArgc, PSTR* lpszArgv) |
|
|
|
|
{ |
|
|
|
|
ZT_SVCDBG("ZeroTierOneService::OnStart()\r\n"); |
|
|
|
|
|
|
|
|
|
if ((dwArgc > 1)&&(lpszArgv[1])&&(strlen(lpszArgv[1]) > 0)) { |
|
|
|
|
if ((dwArgc > 1) && (lpszArgv[1]) && (strlen(lpszArgv[1]) > 0)) { |
|
|
|
|
this->_path = lpszArgv[1]; |
|
|
|
|
} else { |
|
|
|
|
} |
|
|
|
|
else { |
|
|
|
|
this->_path = ZeroTier::OneService::platformDefaultHomePath(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
_thread = ZeroTier::Thread::start(this); |
|
|
|
|
} catch ( ... ) { |
|
|
|
|
} |
|
|
|
|
catch (...) { |
|
|
|
|
throw (DWORD)ERROR_EXCEPTION_IN_SERVICE; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@ -140,7 +136,7 @@ void ZeroTierOneService::OnStop()
|
|
|
|
|
ZT_SVCDBG("ZeroTierOneService::OnStop()\r\n"); |
|
|
|
|
|
|
|
|
|
_lock.lock(); |
|
|
|
|
ZeroTier::OneService *s = _service; |
|
|
|
|
ZeroTier::OneService* s = _service; |
|
|
|
|
_lock.unlock(); |
|
|
|
|
|
|
|
|
|
if (s) { |
|
|
|
|
|