summaryrefslogtreecommitdiffstats
path: root/knetworkmanager-0.8/src/knetworkmanager-connection_setting_wireless_security.cpp
blob: a01f8f61a24d256507b5fdb9b613c4955eb29bbc (plain)
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
/**************************************************************************
 *
 * knetworkmanager-connection_setting_wireless_security.cpp - A NetworkManager frontend for KDE
 *
 * Copyright (C) 2005, 2006 Novell, Inc.
 *
 * Author: Helmut Schaa <hschaa@suse.de>, <helmut.schaa@gmx.de>
 *
 * This program 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
 *
 **************************************************************************/

/* qt headers */
#include <tqhostaddress.h>
#include <tqvariant.h>

/* kde headers */
#include <kdebug.h>
#include <klocale.h>

/* TQT_DBus headers*/
#include <tqdbusdata.h>
#include <tqdbusdatamap.h>

/* knetworkmanager headers */
#include "knetworkmanager.h"
#include "knetworkmanager-connection_setting_wireless_security.h"
#include "knetworkmanager-accesspoint.h"
#include "knetworkmanager-connection_setting_wireless.h"
#include "knetworkmanager-connection.h"
#include "sha1.h"
#include "md5.h"


using namespace ConnectionSettings;

/*
	class WirelessSecurity
*/
WirelessSecurity::WirelessSecurity(Connection* conn)
	: ConnectionSetting(conn, NM_SETTING_WIRELESS_SECURITY_SETTING_NAME)
	, _keyMgmt(KEY_MGMT_NONE)
	, _wepTxKeyidx(0)
	, _authAlg(AUTH_ALG_NONE)
	, _proto(PROTO_NONE)
	, _pairwise(CIPHER_TKIP | CIPHER_CCMP)
	, _group(CIPHER_TKIP | CIPHER_CCMP)
{
	// init key_mgmt map
	_keyMgmtMap[KEY_MGMT_NONE] = "none";
	_keyMgmtMap[KEY_MGMT_WPA_PSK] = "wpa-psk";
	_keyMgmtMap[KEY_MGMT_WPA_EAP] = "wpa-eap";
	_keyMgmtMap[KEY_MGMT_IEEE8021X] = "ieee8021x";

	// init auth_alg map
	_authAlgMap[AUTH_ALG_NONE] = TQString(); // do not include auth alg if none is needed
	_authAlgMap[AUTH_ALG_OPEN] = "open";
	_authAlgMap[AUTH_ALG_SHARED] = "shared";
	_authAlgMap[AUTH_ALG_LEAP] = "leap";

	// proto map
	_protoMap[PROTO_WPA] = "wpa";
	_protoMap[PROTO_RSN] = "rsn"; // Info: rsn is wpa2

	// cipher map
	_cipherMap[CIPHER_TKIP] = "tkip";
	_cipherMap[CIPHER_CCMP] = "ccmp";
	_cipherMap[CIPHER_WEP40] = "wep40";
	_cipherMap[CIPHER_WEP104] = "wep104";

}

bool WirelessSecurity::getEnabled() const
{
	Connection* conn = getConnection();
	if (conn)
	{
		Wireless* wireless = dynamic_cast<Wireless*>(conn->getSetting(NM_SETTING_WIRELESS_SETTING_NAME));
		if (wireless && wireless->getSecurity() != getType())
		{
			kdDebug() << "WirelessSecurity::getEnabled false " << wireless->getSecurity().ascii() << endl;
			return false;
		}
	}
	return true;
}

int
WirelessSecurity::getWepTxidx(void) const
{
	return _wepTxKeyidx;
}

void
WirelessSecurity::setWepTxidx(int idx)
{
	if (idx >= 0 && idx < 4)
		_wepTxKeyidx = idx;
}

void
WirelessSecurity::setWepKey(int idx, TQString key)
{
	kdDebug() << "WirelessSecurity::setWepKey " << idx << " " << key.ascii() << endl;
	if (idx >= 0 && idx < 4)
		_wepKey[idx] = key;
}

TQString
WirelessSecurity::getWepKey(int idx) const
{
	if (idx >= 0 && idx < 4)
		return _wepKey[idx];
	return TQString();
}

uint32_t
WirelessSecurity::getGroupCiphers(void) const
{
	return _group;
}

void
WirelessSecurity::setGroupCiphers(uint32_t ciphers)
{
	_group= ciphers & (CIPHER_TKIP | CIPHER_CCMP | CIPHER_WEP40 | CIPHER_WEP104);
}

uint32_t
WirelessSecurity::getPairwiseCiphers(void) const
{
	return _pairwise;
}

void
WirelessSecurity::setPairwiseCiphers(uint32_t ciphers)
{
	// only tkip and ccmp allowed
	_pairwise = ciphers & (CIPHER_TKIP | CIPHER_CCMP);
}

uint32_t
WirelessSecurity::getProto(void) const
{
	return _proto;
}

void
WirelessSecurity::setProto(uint32_t proto)
{
	_proto = proto & (PROTO_WPA | PROTO_RSN);
}

