3 * Copyright 2014 Roy Marples <roy@marples.name>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 #include <QInputDialog>
31 #include <QMessageBox>
32 #include <QSocketNotifier>
34 #include <QWidgetAction>
39 #include "dhcpcd-wi.h"
40 #include "dhcpcd-qt.h"
41 #include "dhcpcd-ifmenu.h"
42 #include "dhcpcd-ssidmenu.h"
44 DhcpcdWi::DhcpcdWi(DhcpcdQt *parent, DHCPCD_WPA *wpa)
47 this->dhcpcdQt = parent;
52 int fd = dhcpcd_wpa_get_fd(wpa);
53 notifier = new QSocketNotifier(fd, QSocketNotifier::Read);
54 connect(notifier, SIGNAL(activated(int)), this, SLOT(dispatch()));
55 retryOpenTimer = NULL;
71 dhcpcd_wi_scans_free(scans);
74 DHCPCD_WPA *DhcpcdWi::getWpa()
80 DHCPCD_WI_SCAN *DhcpcdWi::getScans()
86 bool DhcpcdWi::setScans(DHCPCD_WI_SCAN *scans)
91 QList<DhcpcdSsidMenu*> lst;
94 lst = menu->findChildren<DhcpcdSsidMenu*>();
95 for (scan = scans; scan; scan = scan->next) {
98 foreach(DhcpcdSsidMenu *sm, lst) {
99 DHCPCD_WI_SCAN *s = sm->getScan();
100 if (memcmp(scan->bssid, s->bssid,
101 sizeof(scan->bssid)) == 0)
110 createMenuItem(menu, scan);
115 foreach(DhcpcdSsidMenu *sm, lst) {
116 DHCPCD_WI_SCAN *s = sm->getScan();
117 for (scan = scans; scan; scan = scan->next) {
118 if (memcmp(scan->bssid, s->bssid,
119 sizeof(scan->bssid)) == 0)
123 menu->removeAction(sm->getWidgetAction());
129 dhcpcd_wi_scans_free(this->scans);
132 return !(changed == 0);
135 void DhcpcdWi::createMenuItem(QMenu *menu, DHCPCD_WI_SCAN *scan)
137 QWidgetAction *wa = new QWidgetAction(menu);
138 DhcpcdSsidMenu *ssidMenu = new DhcpcdSsidMenu(menu, wa, this, scan);
139 wa->setDefaultWidget(ssidMenu);
141 connect(ssidMenu, SIGNAL(selected(DHCPCD_WI_SCAN *)),
142 this, SLOT(connectSsid(DHCPCD_WI_SCAN *)));
145 void DhcpcdWi::createMenu1(QMenu *menu)
147 DHCPCD_WI_SCAN *scan;
149 for (scan = scans; scan; scan = scan->next)
150 createMenuItem(menu, scan);
153 void DhcpcdWi::createMenu(QMenu *menu)
160 QMenu *DhcpcdWi::createIfMenu(QMenu *parent)
165 ifp = dhcpcd_wpa_if(wpa);
166 menu = new DhcpcdIfMenu(ifp, parent);
167 icon = DhcpcdQt::getIcon("devices", "network-wireless");
173 void DhcpcdWi::wpaOpen()
175 int fd = dhcpcd_wpa_open(wpa);
176 static int last_error;
179 if (errno != last_error) {
181 qCritical("%s: dhcpcd_wpa_open: %s",
182 dhcpcd_wpa_if(wpa)->ifname,
183 strerror(last_error));
188 notifier = new QSocketNotifier(fd, QSocketNotifier::Read);
189 connect(notifier, SIGNAL(activated(int)), this, SLOT(dispatch()));
190 if (retryOpenTimer) {
191 delete retryOpenTimer;
192 retryOpenTimer = NULL;
196 void DhcpcdWi::dispatch()
199 if (dhcpcd_wpa_get_fd(wpa) == -1) {
202 DHCPCD_IF *i = dhcpcd_wpa_if(wpa);
204 strcmp(i->reason, "DEPARTED") == 0 ||
205 strcmp(i->reason, "STOPPED") == 0)
209 qPrintable(tr("dhcpcd WPA connection lost")));
210 if (retryOpenTimer == NULL) {
211 retryOpenTimer = new QTimer(this);
212 connect(retryOpenTimer, SIGNAL(timeout()),
213 this, SLOT(wpaOpen()));
214 retryOpenTimer->start(DHCPCD_RETRYOPEN);
219 dhcpcd_wpa_dispatch(wpa);
222 void DhcpcdWi::connectSsid(DHCPCD_WI_SCAN *scan)
227 /* Take a copy of scan incase it's destroyed by a scan update */
228 memcpy(&s, scan, sizeof(s));
231 QString psk = QInputDialog::getText(dhcpcdQt, s.ssid,
232 tr("Pre Shared key"), QLineEdit::Normal, NULL, &ok);
239 switch (dhcpcd_wpa_configure_psk(wpa, &s, psk.toAscii())) {
240 case DHCPCD_WPA_SUCCESS:
242 case DHCPCD_WPA_ERR_SET:
243 errt = tr("Failed to set key management.");
245 case DHCPCD_WPA_ERR_SET_PSK:
246 errt = tr("Failed to set password, probably too short.");
248 case DHCPCD_WPA_ERR_ENABLE:
249 errt = tr("Failed to enable the network.");
251 case DHCPCD_WPA_ERR_ASSOC:
252 errt = tr("Failed to start association.");
254 case DHCPCD_WPA_ERR_WRITE:
255 errt = tr("Failed to save wpa_supplicant configuration.\n\nYou should add update_config=1 to /etc/wpa_supplicant.conf.");
258 errt = strerror(errno);
262 QMessageBox::critical(dhcpcdQt, tr("Error setting wireless properties"),