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
|
/*
Copyright 2009 Will Stephenson <wstephenson@kde.org>
possible() incorporates code from nm-utils.c by
Ray Strode <rstrode@redhat.com>
Dan Williams <dcbw@redhat.com>
Tambet Ingo <tambet@gmail.com>
(C) Copyright 2005 - 2008 Red Hat, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <KLocale>
#include "wirelesssecurityidentifier.h"
bool Knm::WirelessSecurity::interfaceSupportsApCiphers(Solid::Control::WirelessNetworkInterface::Capabilities interfaceCaps, Solid::Control::AccessPoint::WpaFlags apCiphers, Knm::WirelessSecurity::Type type )
{
bool havePair = false;
bool haveGroup = true;
if ( type == WirelessSecurity::StaticWep ) {
havePair = true;
} else {
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Wep40) && apCiphers.testFlag(Solid::Control::AccessPoint::PairWep40)) {
havePair = true;
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Wep104) && apCiphers.testFlag(Solid::Control::AccessPoint::PairWep104)) {
havePair = true;
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Tkip) && apCiphers.testFlag(Solid::Control::AccessPoint::PairTkip)) {
havePair = true;
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Ccmp) && apCiphers.testFlag(Solid::Control::AccessPoint::PairCcmp)) {
havePair = true;
}
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Wep40) && apCiphers.testFlag(Solid::Control::AccessPoint::GroupWep40)) {
haveGroup = true;
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Wep104) && apCiphers.testFlag(Solid::Control::AccessPoint::GroupWep104)) {
haveGroup = true;
}
if (type != StaticWep) {
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Tkip) && apCiphers.testFlag(Solid::Control::AccessPoint::GroupTkip)) {
haveGroup = true;
}
if ( interfaceCaps.testFlag(Solid::Control::WirelessNetworkInterface::Ccmp) && apCiphers.testFlag(Solid::Control::AccessPoint::GroupCcmp)) {
haveGroup = true;
}
}
return havePair && haveGroup;
}
bool Knm::WirelessSecurity::possible(Knm::WirelessSecurity::Type type, Solid::Control::WirelessNetworkInterface::Capabilities interfaceCaps, bool haveAp, bool adhoc, Solid::Control::AccessPoint::Capabilities apCaps, Solid::Control::AccessPoint::WpaFlags apWpa, Solid::Control::AccessPoint::WpaFlags apRsn)
{
bool good = TRUE;
if (!haveAp) {
if (type == Knm::WirelessSecurity::None)
return true;
if ((type == Knm::WirelessSecurity::StaticWep)
|| ((type == Knm::WirelessSecurity::DynamicWep) && !adhoc)
|| ((type == Knm::WirelessSecurity::Leap) && !adhoc)) {
if (interfaceCaps & (Solid::Control::WirelessNetworkInterface::Wep40 | Solid::Control::WirelessNetworkInterface::Wep104))
return true;
}
if (type == Knm::WirelessSecurity::WpaPsk
||type == Knm::WirelessSecurity::WpaEap) {
if (interfaceCaps & (Solid::Control::WirelessNetworkInterface::Wpa)) {
return true;
}
}
if (type == Knm::WirelessSecurity::Wpa2Psk
||type == Knm::WirelessSecurity::Wpa2Eap) {
if (interfaceCaps & (Solid::Control::WirelessNetworkInterface::Rsn)) {
return true;
}
}
return false;
}
switch (type) {
case Knm::WirelessSecurity::None:
Q_ASSERT (haveAp);
if (apCaps & Solid::Control::AccessPoint::Privacy)
return false;
if (apWpa || apRsn)
return false;
break;
case Knm::WirelessSecurity::Leap: /* require PRIVACY bit for LEAP? */
if (adhoc)
return false;
/* Fall through */
case Knm::WirelessSecurity::StaticWep:
Q_ASSERT (haveAp);
if (!(apCaps & Solid::Control::AccessPoint::Privacy))
return false;
if (apWpa || apRsn) {
if (!interfaceSupportsApCiphers (interfaceCaps, apWpa, StaticWep))
if (!interfaceSupportsApCiphers (interfaceCaps, apRsn, StaticWep))
return false;
}
break;
case Knm::WirelessSecurity::DynamicWep:
if (adhoc)
return false;
Q_ASSERT (haveAp);
if (apRsn || !(apCaps & Solid::Control::AccessPoint::Privacy))
return false;
/* Some APs broadcast minimal WPA-enabled beacons that must be handled */
if (apWpa) {
if (!(apWpa & Solid::Control::AccessPoint::KeyMgmt8021x))
return false;
if (!interfaceSupportsApCiphers (interfaceCaps, apWpa, DynamicWep))
return false;
}
break;
case Knm::WirelessSecurity::WpaPsk:
if (!(interfaceCaps & Solid::Control::WirelessNetworkInterface::Wpa))
return false;
if (haveAp) {
/* Ad-Hoc WPA APs won't necessarily have the PSK flag set */
if ((apWpa & Solid::Control::AccessPoint::KeyMgmtPsk) || adhoc) {
if ( (apWpa & Solid::Control::AccessPoint::PairTkip)
&& (interfaceCaps & Solid::Control::WirelessNetworkInterface::Tkip))
return true;
if ( (apWpa & Solid::Control::AccessPoint::PairCcmp)
&& (interfaceCaps & Solid::Control::WirelessNetworkInterface::Ccmp))
return true;
}
return false;
}
break;
case Knm::WirelessSecurity::Wpa2Psk:
if (!(interfaceCaps & Solid::Control::WirelessNetworkInterface::Rsn))
return false;
if (haveAp) {
/* Ad-Hoc WPA APs won't necessarily have the PSK flag set */
if ((apRsn & Solid::Control::AccessPoint::KeyMgmtPsk) || adhoc) {
if ( (apRsn & Solid::Control::AccessPoint::PairTkip)
&& (interfaceCaps & Solid::Control::WirelessNetworkInterface::Tkip))
return true;
if ( (apRsn & Solid::Control::AccessPoint::PairCcmp)
&& (interfaceCaps & Solid::Control::WirelessNetworkInterface::Ccmp))
return true;
}
return false;
}
break;
case Knm::WirelessSecurity::WpaEap:
if (adhoc)
return false;
if (!(interfaceCaps & Solid::Control::WirelessNetworkInterface::Wpa))
return false;
if (haveAp) {
if (!(apWpa & Solid::Control::AccessPoint::KeyMgmt8021x))
return false;
/* Ensure at least one WPA cipher is supported */
if (!interfaceSupportsApCiphers (interfaceCaps, apWpa, WpaEap))
return false;
}
break;
case Knm::WirelessSecurity::Wpa2Eap:
if (adhoc)
return false;
if (!(interfaceCaps & Solid::Control::WirelessNetworkInterface::Rsn))
return false;
if (haveAp) {
if (!(apRsn & Solid::Control::AccessPoint::KeyMgmt8021x))
return false;
/* Ensure at least one WPA cipher is supported */
if (!interfaceSupportsApCiphers (interfaceCaps, apRsn, Wpa2Eap))
return false;
}
break;
default:
good = false;
break;
}
return good;
}
Knm::WirelessSecurity::Type Knm::WirelessSecurity::best(Solid::Control::WirelessNetworkInterface::Capabilities interfaceCaps, bool haveAp, bool adHoc, Solid::Control::AccessPoint::Capabilities apCaps, Solid::Control::AccessPoint::WpaFlags apWpa, Solid::Control::AccessPoint::WpaFlags apRsn)
{
QList<Knm::WirelessSecurity::Type> types;
// The ordering of this list is a pragmatic combination of security level and popularity.
// Therefore static WEP is before LEAP and Dynamic WEP because there is no way to detect
// if an AP is capable of Dynamic WEP and showing Dynamic WEP first would confuse
// Static WEP users.
types << Knm::WirelessSecurity::Wpa2Eap << Knm::WirelessSecurity::Wpa2Psk << Knm::WirelessSecurity::WpaEap << Knm::WirelessSecurity::WpaPsk << Knm::WirelessSecurity::StaticWep << Knm::WirelessSecurity::DynamicWep << Knm::WirelessSecurity::Leap << Knm::WirelessSecurity::None;
foreach (Knm::WirelessSecurity::Type type, types) {
if (possible(type, interfaceCaps, haveAp, adHoc, apCaps, apWpa, apRsn)) {
return type;
}
}
return Knm::WirelessSecurity::Unknown;
}
QString Knm::WirelessSecurity::label(Knm::WirelessSecurity::Type type)
{
QString tip;
switch (type) {
case None:
tip = i18nc("@label no security", "Insecure");
break;
case StaticWep:
tip = i18nc("@label WEP security", "WEP");
break;
case Leap:
tip = i18nc("@label LEAP security", "LEAP");
break;
case DynamicWep:
tip = i18nc("@label Dynamic WEP security", "Dynamic WEP");
break;
case WpaPsk:
tip = i18nc("@label WPA-PSK security", "WPA-PSK");
break;
case WpaEap:
tip = i18nc("@label WPA-EAP security", "WPA-EAP");
break;
case Wpa2Psk:
tip = i18nc("@label WPA2-PSK security", "WPA2-PSK");
break;
case Wpa2Eap:
tip = i18nc("@label WPA2-EAP security", "WPA2-EAP");
break;
default:
case Unknown:
tip = i18nc("@label unknown security", "Unknown security type");
break;
}
return tip;
}
QString Knm::WirelessSecurity::shortToolTip(Knm::WirelessSecurity::Type type)
{
QString tip;
switch (type) {
case None:
tip = i18nc("@info:tooltip no security", "Insecure");
break;
case StaticWep:
tip = i18nc("@info:tooltip WEP security", "WEP");
break;
case Leap:
tip = i18nc("@info:tooltip LEAP security", "LEAP");
break;
case DynamicWep:
tip = i18nc("@info:tooltip Dynamic WEP security", "Dynamic WEP");
break;
case WpaPsk:
tip = i18nc("@info:tooltip WPA-PSK security", "WPA-PSK");
break;
case WpaEap:
tip = i18nc("@info:tooltip WPA-EAP security", "WPA-EAP");
break;
case Wpa2Psk:
tip = i18nc("@info:tooltip WPA2-PSK security", "WPA2-PSK");
break;
case Wpa2Eap:
tip = i18nc("@info:tooltip WPA2-EAP security", "WPA2-EAP");
break;
default:
case Unknown:
tip = i18nc("@info:tooltip unknown security", "Unknown security type");
break;
}
return tip;
}
QString Knm::WirelessSecurity::iconName(Knm::WirelessSecurity::Type type)
{
QString icon;
switch (type) {
case None:
icon = QLatin1String("security-low");
break;
case StaticWep:
icon = QLatin1String("security-medium");
break;
case Leap:
icon = QLatin1String("security-medium");
break;
case DynamicWep:
icon = QLatin1String("security-medium");
break;
case WpaPsk:
icon = QLatin1String("security-high");
break;
case WpaEap:
icon = QLatin1String("security-high");
break;
case Wpa2Psk:
icon = QLatin1String("security-high");
break;
case Wpa2Eap:
icon = QLatin1String("security-high");
break;
default:
case Unknown:
icon = QLatin1String("security-low");
break;
}
return icon;
}
// vim: sw=4 sts=4 et tw=100
|