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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
/* Copyright 2011 Pierre Ossman <ossman@cendio.se> for Cendio AB
*
* This 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 software 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 software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdio.h>
#include <string.h>
#include <FL/Fl.H>
#include <FL/fl_ask.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Box.H>
#include <FL/Fl_Input.H>
#include <FL/Fl_Secret_Input.H>
#include <FL/Fl_Button.H>
#include <FL/Fl_Return_Button.H>
#include <FL/Fl_Pixmap.H>
#include <rfb/Password.h>
#include <rfb/Exception.h>
#include "fltk/layout.h"
#include "fltk/util.h"
#include "i18n.h"
#include "parameters.h"
#include "UserDialog.h"
/* xpm:s predate const, so they have invalid definitions */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wwrite-strings"
#include "../media/secure.xpm"
#include "../media/insecure.xpm"
#pragma GCC diagnostic pop
using namespace rfb;
static Fl_Pixmap secure_icon(secure);
static Fl_Pixmap insecure_icon(insecure);
static int ret_val = 0;
static void button_cb(Fl_Widget *widget, void *val) {
ret_val = (fl_intptr_t)val;
widget->window()->hide();
}
UserDialog::UserDialog()
{
}
UserDialog::~UserDialog()
{
}
void UserDialog::getUserPasswd(bool secure, std::string* user,
std::string* password)
{
const char *passwordFileName(passwordFile);
assert(password);
char *envUsername = getenv("VNC_USERNAME");
char *envPassword = getenv("VNC_PASSWORD");
if(user && envUsername && envPassword) {
*user = envUsername;
*password = envPassword;
return;
}
if (!user && envPassword) {
*password = envPassword;
return;
}
if (!user && passwordFileName[0]) {
ObfuscatedPasswd obfPwd(256);
FILE* fp;
fp = fopen(passwordFileName, "rb");
if (!fp)
throw rfb::Exception(_("Opening password file failed"));
obfPwd.length = fread(obfPwd.buf, 1, obfPwd.length, fp);
fclose(fp);
PlainPasswd passwd(obfPwd);
*password = passwd.buf;
return;
}
Fl_Window *win;
Fl_Box *banner;
Fl_Input *username;
Fl_Secret_Input *passwd;
Fl_Box *icon;
Fl_Button *button;
int x, y;
win = new Fl_Window(410, 0, _("VNC authentication"));
win->callback(button_cb,(void *)0);
banner = new Fl_Box(0, 0, win->w(), 20);
banner->align(FL_ALIGN_CENTER|FL_ALIGN_INSIDE|FL_ALIGN_IMAGE_NEXT_TO_TEXT);
banner->box(FL_FLAT_BOX);
if (secure) {
banner->label(_("This connection is secure"));
banner->color(FL_GREEN);
banner->image(secure_icon);
} else {
banner->label(_("This connection is not secure"));
banner->color(FL_RED);
banner->image(insecure_icon);
}
x = OUTER_MARGIN;
y = banner->h() + OUTER_MARGIN;
/* Mimic a fl_ask() box */
icon = new Fl_Box(x, y, 50, 50, "?");
icon->box(FL_UP_BOX);
icon->labelfont(FL_TIMES_BOLD);
icon->labelsize(34);
icon->color(FL_WHITE);
icon->labelcolor(FL_BLUE);
x += icon->w() + INNER_MARGIN;
y += INNER_MARGIN;
if (user) {
y += INPUT_LABEL_OFFSET;
username = new Fl_Input(x, y, win->w()- x - OUTER_MARGIN,
INPUT_HEIGHT, _("Username:"));
username->align(FL_ALIGN_LEFT | FL_ALIGN_TOP);
y += INPUT_HEIGHT + INNER_MARGIN;
} else {
/*
* Compiler is not bright enough to understand that
* username won't be used further down...
*/
username = NULL;
}
y += INPUT_LABEL_OFFSET;
passwd = new Fl_Secret_Input(x, y, win->w()- x - OUTER_MARGIN,
INPUT_HEIGHT, _("Password:"));
passwd->align(FL_ALIGN_LEFT | FL_ALIGN_TOP);
y += INPUT_HEIGHT + INNER_MARGIN;
x = win->w() - OUTER_MARGIN;
y += OUTER_MARGIN - INNER_MARGIN;
x -= BUTTON_WIDTH;
button = new Fl_Return_Button(x, y, BUTTON_WIDTH,
BUTTON_HEIGHT, fl_ok);
button->callback(button_cb, (void*)0);
x -= INNER_MARGIN;
x -= BUTTON_WIDTH;
button = new Fl_Button(x, y, BUTTON_WIDTH, BUTTON_HEIGHT, fl_cancel);
button->callback(button_cb, (void*)1);
button->shortcut(FL_Escape);
x -= INNER_MARGIN;
y += BUTTON_HEIGHT;
y += OUTER_MARGIN;
win->end();
win->size(win->w(), y);
win->set_modal();
ret_val = -1;
win->show();
while (win->shown()) Fl::wait();
if (ret_val == 0) {
if (user)
*user = username->value();
*password = passwd->value();
}
delete win;
if (ret_val != 0)
throw rfb::Exception(_("Authentication cancelled"));
}
bool UserDialog::showMsgBox(int flags, const char* title, const char* text)
{
char buffer[1024];
if (fltk_escape(text, buffer, sizeof(buffer)) >= sizeof(buffer))
return 0;
// FLTK doesn't give us a flexible choice of the icon, so we ignore those
// bits for now.
fl_message_title(title);
switch (flags & 0xf) {
case M_OKCANCEL:
return fl_choice("%s", NULL, fl_ok, fl_cancel, buffer) == 1;
case M_YESNO:
return fl_choice("%s", NULL, fl_yes, fl_no, buffer) == 1;
case M_OK:
default:
if (((flags & 0xf0) == M_ICONERROR) ||
((flags & 0xf0) == M_ICONWARNING))
fl_alert("%s", buffer);
else
fl_message("%s", buffer);
return true;
}
return false;
}
|