forked from jlopez/win2vnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClientConnectionFile.cpp
executable file
·123 lines (115 loc) · 3.99 KB
/
ClientConnectionFile.cpp
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
// Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
//
// This file is part of the VNC system.
//
// The VNC system is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// 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; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
//
// If the source code for the VNC system is not available from the place
// whence you received this file, check http://www.uk.research.att.com/vnc or
// contact the authors on vnc@uk.research.att.com for information on obtaining it.
//
#include "stdhdrs.h"
#include "vncviewer.h"
#include "ClientConnection.h"
#include "Exception.h"
#include "vncauth.h"
// This file contains the code for saving and loading connection info.
static OPENFILENAME ofn;
void ofnInit()
{
static char filter[] = "VNC files (*.vnc)\0*.vnc\0" \
"All files (*.*)\0*.*\0";
memset((void *) &ofn, 0, sizeof(OPENFILENAME));
ofn.lStructSize = sizeof(OPENFILENAME);
ofn.lpstrFilter = filter;
ofn.nMaxFile = _MAX_PATH;
ofn.nMaxFileTitle = _MAX_FNAME + _MAX_EXT;
ofn.lpstrDefExt = "vnc";
}
//
// SaveConnection
// Save info about current connection to a file
//
void ClientConnection::SaveConnection()
{
log.Print(2, _T("Saving connection info\n"));
char fname[_MAX_PATH];
char tname[_MAX_FNAME + _MAX_EXT];
ofnInit();
int disp = PORT_TO_DISPLAY(m_port);
sprintf(fname, "%.10s-%d.vnc", m_host, (disp > 0 && disp < 100) ? disp : m_port);
ofn.hwndOwner = m_hwnd;
ofn.lpstrFile = fname;
ofn.lpstrFileTitle = tname;
ofn.Flags = OFN_HIDEREADONLY;
if (!GetSaveFileName(&ofn)) {
DWORD err = CommDlgExtendedError();
char msg[1024];
switch(err) {
case 0: // user cancelled
break;
case FNERR_INVALIDFILENAME:
strcpy(msg, "Invalid filename");
MessageBox(m_hwnd, msg, "Error saving file", MB_ICONERROR | MB_OK);
break;
default:
log.Print(0, "Error %d from GetSaveFileName\n", err);
break;
}
return;
}
log.Print(1, "Saving to %s\n", fname);
int ret = WritePrivateProfileString("connection", "host", m_host, fname);
char buf[32];
sprintf(buf, "%d", m_port);
WritePrivateProfileString("connection", "port", buf, fname);
if (MessageBox(m_hwnd,
"Do you want to save the password in this file?\n\r"
"If you say Yes, anyone with access to this file could access your session\n\r"
"and (potentially) discover your VNC password.",
"Security warning",
MB_YESNO | MB_ICONWARNING) == IDYES)
{
for (int i = 0; i < MAXPWLEN; i++) {
sprintf(buf+i*2, "%02x", (unsigned int) m_encPasswd[i]);
}
} else
buf[0] = '\0';
WritePrivateProfileString("connection", "password", buf, fname);
m_opts.Save(fname);
}
// returns zero if successful
int ClientConnection::LoadConnection(char *fname)
{
if (GetPrivateProfileString("connection", "host", "", m_host, MAX_HOST_NAME_LEN, fname) == 0) {
MessageBox(m_hwnd, "Error reading host name from file", "Config file error", MB_ICONERROR | MB_OK);
return -1;
};
if ( (m_port = GetPrivateProfileInt("connection", "port", 0, fname)) == 0) {
MessageBox(m_hwnd, "Error reading port number from file", "Config file error", MB_ICONERROR | MB_OK);
return -1;
};
char buf[32];
m_encPasswd[0] = '\0';
if (GetPrivateProfileString("connection", "password", "", buf, 32, fname) > 0) {
for (int i = 0; i < MAXPWLEN; i++) {
int x = 0;
sscanf(buf+i*2, "%2x", &x);
m_encPasswd[i] = (unsigned char) x;
}
}
return 0;
}