forked from alagoutte/shrew
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathroot.cpp
More file actions
263 lines (214 loc) · 7.1 KB
/
root.cpp
File metadata and controls
263 lines (214 loc) · 7.1 KB
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
/*
* Copyright (c) 2007
* Shrew Soft Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Redistributions in any form must be accompanied by information on
* how to obtain complete source code for the software and any
* accompanying software that uses the software. The source code
* must either be included in the distribution or be available for no
* more than the cost of distribution plus a nominal fee, and must be
* freely redistributable under reasonable conditions. For an
* executable file, complete source code means the source code for all
* modules it contains. It does not include source code for modules or
* files that typically accompany the major components of the operating
* system on which the executable file runs.
*
* THIS SOFTWARE IS PROVIDED BY SHREW SOFT INC ``AS IS'' AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
* NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL SHREW SOFT INC
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
* AUTHOR : Matthew Grooms
* mgrooms@shrew.net
*
*/
#include "qikec.h"
void _qikecRoot::customEvent( QEvent * e )
{
if( e->type() == EVENT_STATUS )
{
StatusEvent * event = ( StatusEvent * ) e;
switch( event->status )
{
case STATUS_WARN:
textBrowserStatus->setTextColor( QColor( 192, 128, 0 ) );
break;
case STATUS_FAIL:
textBrowserStatus->setTextColor( QColor( 128, 0, 0 ) );
break;
default:
textBrowserStatus->setTextColor( QColor( 0, 0, 0 ) );
}
switch( event->status )
{
case STATUS_BANNER:
{
qikecBanner b( this );
b.textBrowserMOTD->setText( event->text );
b.exec();
break;
}
case STATUS_DISCONNECTED:
textLabelStatusValue->setText( "Disconnected" );
lineEditUsername->setEnabled( true );
lineEditPassword->setEnabled( true );
pushButtonConnect->setEnabled( true );
pushButtonConnect->setText( "Connect" );
pushButtonExit->setEnabled( true );
pushButtonExit->setText( "Exit" );
textBrowserStatus->insertPlainText( "tunnel disabled\n" );
break;
case STATUS_CONNECTING:
textLabelStatusValue->setText( "Connecting" );
lineEditUsername->setEnabled( false );
lineEditPassword->setEnabled( false );
pushButtonConnect->setEnabled( false );
pushButtonConnect->setText( "Connect" );
pushButtonExit->setEnabled( true );
pushButtonExit->setText( "Cancel" );
textBrowserStatus->insertPlainText( "bringing up tunnel ...\n" );
break;
case STATUS_CONNECTED:
textLabelStatusValue->setText( "Connected" );
pushButtonConnect->setEnabled( true );
pushButtonConnect->setText( "Disconnect" );
pushButtonExit->setEnabled( false );
pushButtonExit->setText( "Exit" );
textBrowserStatus->insertPlainText( "tunnel enabled\n" );
break;
case STATUS_DISCONNECTING:
textLabelStatusValue->setText( "Disconnecting" );
pushButtonConnect->setEnabled( false );
pushButtonConnect->setText( "Disconnect" );
pushButtonExit->setEnabled( false );
pushButtonExit->setText( "Exit" );
textBrowserStatus->insertPlainText( "bringing down tunnel ...\n" );
break;
case STATUS_INFO:
case STATUS_WARN:
case STATUS_FAIL:
textBrowserStatus->insertPlainText( event->text );
break;
default:
textBrowserStatus->insertPlainText( "!!! unknown status message !!!\n" );
}
textBrowserStatus->moveCursor( QTextCursor::End );
}
if( e->type() == EVENT_STATS )
{
StatsEvent * event = ( StatsEvent * ) e;
QString n;
n.setNum( event->stats.sa_good );
textLabelEstablishedValue->setText( n );
n.setNum( event->stats.sa_dead );
textLabelExpiredValue->setText( n );
n.setNum( event->stats.sa_fail );
textLabelFailedValue->setText( n );
textLabelRemoteValue->setText( inet_ntoa( event->stats.peer.saddr4.sin_addr ) );
switch( event->stats.natt )
{
case IPSEC_NATT_NONE:
textLabelTransportValue->setText( "IKE | ESP" );
break;
case IPSEC_NATT_CISCO:
textLabelTransportValue->setText( "IKE | CISCO-UDP / ESP" );
break;
case IPSEC_NATT_V00:
textLabelTransportValue->setText( "NAT-T v00 / IKE | ESP" );
break;
case IPSEC_NATT_V01:
textLabelTransportValue->setText( "NAT-T v01 / IKE | ESP" );
break;
case IPSEC_NATT_V02:
textLabelTransportValue->setText( "NAT-T v02 / IKE | ESP" );
break;
case IPSEC_NATT_V03:
textLabelTransportValue->setText( "NAT-T v03 / IKE | ESP" );
break;
case IPSEC_NATT_RFC:
textLabelTransportValue->setText( "NAT-T RFC / IKE | ESP" );
break;
}
if( event->stats.frag )
textLabelFragValue->setText( "Enabled" );
else
textLabelFragValue->setText( "Disabled" );
if( event->stats.dpd )
textLabelDPDValue->setText( "Enabled" );
else
textLabelDPDValue->setText( "Disabled" );
}
if( e->type() == EVENT_USERNAME )
{
UsernameEvent * event = ( UsernameEvent * ) e;
event->data->text = lineEditUsername->text();
event->data->result = 0;
}
if( e->type() == EVENT_PASSWORD )
{
PasswordEvent * event = ( PasswordEvent * ) e;
event->data->text = lineEditPassword->text();
event->data->result = 0;
}
if( e->type() == EVENT_FILEPASS )
{
FilePassEvent * event = ( FilePassEvent * ) e;
qikecFilePass fp;
QFileInfo pathInfo( event->data->filepath );
fp.setWindowTitle( "Password for " + pathInfo.fileName() );
event->data->result = fp.exec();
event->data->password = fp.lineEditPassword->text();
}
}
void _qikecRoot::siteConnect()
{
if( qikec.state() != CLIENT_STATE_DISCONNECTED )
{
// call ikec disconnect function
qikec.vpn_disconnect();
}
else
{
// verify that a valid username and password was supplied
if( !groupBoxCredentials->isHidden() )
{
if( !lineEditUsername->text().length() ||
!lineEditPassword->text().length() )
{
qikec.log( STATUS_FAIL,
"please enter a valid username and password\n" );
return;
}
}
// call ikec connect function
qikec.vpn_connect( false );
}
}
void _qikecRoot::siteDisconnect()
{
if( qikec.state() != CLIENT_STATE_DISCONNECTED )
{
// call ikec disconnect function
qikec.vpn_disconnect();
}
else
{
// close the application
close();
}
}