2019-01-05 20:21:43 +08:00
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 2015Remote.cpp : 定义应用程序的类行为。
|
2019-01-05 20:21:43 +08:00
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
#include "2015Remote.h"
|
|
|
|
|
|
#include "2015RemoteDlg.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
|
#define new DEBUG_NEW
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// dump相关
|
2019-01-10 19:35:03 +08:00
|
|
|
|
#include <io.h>
|
|
|
|
|
|
#include <direct.h>
|
|
|
|
|
|
#include <DbgHelp.h>
|
2025-06-29 21:25:59 +08:00
|
|
|
|
#include "IOCPUDPServer.h"
|
2025-11-23 18:13:39 +01:00
|
|
|
|
#include "ServerServiceWrapper.h"
|
2019-01-10 19:35:03 +08:00
|
|
|
|
#pragma comment(lib, "Dbghelp.lib")
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
CMy2015RemoteApp* GetThisApp()
|
|
|
|
|
|
{
|
|
|
|
|
|
return ((CMy2015RemoteApp*)AfxGetApp());
|
2025-06-18 04:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
config& GetThisCfg()
|
|
|
|
|
|
{
|
|
|
|
|
|
config *cfg = GetThisApp()->GetCfg();
|
|
|
|
|
|
return *cfg;
|
2025-06-18 04:22:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
std::string GetMasterHash()
|
|
|
|
|
|
{
|
|
|
|
|
|
static std::string hash(skCrypt(MASTER_HASH));
|
|
|
|
|
|
return hash;
|
2025-07-13 04:37:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
/**
|
2025-11-23 18:13:39 +01:00
|
|
|
|
* @brief 程序遇到未知BUG导致终止时调用此函数,不弹框
|
|
|
|
|
|
* 并且转储dump文件到dump目录.
|
2019-01-10 19:35:03 +08:00
|
|
|
|
*/
|
|
|
|
|
|
long WINAPI whenbuged(_EXCEPTION_POINTERS *excp)
|
|
|
|
|
|
{
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 获取dump文件夹,若不存在,则创建之
|
|
|
|
|
|
char dumpDir[_MAX_PATH];
|
|
|
|
|
|
char dumpFile[_MAX_PATH + 64];
|
|
|
|
|
|
|
|
|
|
|
|
if (!GetModuleFileNameA(NULL, dumpDir, _MAX_PATH)) {
|
|
|
|
|
|
return EXCEPTION_EXECUTE_HANDLER;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char* p = strrchr(dumpDir, '\\');
|
|
|
|
|
|
if (p) {
|
|
|
|
|
|
strcpy_s(p + 1, _MAX_PATH - (p - dumpDir + 1), "dump");
|
|
|
|
|
|
} else {
|
|
|
|
|
|
strcpy_s(dumpDir, _MAX_PATH, "dump");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (_access(dumpDir, 0) == -1)
|
|
|
|
|
|
_mkdir(dumpDir);
|
|
|
|
|
|
|
|
|
|
|
|
// 构建完整的dump文件路径
|
|
|
|
|
|
char curTime[64];
|
|
|
|
|
|
time_t TIME = time(0);
|
|
|
|
|
|
struct tm localTime;
|
|
|
|
|
|
localtime_s(&localTime, &TIME);
|
|
|
|
|
|
strftime(curTime, sizeof(curTime), "\\YAMA_%Y-%m-%d %H%M%S.dmp", &localTime);
|
|
|
|
|
|
sprintf_s(dumpFile, sizeof(dumpFile), "%s%s", dumpDir, curTime);
|
|
|
|
|
|
|
|
|
|
|
|
HANDLE hFile = ::CreateFileA(dumpFile, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
|
2025-10-15 04:32:59 +08:00
|
|
|
|
FILE_ATTRIBUTE_NORMAL, NULL);
|
|
|
|
|
|
if(INVALID_HANDLE_VALUE != hFile) {
|
|
|
|
|
|
MINIDUMP_EXCEPTION_INFORMATION einfo = {::GetCurrentThreadId(), excp, FALSE};
|
|
|
|
|
|
::MiniDumpWriteDump(::GetCurrentProcess(), ::GetCurrentProcessId(),
|
|
|
|
|
|
hFile, MiniDumpWithFullMemory, &einfo, NULL, NULL);
|
|
|
|
|
|
::CloseHandle(hFile);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return EXCEPTION_EXECUTE_HANDLER;
|
2019-01-10 19:35:03 +08:00
|
|
|
|
}
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
|
|
|
|
|
// CMy2015RemoteApp
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CMy2015RemoteApp, CWinApp)
|
2025-10-15 04:32:59 +08:00
|
|
|
|
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
|
2019-01-05 20:21:43 +08:00
|
|
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
2025-06-18 04:22:48 +08:00
|
|
|
|
std::string GetPwdHash();
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// CMy2015RemoteApp 构造
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
|
|
|
|
|
CMy2015RemoteApp::CMy2015RemoteApp()
|
|
|
|
|
|
{
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 支持重新启动管理器
|
2025-10-15 04:32:59 +08:00
|
|
|
|
m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// TODO: 在此处添加构造代码,
|
|
|
|
|
|
// 将所有重要的初始化放置在 InitInstance 中
|
2025-10-15 04:32:59 +08:00
|
|
|
|
m_Mutex = NULL;
|
2025-07-27 21:56:52 +08:00
|
|
|
|
#ifdef _DEBUG
|
2025-10-15 04:32:59 +08:00
|
|
|
|
std::string masterHash(GetMasterHash());
|
|
|
|
|
|
m_iniFile = GetPwdHash() == masterHash ? new config : new iniFile;
|
2025-07-27 21:56:52 +08:00
|
|
|
|
#else
|
2025-10-15 04:32:59 +08:00
|
|
|
|
m_iniFile = new iniFile;
|
2025-07-27 21:56:52 +08:00
|
|
|
|
#endif
|
2025-06-08 15:38:41 +08:00
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
srand(static_cast<unsigned int>(time(0)));
|
2019-01-05 20:21:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 唯一的一个 CMy2015RemoteApp 对象
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
|
|
|
|
|
CMy2015RemoteApp theApp;
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 从服务路径中提取可执行文件路径(去除引号和参数)
|
|
|
|
|
|
static void ExtractExePathFromServicePath(const char* servicePath, char* exePath, size_t exePathSize)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!servicePath || !exePath || exePathSize == 0) {
|
|
|
|
|
|
if (exePath && exePathSize > 0) exePath[0] = '\0';
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const char* src = servicePath;
|
|
|
|
|
|
char* dst = exePath;
|
|
|
|
|
|
size_t remaining = exePathSize - 1;
|
|
|
|
|
|
|
|
|
|
|
|
// 跳过前导空格
|
|
|
|
|
|
while (*src == ' ') src++;
|
|
|
|
|
|
|
|
|
|
|
|
if (*src == '"') {
|
|
|
|
|
|
// 带引号的路径:提取引号内的内容
|
|
|
|
|
|
src++; // 跳过开始引号
|
|
|
|
|
|
while (*src && *src != '"' && remaining > 0) {
|
|
|
|
|
|
*dst++ = *src++;
|
|
|
|
|
|
remaining--;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
// 不带引号的路径:提取到空格或结束
|
|
|
|
|
|
while (*src && *src != ' ' && remaining > 0) {
|
|
|
|
|
|
*dst++ = *src++;
|
|
|
|
|
|
remaining--;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
*dst = '\0';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 处理服务相关的命令行参数
|
|
|
|
|
|
// 返回值: TRUE 表示已处理服务命令(程序应退出),FALSE 表示继续正常启动
|
|
|
|
|
|
static BOOL HandleServiceCommandLine()
|
|
|
|
|
|
{
|
|
|
|
|
|
CString cmdLine = ::GetCommandLine();
|
|
|
|
|
|
cmdLine.MakeLower();
|
|
|
|
|
|
|
|
|
|
|
|
// -service: 作为服务运行
|
|
|
|
|
|
if (cmdLine.Find(_T("-service")) != -1) {
|
|
|
|
|
|
ServerService_Run();
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -install: 安装服务
|
|
|
|
|
|
if (cmdLine.Find(_T("-install")) != -1) {
|
|
|
|
|
|
ServerService_Install();
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -uninstall: 卸载服务
|
|
|
|
|
|
if (cmdLine.Find(_T("-uninstall")) != -1) {
|
|
|
|
|
|
ServerService_Uninstall();
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// -agent: 由服务启动的GUI代理模式
|
|
|
|
|
|
// 此模式下正常运行GUI,但使用不同的互斥量名称避免冲突
|
|
|
|
|
|
if (cmdLine.Find(_T("-agent")) != -1) {
|
|
|
|
|
|
// 继续正常启动GUI,但标记为代理模式
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 无参数时,作为服务启动
|
|
|
|
|
|
BOOL registered = FALSE;
|
|
|
|
|
|
BOOL running = FALSE;
|
|
|
|
|
|
char servicePath[MAX_PATH] = { 0 };
|
|
|
|
|
|
ServerService_CheckStatus(®istered, &running, servicePath, MAX_PATH);
|
|
|
|
|
|
char curPath[MAX_PATH];
|
|
|
|
|
|
GetModuleFileNameA(NULL, curPath, MAX_PATH);
|
|
|
|
|
|
|
|
|
|
|
|
// 从服务路径中提取纯可执行文件路径(去除引号和参数)
|
|
|
|
|
|
char serviceExePath[MAX_PATH] = { 0 };
|
|
|
|
|
|
ExtractExePathFromServicePath(servicePath, serviceExePath, MAX_PATH);
|
|
|
|
|
|
|
|
|
|
|
|
if (registered && _stricmp(curPath, serviceExePath) != 0) {
|
|
|
|
|
|
Mprintf("ServerService Uninstall: %s\n", servicePath);
|
|
|
|
|
|
ServerService_Uninstall();
|
|
|
|
|
|
registered = FALSE;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (!registered) {
|
|
|
|
|
|
Mprintf("ServerService Install: %s\n", curPath);
|
|
|
|
|
|
return ServerService_Install();
|
|
|
|
|
|
}
|
|
|
|
|
|
else if (!running) {
|
|
|
|
|
|
int r = ServerService_Run();
|
|
|
|
|
|
Mprintf("ServerService Run '%s' %s\n", curPath, r == ERROR_SUCCESS ? "succeed" : "failed");
|
|
|
|
|
|
if (r) {
|
|
|
|
|
|
r = ServerService_StartSimple();
|
|
|
|
|
|
Mprintf("ServerService Start '%s' %s\n", curPath, r == ERROR_SUCCESS ? "succeed" : "failed");
|
|
|
|
|
|
return r == ERROR_SUCCESS;
|
|
|
|
|
|
}
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
}
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 检查是否以代理模式运行
|
|
|
|
|
|
static BOOL IsAgentMode()
|
|
|
|
|
|
{
|
|
|
|
|
|
CString cmdLine = ::GetCommandLine();
|
|
|
|
|
|
cmdLine.MakeLower();
|
|
|
|
|
|
return cmdLine.Find(_T("-agent")) != -1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CMy2015RemoteApp 初始化
|
2019-01-05 20:21:43 +08:00
|
|
|
|
|
|
|
|
|
|
BOOL CMy2015RemoteApp::InitInstance()
|
|
|
|
|
|
{
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 首先处理服务命令行参数
|
|
|
|
|
|
if (HandleServiceCommandLine()) {
|
|
|
|
|
|
return FALSE; // 服务命令已处理,退出
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
std::string masterHash(GetMasterHash());
|
|
|
|
|
|
std::string mu = GetPwdHash()==masterHash ? "MASTER.EXE" : "YAMA.EXE";
|
2025-06-19 17:50:11 +08:00
|
|
|
|
#ifndef _DEBUG
|
2025-10-15 04:32:59 +08:00
|
|
|
|
{
|
|
|
|
|
|
m_Mutex = CreateMutex(NULL, FALSE, mu.c_str());
|
|
|
|
|
|
if (ERROR_ALREADY_EXISTS == GetLastError()) {
|
|
|
|
|
|
CloseHandle(m_Mutex);
|
|
|
|
|
|
m_Mutex = NULL;
|
2025-11-23 18:13:39 +01:00
|
|
|
|
MessageBoxA(NULL, "A master program is already running, please check Task Manager.",
|
|
|
|
|
|
"Info", MB_ICONINFORMATION);
|
2025-10-15 04:32:59 +08:00
|
|
|
|
return FALSE;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-06-19 17:50:11 +08:00
|
|
|
|
#endif
|
2019-01-13 00:04:50 +08:00
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
SetUnhandledExceptionFilter(&whenbuged);
|
|
|
|
|
|
|
|
|
|
|
|
SHFILEINFO sfi = {};
|
|
|
|
|
|
HIMAGELIST hImageList = (HIMAGELIST)SHGetFileInfo((LPCTSTR)_T(""), 0, &sfi, sizeof(SHFILEINFO), SHGFI_LARGEICON | SHGFI_SYSICONINDEX);
|
|
|
|
|
|
m_pImageList_Large.Attach(hImageList);
|
|
|
|
|
|
hImageList = (HIMAGELIST)SHGetFileInfo((LPCTSTR)_T(""), 0, &sfi, sizeof(SHFILEINFO), SHGFI_SMALLICON | SHGFI_SYSICONINDEX);
|
|
|
|
|
|
m_pImageList_Small.Attach(hImageList);
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 如果一个运行在 Windows XP 上的应用程序清单指定要
|
|
|
|
|
|
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
|
|
|
|
|
|
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
|
2025-10-15 04:32:59 +08:00
|
|
|
|
INITCOMMONCONTROLSEX InitCtrls;
|
|
|
|
|
|
InitCtrls.dwSize = sizeof(InitCtrls);
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 将它设置为包括所有要在应用程序中使用的
|
|
|
|
|
|
// 公共控件类。
|
2025-10-15 04:32:59 +08:00
|
|
|
|
InitCtrls.dwICC = ICC_WIN95_CLASSES;
|
|
|
|
|
|
InitCommonControlsEx(&InitCtrls);
|
|
|
|
|
|
|
|
|
|
|
|
CWinApp::InitInstance();
|
|
|
|
|
|
|
|
|
|
|
|
AfxEnableControlContainer();
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 创建 shell 管理器,以防对话框包含
|
|
|
|
|
|
// 任何 shell 树视图控件或 shell 列表视图控件。
|
2025-10-15 04:32:59 +08:00
|
|
|
|
CShellManager *pShellManager = new CShellManager;
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 标准初始化
|
|
|
|
|
|
// 如果未使用这些功能并希望减小
|
|
|
|
|
|
// 最终可执行文件的大小,则应移除下列
|
|
|
|
|
|
// 不需要的特定初始化例程
|
|
|
|
|
|
// 更改用于存储设置的注册表项
|
|
|
|
|
|
// TODO: 应适当修改该字符串,
|
|
|
|
|
|
// 例如修改为公司或组织名
|
2025-10-15 04:32:59 +08:00
|
|
|
|
SetRegistryKey(_T("YAMA"));
|
|
|
|
|
|
|
|
|
|
|
|
CMy2015RemoteDlg dlg(nullptr);
|
|
|
|
|
|
m_pMainWnd = &dlg;
|
|
|
|
|
|
INT_PTR nResponse = dlg.DoModal();
|
|
|
|
|
|
if (nResponse == IDOK) {
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// TODO: 在此放置处理何时用
|
|
|
|
|
|
// “确定”来关闭对话框的代码
|
2025-10-15 04:32:59 +08:00
|
|
|
|
} else if (nResponse == IDCANCEL) {
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// TODO: 在此放置处理何时用
|
|
|
|
|
|
// “取消”来关闭对话框的代码
|
2025-10-15 04:32:59 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 删除上面创建的 shell 管理器。
|
2025-10-15 04:32:59 +08:00
|
|
|
|
if (pShellManager != NULL) {
|
|
|
|
|
|
delete pShellManager;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
|
|
|
|
|
|
// 而不是启动应用程序的消息泵。
|
2025-10-15 04:32:59 +08:00
|
|
|
|
return FALSE;
|
2019-01-05 20:21:43 +08:00
|
|
|
|
}
|
2019-01-13 00:04:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int CMy2015RemoteApp::ExitInstance()
|
|
|
|
|
|
{
|
2025-10-15 04:32:59 +08:00
|
|
|
|
if (m_Mutex) {
|
|
|
|
|
|
CloseHandle(m_Mutex);
|
|
|
|
|
|
m_Mutex = NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
__try {
|
|
|
|
|
|
Delete();
|
|
|
|
|
|
} __except(EXCEPTION_EXECUTE_HANDLER) {
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SAFE_DELETE(m_iniFile);
|
|
|
|
|
|
|
2025-11-23 18:13:39 +01:00
|
|
|
|
// 只有在代理模式退出时才停止服务
|
|
|
|
|
|
if (IsAgentMode()) {
|
|
|
|
|
|
ServerService_Stop();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-10-15 04:32:59 +08:00
|
|
|
|
return CWinApp::ExitInstance();
|
2019-01-13 00:04:50 +08:00
|
|
|
|
}
|