void
WirelessSecurity::addProto(uint32_t proto)
{
	setProto(_proto | proto);
}

void
WirelessSecurity::delProto(uint32_t proto)
{
	setProto(_proto & ~proto);
}

TQString
WirelessSecurity::getPSK(void) const
{
	return _psk;
}

void
WirelessSecurity::setPSK(const TQString& psk)
{
	_psk = psk;
}

TQString
WirelessSecurity::getLeapPassword(void) const
{
	return _leapPassword;
}

void
WirelessSecurity::setLeapPassword(const TQString& p)
{
	_leapPassword = p;
}

TQString
WirelessSecurity::getLeapUsername(void) const
{
	return _leapUsername;
}

void
WirelessSecurity::setLeapUsername(const TQString& u)
{
	_leapUsername = u;
}

WirelessSecurity::KEY_MGMT
WirelessSecurity::getKeyMgmt(void) const
{
	return _keyMgmt;
}

void
WirelessSecurity::setKeyMgmt(KEY_MGMT keyMgmt)
{
	_keyMgmt = keyMgmt;
}

WirelessSecurity::AUTH_ALG
WirelessSecurity::getAuthAlg(void) const
{
	return _authAlg;
}

void
WirelessSecurity::setAuthAlg(AUTH_ALG authAlg)
{
	_authAlg = authAlg;
}

SettingsMap
WirelessSecurity::toMap() const
{
	SettingsMap map;

	// KEY MGMT
	map.insert(NM_SETTING_WIRELESS_SECURITY_KEY_MGMT, TQT_DBusData::fromString(_keyMgmtMap[_keyMgmt]));

	// WEP TX KEYIDX is only needed if WEP is used
	if (_keyMgmt == KEY_MGMT_NONE && _wepTxKeyidx >= 0 && _wepTxKeyidx <= 3)
	{
		// WEP TX KEYIDX
		map.insert(NM_SETTING_WIRELESS_SECURITY_WEP_TX_KEYIDX, TQT_DBusData::fromInt32(_wepTxKeyidx));
	}

	// AUTH ALG
	if (_authAlg != AUTH_ALG_NONE)
		map.insert(NM_SETTING_WIRELESS_SECURITY_AUTH_ALG, TQT_DBusData::fromString(_authAlgMap[_authAlg]));

	// PROTO is only needed for WPA connections 
	if (_proto != PROTO_NONE && (_keyMgmt == KEY_MGMT_WPA_NONE || _keyMgmt == KEY_MGMT_WPA_PSK || _keyMgmt == KEY_MGMT_WPA_EAP))
	{
		TQValueList<TQT_DBusData> protos;
		for (TQMap<PROTO, TQString>::ConstIterator it = _protoMap.begin(); it != _protoMap.end(); ++it)
			if (_proto & it.key())
				protos.append(TQT_DBusData::fromString(it.data()));
		if (protos.size() > 0)
			map.insert(NM_SETTING_WIRELESS_SECURITY_PROTO, TQT_DBusData::fromTQValueList(protos));
	}

	// groupcipher
	if (_group != CIPHER_NONE)
	{
		TQValueList<TQT_DBusData> ciphers;
		for (TQMap<CIPHERS, TQString>::ConstIterator it = _cipherMap.begin(); it != _cipherMap.end(); ++it)
			if (_group & it.key())
				ciphers.append(TQT_DBusData::fromString(it.data()));

		if (ciphers.size() > 0)
			map.insert(NM_SETTING_WIRELESS_SECURITY_GROUP, TQT_DBusData::fromTQValueList(ciphers));
	}

	// pairwise cipher
	if (_pairwise != CIPHER_NONE)
	{
		TQValueList<TQT_DBusData> ciphers;

		for (TQMap<CIPHERS, TQString>::ConstIterator it = _cipherMap.begin(); it != _cipherMap.end(); ++it)
			if (_pairwise & it.key())
				ciphers.append(TQT_DBusData::fromString(it.data()));

		if (ciphers.size() > 0)
			map.insert(NM_SETTING_WIRELESS_SECURITY_PAIRWISE, TQT_DBusData::fromTQValueList(ciphers));
	}

	if (!_leapUsername.isEmpty())
		map.insert(NM_SETTING_WIRELESS_SECURITY_LEAP_USERNAME, TQT_DBusData::fromString(_leapUsername));

	return map;
}

