Warn about data security when running daemon
[TortoiseGit.git] / src / TortoiseProc / Commands / DaemonCommand.cpp
blobf210556d8eb4f2ce674b109f76a0c6c949e399d4
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2013 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 #include "stdafx.h"
20 #include "DaemonCommand.h"
21 #include "ProgressDlg.h"
22 #include "UnicodeUtils.h"
23 #include "MessageBox.h"
26 bool DaemonCommand::Execute()
28 if (CMessageBox::ShowCheck(NULL, IDS_DAEMON_SECURITY_WARN, IDS_APPNAME, MB_ICONINFORMATION | MB_YESNO, _T("DaemonNoSecurityWarning"), IDS_MSGBOX_DONOTSHOWAGAIN) != IDYES)
29 return false;
31 WSADATA wsaData;
32 if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR)
34 MessageBox(NULL, _T("WSAStartup failed!"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
35 return false;
38 char hostName[128];
39 if (gethostname(hostName, sizeof(hostName)) == SOCKET_ERROR)
41 MessageBox(NULL, _T("gethostname failed!"), _T("TortoiseGit"), MB_OK | MB_ICONERROR);
42 return false;
45 CString ip = _T("localhost");
46 struct hostent *ipList = gethostbyname(hostName);
47 for (int i = 0; ipList->h_addr_list[i] != 0; ++i)
49 struct in_addr addr;
50 memcpy(&addr, ipList->h_addr_list[i], sizeof(struct in_addr));
51 CStringA str = inet_ntoa(addr);
52 ip = CUnicodeUtils::GetUnicode(str);
53 break;
56 CString cmd;
57 cmd.Format(_T("git.exe daemon --verbose --export-all --base-path=\"%s\""), g_Git.m_CurrentDir);
58 CProgressDlg progDlg;
59 progDlg.m_GitCmd = cmd;
60 progDlg.m_PreText = _T("git://") + ip + _T("/");
61 progDlg.DoModal();
62 return true;