void
WirelessSecurity::fromMap(const SettingsMap& map)
{
	kdDebug() << "WirelessSecurity::fromMap" << endl;

	for (SettingsMap::ConstIterator it = map.begin(); it != map.end(); ++it)
	{
		if (it.key() == NM_SETTING_WIRELESS_SECURITY_KEY_MGMT)
		{
			TQBiDirectionalMap<KEY_MGMT, TQString>::Iterator it2;
			if (_keyMgmtMap.end() != (it2 = _keyMgmtMap.findData(it.data().toString())))
				setKeyMgmt(it2.key());
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_WEP_TX_KEYIDX)
		{
			_wepTxKeyidx = it.data().toInt32();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_AUTH_ALG)
		{
			TQBiDirectionalMap<AUTH_ALG, TQString>::Iterator it2;
			if (_authAlgMap.end() != (it2 = _authAlgMap.findData(it.data().toString())))
				setAuthAlg(it2.key());
		}
		else if(it.key() == NM_SETTING_WIRELESS_SECURITY_PROTO)
		{
			TQValueList<TQT_DBusData> proto_list = it.data().toTQValueList();
			uint32_t protos = PROTO_NONE;
			for (TQValueList<TQT_DBusData>::Iterator proto_it = proto_list.begin(); proto_it != proto_list.end(); ++proto_it)
			{
				TQBiDirectionalMap<PROTO, TQString>::Iterator it2;
				if (_protoMap.end() != (it2 = _protoMap.findData( (*proto_it).toString() )))
					protos |= it2.key();
			}
			setProto(protos);
		}
		else if(it.key() == NM_SETTING_WIRELESS_SECURITY_GROUP)
		{
			TQValueList<TQT_DBusData> cipher_list = it.data().toTQValueList();
			uint32_t ciphers = CIPHER_NONE;
			for (TQValueList<TQT_DBusData>::Iterator cipher_it = cipher_list.begin(); cipher_it != cipher_list.end(); ++cipher_it)
			{
				TQBiDirectionalMap<CIPHERS, TQString>::Iterator it2;
				if (_cipherMap.end() != (it2 = _cipherMap.findData( (*cipher_it).toString() )))
					ciphers |= it2.key();
			}
			setGroupCiphers(ciphers);
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_PAIRWISE)
		{
			TQValueList<TQT_DBusData> cipher_list = it.data().toTQValueList();
			uint32_t ciphers = CIPHER_NONE;
			for (TQValueList<TQT_DBusData>::Iterator cipher_it = cipher_list.begin(); cipher_it != cipher_list.end(); ++cipher_it)
			{
				TQBiDirectionalMap<CIPHERS, TQString>::Iterator it2;
				if (_cipherMap.end() != (it2 = _cipherMap.findData( (*cipher_it).toString() )))
					ciphers |= it2.key();
			}
			setPairwiseCiphers(ciphers);
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_LEAP_USERNAME)
		{
			_leapUsername = it.data().toString();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_LEAP_PASSWORD)
		{
			_leapPassword = it.data().toString();
		}
		else
			kdWarning() << k_funcinfo << " Unknown setting: " << it.key() << endl;
	}
}

SettingsMap
WirelessSecurity::toSecretsMap(bool with_settings) const
{
	SettingsMap map;
	kdDebug() << "WirelessSecurity::toSecretsMap" << endl;
	// first serialize the settings if needed
	if (with_settings)
		map = toMap();

	// add the hashed psk
	if (!_psk.isNull())
	{
		map.insert(NM_SETTING_WIRELESS_SECURITY_PSK, TQT_DBusData::fromString(_psk), TRUE);
	}

	// wep keys
	if (!_wepKey[0].isNull())
	{
		kdDebug() << "insert wep key0: " << _wepKey[0].ascii() << endl;
		map.insert(NM_SETTING_WIRELESS_SECURITY_WEP_KEY0, TQT_DBusData::fromString(_wepKey[0]));
	}

	if (!_wepKey[1].isNull())
	{
		map.insert(NM_SETTING_WIRELESS_SECURITY_WEP_KEY1, TQT_DBusData::fromString(_wepKey[1]));
	}

	if (!_wepKey[2].isNull())
	{
		map.insert(NM_SETTING_WIRELESS_SECURITY_WEP_KEY2, TQT_DBusData::fromString(_wepKey[2]));
	}

	if (!_wepKey[3].isNull())
	{
		map.insert(NM_SETTING_WIRELESS_SECURITY_WEP_KEY3, TQT_DBusData::fromString(_wepKey[3]));
	}

	if (!_leapPassword.isEmpty())
		map.insert(NM_SETTING_WIRELESS_SECURITY_LEAP_PASSWORD, TQT_DBusData::fromString(_leapPassword));

	return map;
}

bool
WirelessSecurity::fromSecretsMap(const SettingsMap& map)
{
	kdDebug() << "WirelessSecurity::fromMap" << endl;

	for (SettingsMap::ConstIterator it = map.begin(); it != map.end(); ++it)
	{
		if (it.key() == NM_SETTING_WIRELESS_SECURITY_PSK)
		{
			_psk = it.data().toString();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_WEP_KEY0)
		{
			_wepKey[0] = it.data().toString();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_WEP_KEY1)
		{
			_wepKey[1] = it.data().toString();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_WEP_KEY2)
		{
			_wepKey[2] = it.data().toString();
		}
		else if (it.key() == NM_SETTING_WIRELESS_SECURITY_WEP_KEY3)
		{
			_wepKey[3] = it.data().toString();
		}
		else
			kdWarning() << k_funcinfo << " Unknown setting: " << it.key() << endl;
	}
	return true;
}

bool
WirelessSecurity::isValid() const
{
	return true;
}