peers.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956
  1. /*
  2. * wpa_gui - Peers class
  3. * Copyright (c) 2009, Atheros Communications
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include <cstdio>
  15. #include <QImageReader>
  16. #include <QMessageBox>
  17. #include "common/wpa_ctrl.h"
  18. #include "wpagui.h"
  19. #include "stringquery.h"
  20. #include "peers.h"
  21. enum {
  22. peer_role_address = Qt::UserRole + 1,
  23. peer_role_type,
  24. peer_role_uuid,
  25. peer_role_details,
  26. peer_role_pri_dev_type,
  27. peer_role_ssid,
  28. peer_role_config_methods,
  29. peer_role_dev_passwd_id,
  30. peer_role_bss_id
  31. };
  32. /*
  33. * TODO:
  34. * - add current AP info (e.g., from WPS) in station mode
  35. */
  36. enum peer_type {
  37. PEER_TYPE_ASSOCIATED_STATION,
  38. PEER_TYPE_AP,
  39. PEER_TYPE_AP_WPS,
  40. PEER_TYPE_WPS_PIN_NEEDED,
  41. PEER_TYPE_WPS_ER_AP,
  42. PEER_TYPE_WPS_ER_AP_UNCONFIGURED,
  43. PEER_TYPE_WPS_ER_ENROLLEE,
  44. PEER_TYPE_WPS_ENROLLEE
  45. };
  46. Peers::Peers(QWidget *parent, const char *, bool, Qt::WFlags)
  47. : QDialog(parent)
  48. {
  49. setupUi(this);
  50. if (QImageReader::supportedImageFormats().contains(QByteArray("svg")))
  51. {
  52. default_icon = new QIcon(":/icons/wpa_gui.svg");
  53. ap_icon = new QIcon(":/icons/ap.svg");
  54. laptop_icon = new QIcon(":/icons/laptop.svg");
  55. } else {
  56. default_icon = new QIcon(":/icons/wpa_gui.png");
  57. ap_icon = new QIcon(":/icons/ap.png");
  58. laptop_icon = new QIcon(":/icons/laptop.png");
  59. }
  60. peers->setModel(&model);
  61. peers->setResizeMode(QListView::Adjust);
  62. peers->setContextMenuPolicy(Qt::CustomContextMenu);
  63. connect(peers, SIGNAL(customContextMenuRequested(const QPoint &)),
  64. this, SLOT(context_menu(const QPoint &)));
  65. wpagui = NULL;
  66. }
  67. void Peers::setWpaGui(WpaGui *_wpagui)
  68. {
  69. wpagui = _wpagui;
  70. update_peers();
  71. }
  72. Peers::~Peers()
  73. {
  74. delete default_icon;
  75. delete ap_icon;
  76. delete laptop_icon;
  77. }
  78. void Peers::languageChange()
  79. {
  80. retranslateUi(this);
  81. }
  82. QString Peers::ItemType(int type)
  83. {
  84. QString title;
  85. switch (type) {
  86. case PEER_TYPE_ASSOCIATED_STATION:
  87. title = tr("Associated station");
  88. break;
  89. case PEER_TYPE_AP:
  90. title = tr("AP");
  91. break;
  92. case PEER_TYPE_AP_WPS:
  93. title = tr("WPS AP");
  94. break;
  95. case PEER_TYPE_WPS_PIN_NEEDED:
  96. title = tr("WPS PIN needed");
  97. break;
  98. case PEER_TYPE_WPS_ER_AP:
  99. title = tr("ER: WPS AP");
  100. break;
  101. case PEER_TYPE_WPS_ER_AP_UNCONFIGURED:
  102. title = tr("ER: WPS AP (Unconfigured)");
  103. break;
  104. case PEER_TYPE_WPS_ER_ENROLLEE:
  105. title = tr("ER: WPS Enrollee");
  106. break;
  107. case PEER_TYPE_WPS_ENROLLEE:
  108. title = tr("WPS Enrollee");
  109. break;
  110. }
  111. return title;
  112. }
  113. void Peers::context_menu(const QPoint &pos)
  114. {
  115. QMenu *menu = new QMenu;
  116. if (menu == NULL)
  117. return;
  118. QModelIndex idx = peers->indexAt(pos);
  119. if (idx.isValid()) {
  120. ctx_item = model.itemFromIndex(idx);
  121. int type = ctx_item->data(peer_role_type).toInt();
  122. menu->addAction(Peers::ItemType(type))->setEnabled(false);
  123. menu->addSeparator();
  124. int config_methods = -1;
  125. QVariant var = ctx_item->data(peer_role_config_methods);
  126. if (var.isValid())
  127. config_methods = var.toInt();
  128. if ((type == PEER_TYPE_ASSOCIATED_STATION ||
  129. type == PEER_TYPE_AP_WPS ||
  130. type == PEER_TYPE_WPS_PIN_NEEDED ||
  131. type == PEER_TYPE_WPS_ER_ENROLLEE ||
  132. type == PEER_TYPE_WPS_ENROLLEE) &&
  133. (config_methods == -1 || (config_methods & 0x010c))) {
  134. menu->addAction(tr("Enter WPS PIN"), this,
  135. SLOT(enter_pin()));
  136. }
  137. if (type == PEER_TYPE_AP_WPS) {
  138. menu->addAction(tr("Connect (PBC)"), this,
  139. SLOT(connect_pbc()));
  140. }
  141. if ((type == PEER_TYPE_ASSOCIATED_STATION ||
  142. type == PEER_TYPE_WPS_ER_ENROLLEE ||
  143. type == PEER_TYPE_WPS_ENROLLEE) &&
  144. config_methods >= 0 && (config_methods & 0x0080)) {
  145. menu->addAction(tr("Enroll (PBC)"), this,
  146. SLOT(connect_pbc()));
  147. }
  148. if (type == PEER_TYPE_WPS_ER_AP) {
  149. menu->addAction(tr("Learn Configuration"), this,
  150. SLOT(learn_ap_config()));
  151. }
  152. menu->addAction(tr("Properties"), this, SLOT(properties()));
  153. } else {
  154. ctx_item = NULL;
  155. menu->addAction(QString(tr("Refresh")), this,
  156. SLOT(ctx_refresh()));
  157. }
  158. menu->exec(peers->mapToGlobal(pos));
  159. }
  160. void Peers::enter_pin()
  161. {
  162. if (ctx_item == NULL)
  163. return;
  164. int peer_type = ctx_item->data(peer_role_type).toInt();
  165. QString uuid;
  166. QString addr;
  167. if (peer_type == PEER_TYPE_WPS_ER_ENROLLEE)
  168. uuid = ctx_item->data(peer_role_uuid).toString();
  169. else
  170. addr = ctx_item->data(peer_role_address).toString();
  171. StringQuery input(tr("PIN:"));
  172. input.setWindowTitle(tr("PIN for ") + ctx_item->text());
  173. if (input.exec() != QDialog::Accepted)
  174. return;
  175. char cmd[100];
  176. char reply[100];
  177. size_t reply_len;
  178. if (peer_type == PEER_TYPE_WPS_ER_ENROLLEE) {
  179. snprintf(cmd, sizeof(cmd), "WPS_ER_PIN %s %s",
  180. uuid.toAscii().constData(),
  181. input.get_string().toAscii().constData());
  182. } else {
  183. snprintf(cmd, sizeof(cmd), "WPS_PIN %s %s",
  184. addr.toAscii().constData(),
  185. input.get_string().toAscii().constData());
  186. }
  187. reply_len = sizeof(reply) - 1;
  188. if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0) {
  189. QMessageBox msg;
  190. msg.setIcon(QMessageBox::Warning);
  191. msg.setText(tr("Failed to set the WPS PIN."));
  192. msg.exec();
  193. }
  194. }
  195. void Peers::ctx_refresh()
  196. {
  197. update_peers();
  198. }
  199. void Peers::add_station(QString info)
  200. {
  201. QStringList lines = info.split(QRegExp("\\n"));
  202. QString name;
  203. for (QStringList::Iterator it = lines.begin();
  204. it != lines.end(); it++) {
  205. int pos = (*it).indexOf('=') + 1;
  206. if (pos < 1)
  207. continue;
  208. if ((*it).startsWith("wpsDeviceName="))
  209. name = (*it).mid(pos);
  210. }
  211. if (name.isEmpty())
  212. name = lines[0];
  213. QStandardItem *item = new QStandardItem(*laptop_icon, name);
  214. if (item) {
  215. item->setData(lines[0], peer_role_address);
  216. item->setData(PEER_TYPE_ASSOCIATED_STATION,
  217. peer_role_type);
  218. item->setData(info, peer_role_details);
  219. item->setToolTip(ItemType(PEER_TYPE_ASSOCIATED_STATION));
  220. model.appendRow(item);
  221. }
  222. }
  223. void Peers::add_stations()
  224. {
  225. char reply[2048];
  226. size_t reply_len;
  227. char cmd[30];
  228. int res;
  229. reply_len = sizeof(reply) - 1;
  230. if (wpagui->ctrlRequest("STA-FIRST", reply, &reply_len) < 0)
  231. return;
  232. do {
  233. reply[reply_len] = '\0';
  234. QString info(reply);
  235. char *txt = reply;
  236. while (*txt != '\0' && *txt != '\n')
  237. txt++;
  238. *txt++ = '\0';
  239. if (strncmp(reply, "FAIL", 4) == 0 ||
  240. strncmp(reply, "UNKNOWN", 7) == 0)
  241. break;
  242. add_station(info);
  243. reply_len = sizeof(reply) - 1;
  244. snprintf(cmd, sizeof(cmd), "STA-NEXT %s", reply);
  245. res = wpagui->ctrlRequest(cmd, reply, &reply_len);
  246. } while (res >= 0);
  247. }
  248. void Peers::add_single_station(const char *addr)
  249. {
  250. char reply[2048];
  251. size_t reply_len;
  252. char cmd[30];
  253. reply_len = sizeof(reply) - 1;
  254. snprintf(cmd, sizeof(cmd), "STA %s", addr);
  255. if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
  256. return;
  257. reply[reply_len] = '\0';
  258. QString info(reply);
  259. char *txt = reply;
  260. while (*txt != '\0' && *txt != '\n')
  261. txt++;
  262. *txt++ = '\0';
  263. if (strncmp(reply, "FAIL", 4) == 0 ||
  264. strncmp(reply, "UNKNOWN", 7) == 0)
  265. return;
  266. add_station(info);
  267. }
  268. void Peers::remove_bss(int id)
  269. {
  270. if (model.rowCount() == 0)
  271. return;
  272. QModelIndexList lst = model.match(model.index(0, 0), peer_role_bss_id,
  273. id);
  274. if (lst.size() == 0)
  275. return;
  276. model.removeRow(lst[0].row());
  277. }
  278. bool Peers::add_bss(const char *cmd)
  279. {
  280. char reply[2048];
  281. size_t reply_len;
  282. reply_len = sizeof(reply) - 1;
  283. if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0)
  284. return false;
  285. reply[reply_len] = '\0';
  286. QString bss(reply);
  287. if (bss.isEmpty() || bss.startsWith("FAIL"))
  288. return false;
  289. QString ssid, bssid, flags, wps_name, pri_dev_type;
  290. int id = -1;
  291. QStringList lines = bss.split(QRegExp("\\n"));
  292. for (QStringList::Iterator it = lines.begin();
  293. it != lines.end(); it++) {
  294. int pos = (*it).indexOf('=') + 1;
  295. if (pos < 1)
  296. continue;
  297. if ((*it).startsWith("bssid="))
  298. bssid = (*it).mid(pos);
  299. else if ((*it).startsWith("id="))
  300. id = (*it).mid(pos).toInt();
  301. else if ((*it).startsWith("flags="))
  302. flags = (*it).mid(pos);
  303. else if ((*it).startsWith("ssid="))
  304. ssid = (*it).mid(pos);
  305. else if ((*it).startsWith("wps_device_name="))
  306. wps_name = (*it).mid(pos);
  307. else if ((*it).startsWith("wps_primary_device_type="))
  308. pri_dev_type = (*it).mid(pos);
  309. }
  310. QString name = wps_name;
  311. if (name.isEmpty())
  312. name = ssid + "\n" + bssid;
  313. QStandardItem *item = new QStandardItem(*ap_icon, name);
  314. if (item) {
  315. item->setData(bssid, peer_role_address);
  316. if (id >= 0)
  317. item->setData(id, peer_role_bss_id);
  318. int type;
  319. if (flags.contains("[WPS"))
  320. type = PEER_TYPE_AP_WPS;
  321. else
  322. type = PEER_TYPE_AP;
  323. item->setData(type, peer_role_type);
  324. for (int i = 0; i < lines.size(); i++) {
  325. if (lines[i].length() > 60) {
  326. lines[i].remove(60, lines[i].length());
  327. lines[i] += "..";
  328. }
  329. }
  330. item->setToolTip(ItemType(type));
  331. item->setData(lines.join("\n"), peer_role_details);
  332. if (!pri_dev_type.isEmpty())
  333. item->setData(pri_dev_type,
  334. peer_role_pri_dev_type);
  335. if (!ssid.isEmpty())
  336. item->setData(ssid, peer_role_ssid);
  337. model.appendRow(item);
  338. }
  339. return true;
  340. }
  341. void Peers::add_scan_results()
  342. {
  343. int index;
  344. char cmd[20];
  345. index = 0;
  346. while (wpagui) {
  347. snprintf(cmd, sizeof(cmd), "BSS %d", index++);
  348. if (index > 1000)
  349. break;
  350. if (!add_bss(cmd))
  351. break;
  352. }
  353. }
  354. void Peers::update_peers()
  355. {
  356. model.clear();
  357. if (wpagui == NULL)
  358. return;
  359. char reply[20];
  360. size_t replylen = sizeof(reply) - 1;
  361. wpagui->ctrlRequest("WPS_ER_START", reply, &replylen);
  362. add_stations();
  363. add_scan_results();
  364. }
  365. QStandardItem * Peers::find_addr(QString addr)
  366. {
  367. if (model.rowCount() == 0)
  368. return NULL;
  369. QModelIndexList lst = model.match(model.index(0, 0), peer_role_address,
  370. addr);
  371. if (lst.size() == 0)
  372. return NULL;
  373. return model.itemFromIndex(lst[0]);
  374. }
  375. QStandardItem * Peers::find_uuid(QString uuid)
  376. {
  377. if (model.rowCount() == 0)
  378. return NULL;
  379. QModelIndexList lst = model.match(model.index(0, 0), peer_role_uuid,
  380. uuid);
  381. if (lst.size() == 0)
  382. return NULL;
  383. return model.itemFromIndex(lst[0]);
  384. }
  385. void Peers::event_notify(WpaMsg msg)
  386. {
  387. QString text = msg.getMsg();
  388. if (text.startsWith(WPS_EVENT_PIN_NEEDED)) {
  389. /*
  390. * WPS-PIN-NEEDED 5a02a5fa-9199-5e7c-bc46-e183d3cb32f7
  391. * 02:2a:c4:18:5b:f3
  392. * [Wireless Client|Company|cmodel|123|12345|1-0050F204-1]
  393. */
  394. QStringList items = text.split(' ');
  395. QString uuid = items[1];
  396. QString addr = items[2];
  397. QString name = "";
  398. QStandardItem *item = find_addr(addr);
  399. if (item)
  400. return;
  401. int pos = text.indexOf('[');
  402. if (pos >= 0) {
  403. int pos2 = text.lastIndexOf(']');
  404. if (pos2 >= pos) {
  405. items = text.mid(pos + 1, pos2 - pos - 1).
  406. split('|');
  407. name = items[0];
  408. items.append(addr);
  409. }
  410. }
  411. item = new QStandardItem(*laptop_icon, name);
  412. if (item) {
  413. item->setData(addr, peer_role_address);
  414. item->setData(PEER_TYPE_WPS_PIN_NEEDED,
  415. peer_role_type);
  416. item->setToolTip(ItemType(PEER_TYPE_WPS_PIN_NEEDED));
  417. item->setData(items.join("\n"), peer_role_details);
  418. item->setData(items[5], peer_role_pri_dev_type);
  419. model.appendRow(item);
  420. }
  421. return;
  422. }
  423. if (text.startsWith(AP_STA_CONNECTED)) {
  424. /* AP-STA-CONNECTED 02:2a:c4:18:5b:f3 */
  425. QStringList items = text.split(' ');
  426. QString addr = items[1];
  427. QStandardItem *item = find_addr(addr);
  428. if (item == NULL || item->data(peer_role_type).toInt() !=
  429. PEER_TYPE_ASSOCIATED_STATION)
  430. add_single_station(addr.toAscii().constData());
  431. return;
  432. }
  433. if (text.startsWith(AP_STA_DISCONNECTED)) {
  434. /* AP-STA-DISCONNECTED 02:2a:c4:18:5b:f3 */
  435. QStringList items = text.split(' ');
  436. QString addr = items[1];
  437. if (model.rowCount() == 0)
  438. return;
  439. QModelIndexList lst = model.match(model.index(0, 0),
  440. peer_role_address, addr);
  441. for (int i = 0; i < lst.size(); i++) {
  442. QStandardItem *item = model.itemFromIndex(lst[i]);
  443. if (item && item->data(peer_role_type).toInt() ==
  444. PEER_TYPE_ASSOCIATED_STATION)
  445. model.removeRow(lst[i].row());
  446. }
  447. return;
  448. }
  449. if (text.startsWith(WPS_EVENT_ER_AP_ADD)) {
  450. /*
  451. * WPS-ER-AP-ADD 87654321-9abc-def0-1234-56789abc0002
  452. * 02:11:22:33:44:55 pri_dev_type=6-0050F204-1 wps_state=1
  453. * |Very friendly name|Company|Long description of the model|
  454. * WAP|http://w1.fi/|http://w1.fi/hostapd/
  455. */
  456. QStringList items = text.split(' ');
  457. if (items.size() < 5)
  458. return;
  459. QString uuid = items[1];
  460. QString addr = items[2];
  461. QString pri_dev_type = items[3].mid(13);
  462. int wps_state = items[4].mid(10).toInt();
  463. int pos = text.indexOf('|');
  464. if (pos < 0)
  465. return;
  466. items = text.mid(pos + 1).split('|');
  467. if (items.size() < 1)
  468. return;
  469. QStandardItem *item = find_uuid(uuid);
  470. if (item)
  471. return;
  472. item = new QStandardItem(*ap_icon, items[0]);
  473. if (item) {
  474. item->setData(uuid, peer_role_uuid);
  475. item->setData(addr, peer_role_address);
  476. int type = wps_state == 2 ? PEER_TYPE_WPS_ER_AP:
  477. PEER_TYPE_WPS_ER_AP_UNCONFIGURED;
  478. item->setData(type, peer_role_type);
  479. item->setToolTip(ItemType(type));
  480. item->setData(pri_dev_type, peer_role_pri_dev_type);
  481. item->setData(items.join(QString("\n")),
  482. peer_role_details);
  483. model.appendRow(item);
  484. }
  485. return;
  486. }
  487. if (text.startsWith(WPS_EVENT_ER_AP_REMOVE)) {
  488. /* WPS-ER-AP-REMOVE 87654321-9abc-def0-1234-56789abc0002 */
  489. QStringList items = text.split(' ');
  490. if (items.size() < 2)
  491. return;
  492. if (model.rowCount() == 0)
  493. return;
  494. QModelIndexList lst = model.match(model.index(0, 0),
  495. peer_role_uuid, items[1]);
  496. for (int i = 0; i < lst.size(); i++) {
  497. QStandardItem *item = model.itemFromIndex(lst[i]);
  498. if (item &&
  499. (item->data(peer_role_type).toInt() ==
  500. PEER_TYPE_WPS_ER_AP ||
  501. item->data(peer_role_type).toInt() ==
  502. PEER_TYPE_WPS_ER_AP_UNCONFIGURED))
  503. model.removeRow(lst[i].row());
  504. }
  505. return;
  506. }
  507. if (text.startsWith(WPS_EVENT_ER_ENROLLEE_ADD)) {
  508. /*
  509. * WPS-ER-ENROLLEE-ADD 2b7093f1-d6fb-5108-adbb-bea66bb87333
  510. * 02:66:a0:ee:17:27 M1=1 config_methods=0x14d dev_passwd_id=0
  511. * pri_dev_type=1-0050F204-1
  512. * |Wireless Client|Company|cmodel|123|12345|
  513. */
  514. QStringList items = text.split(' ');
  515. if (items.size() < 3)
  516. return;
  517. QString uuid = items[1];
  518. QString addr = items[2];
  519. QString pri_dev_type = items[6].mid(13);
  520. int config_methods = -1;
  521. int dev_passwd_id = -1;
  522. for (int i = 3; i < items.size(); i++) {
  523. int pos = items[i].indexOf('=') + 1;
  524. if (pos < 1)
  525. continue;
  526. QString val = items[i].mid(pos);
  527. if (items[i].startsWith("config_methods=")) {
  528. config_methods = val.toInt(0, 0);
  529. } else if (items[i].startsWith("dev_passwd_id=")) {
  530. dev_passwd_id = val.toInt();
  531. }
  532. }
  533. int pos = text.indexOf('|');
  534. if (pos < 0)
  535. return;
  536. items = text.mid(pos + 1).split('|');
  537. if (items.size() < 1)
  538. return;
  539. QString name = items[0];
  540. if (name.length() == 0)
  541. name = addr;
  542. remove_enrollee_uuid(uuid);
  543. QStandardItem *item;
  544. item = new QStandardItem(*laptop_icon, name);
  545. if (item) {
  546. item->setData(uuid, peer_role_uuid);
  547. item->setData(addr, peer_role_address);
  548. item->setData(PEER_TYPE_WPS_ER_ENROLLEE,
  549. peer_role_type);
  550. item->setToolTip(ItemType(PEER_TYPE_WPS_ER_ENROLLEE));
  551. item->setData(items.join(QString("\n")),
  552. peer_role_details);
  553. item->setData(pri_dev_type, peer_role_pri_dev_type);
  554. if (config_methods >= 0)
  555. item->setData(config_methods,
  556. peer_role_config_methods);
  557. if (dev_passwd_id >= 0)
  558. item->setData(dev_passwd_id,
  559. peer_role_dev_passwd_id);
  560. model.appendRow(item);
  561. }
  562. return;
  563. }
  564. if (text.startsWith(WPS_EVENT_ER_ENROLLEE_REMOVE)) {
  565. /*
  566. * WPS-ER-ENROLLEE-REMOVE 2b7093f1-d6fb-5108-adbb-bea66bb87333
  567. * 02:66:a0:ee:17:27
  568. */
  569. QStringList items = text.split(' ');
  570. if (items.size() < 2)
  571. return;
  572. remove_enrollee_uuid(items[1]);
  573. return;
  574. }
  575. if (text.startsWith(WPS_EVENT_ENROLLEE_SEEN)) {
  576. /* TODO: need to time out this somehow or remove on successful
  577. * WPS run, etc. */
  578. /*
  579. * WPS-ENROLLEE-SEEN 02:00:00:00:01:00
  580. * 572cf82f-c957-5653-9b16-b5cfb298abf1 1-0050F204-1 0x80 4 1
  581. * [Wireless Client]
  582. * (MAC addr, UUID-E, pri dev type, config methods,
  583. * dev passwd id, request type, [dev name])
  584. */
  585. QStringList items = text.split(' ');
  586. if (items.size() < 7)
  587. return;
  588. QString addr = items[1];
  589. QString uuid = items[2];
  590. QString pri_dev_type = items[3];
  591. int config_methods = items[4].toInt(0, 0);
  592. int dev_passwd_id = items[5].toInt();
  593. QString name;
  594. int pos = text.indexOf('[');
  595. if (pos >= 0) {
  596. int pos2 = text.lastIndexOf(']');
  597. if (pos2 >= pos) {
  598. QStringList items2 =
  599. text.mid(pos + 1, pos2 - pos - 1).
  600. split('|');
  601. name = items2[0];
  602. }
  603. }
  604. if (name.isEmpty())
  605. name = addr;
  606. QStandardItem *item;
  607. item = find_uuid(uuid);
  608. if (item) {
  609. QVariant var = item->data(peer_role_config_methods);
  610. QVariant var2 = item->data(peer_role_dev_passwd_id);
  611. if ((var.isValid() && config_methods != var.toInt()) ||
  612. (var2.isValid() && dev_passwd_id != var2.toInt()))
  613. remove_enrollee_uuid(uuid);
  614. else
  615. return;
  616. }
  617. item = new QStandardItem(*laptop_icon, name);
  618. if (item) {
  619. item->setData(uuid, peer_role_uuid);
  620. item->setData(addr, peer_role_address);
  621. item->setData(PEER_TYPE_WPS_ENROLLEE,
  622. peer_role_type);
  623. item->setToolTip(ItemType(PEER_TYPE_WPS_ENROLLEE));
  624. item->setData(items.join(QString("\n")),
  625. peer_role_details);
  626. item->setData(pri_dev_type, peer_role_pri_dev_type);
  627. item->setData(config_methods,
  628. peer_role_config_methods);
  629. item->setData(dev_passwd_id, peer_role_dev_passwd_id);
  630. model.appendRow(item);
  631. }
  632. return;
  633. }
  634. if (text.startsWith(WPA_EVENT_BSS_ADDED)) {
  635. /* CTRL-EVENT-BSS-ADDED 34 00:11:22:33:44:55 */
  636. QStringList items = text.split(' ');
  637. if (items.size() < 2)
  638. return;
  639. char cmd[20];
  640. snprintf(cmd, sizeof(cmd), "BSS ID-%d", items[1].toInt());
  641. add_bss(cmd);
  642. return;
  643. }
  644. if (text.startsWith(WPA_EVENT_BSS_REMOVED)) {
  645. /* CTRL-EVENT-BSS-REMOVED 34 00:11:22:33:44:55 */
  646. QStringList items = text.split(' ');
  647. if (items.size() < 2)
  648. return;
  649. remove_bss(items[1].toInt());
  650. return;
  651. }
  652. }
  653. void Peers::closeEvent(QCloseEvent *)
  654. {
  655. if (wpagui) {
  656. char reply[20];
  657. size_t replylen = sizeof(reply) - 1;
  658. wpagui->ctrlRequest("WPS_ER_STOP", reply, &replylen);
  659. }
  660. }
  661. void Peers::done(int r)
  662. {
  663. QDialog::done(r);
  664. close();
  665. }
  666. void Peers::remove_enrollee_uuid(QString uuid)
  667. {
  668. if (model.rowCount() == 0)
  669. return;
  670. QModelIndexList lst = model.match(model.index(0, 0),
  671. peer_role_uuid, uuid);
  672. for (int i = 0; i < lst.size(); i++) {
  673. QStandardItem *item = model.itemFromIndex(lst[i]);
  674. if (item == NULL)
  675. continue;
  676. int type = item->data(peer_role_type).toInt();
  677. if (type == PEER_TYPE_WPS_ER_ENROLLEE ||
  678. type == PEER_TYPE_WPS_ENROLLEE)
  679. model.removeRow(lst[i].row());
  680. }
  681. }
  682. void Peers::properties()
  683. {
  684. if (ctx_item == NULL)
  685. return;
  686. QMessageBox msg(this);
  687. msg.setStandardButtons(QMessageBox::Ok);
  688. msg.setDefaultButton(QMessageBox::Ok);
  689. msg.setEscapeButton(QMessageBox::Ok);
  690. msg.setWindowTitle(tr("Peer Properties"));
  691. int type = ctx_item->data(peer_role_type).toInt();
  692. QString title = Peers::ItemType(type);
  693. msg.setText(title + QString("\n") + tr("Name: ") + ctx_item->text());
  694. QVariant var;
  695. QString info;
  696. var = ctx_item->data(peer_role_address);
  697. if (var.isValid())
  698. info += tr("Address: ") + var.toString() + QString("\n");
  699. var = ctx_item->data(peer_role_uuid);
  700. if (var.isValid())
  701. info += tr("UUID: ") + var.toString() + QString("\n");
  702. var = ctx_item->data(peer_role_pri_dev_type);
  703. if (var.isValid())
  704. info += tr("Primary Device Type: ") + var.toString() +
  705. QString("\n");
  706. var = ctx_item->data(peer_role_ssid);
  707. if (var.isValid())
  708. info += tr("SSID: ") + var.toString() + QString("\n");
  709. var = ctx_item->data(peer_role_config_methods);
  710. if (var.isValid()) {
  711. int methods = var.toInt();
  712. info += tr("Configuration Methods: ");
  713. if (methods & 0x0001)
  714. info += tr("[USBA]");
  715. if (methods & 0x0002)
  716. info += tr("[Ethernet]");
  717. if (methods & 0x0004)
  718. info += tr("[Label]");
  719. if (methods & 0x0008)
  720. info += tr("[Display]");
  721. if (methods & 0x0010)
  722. info += tr("[Ext. NFC Token]");
  723. if (methods & 0x0020)
  724. info += tr("[Int. NFC Token]");
  725. if (methods & 0x0040)
  726. info += tr("[NFC Interface]");
  727. if (methods & 0x0080)
  728. info += tr("[Push Button]");
  729. if (methods & 0x0100)
  730. info += tr("[Keypad]");
  731. info += "\n";
  732. }
  733. var = ctx_item->data(peer_role_dev_passwd_id);
  734. if (var.isValid()) {
  735. info += tr("Device Password ID: ") + var.toString();
  736. switch (var.toInt()) {
  737. case 0:
  738. info += tr(" (Default PIN)");
  739. break;
  740. case 1:
  741. info += tr(" (User-specified PIN)");
  742. break;
  743. case 2:
  744. info += tr(" (Machine-specified PIN)");
  745. break;
  746. case 3:
  747. info += tr(" (Rekey)");
  748. break;
  749. case 4:
  750. info += tr(" (Push Button)");
  751. break;
  752. case 5:
  753. info += tr(" (Registrar-specified)");
  754. break;
  755. }
  756. info += "\n";
  757. }
  758. msg.setInformativeText(info);
  759. var = ctx_item->data(peer_role_details);
  760. if (var.isValid())
  761. msg.setDetailedText(var.toString());
  762. msg.exec();
  763. }
  764. void Peers::connect_pbc()
  765. {
  766. if (ctx_item == NULL)
  767. return;
  768. char cmd[100];
  769. char reply[100];
  770. size_t reply_len;
  771. int peer_type = ctx_item->data(peer_role_type).toInt();
  772. if (peer_type == PEER_TYPE_WPS_ER_ENROLLEE) {
  773. snprintf(cmd, sizeof(cmd), "WPS_ER_PBC %s",
  774. ctx_item->data(peer_role_uuid).toString().toAscii().
  775. constData());
  776. } else {
  777. snprintf(cmd, sizeof(cmd), "WPS_PBC");
  778. }
  779. reply_len = sizeof(reply) - 1;
  780. if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0) {
  781. QMessageBox msg;
  782. msg.setIcon(QMessageBox::Warning);
  783. msg.setText(tr("Failed to start WPS PBC."));
  784. msg.exec();
  785. }
  786. }
  787. void Peers::learn_ap_config()
  788. {
  789. if (ctx_item == NULL)
  790. return;
  791. QString uuid = ctx_item->data(peer_role_uuid).toString();
  792. StringQuery input(tr("AP PIN:"));
  793. input.setWindowTitle(tr("AP PIN for ") + ctx_item->text());
  794. if (input.exec() != QDialog::Accepted)
  795. return;
  796. char cmd[100];
  797. char reply[100];
  798. size_t reply_len;
  799. snprintf(cmd, sizeof(cmd), "WPS_ER_LEARN %s %s",
  800. uuid.toAscii().constData(),
  801. input.get_string().toAscii().constData());
  802. reply_len = sizeof(reply) - 1;
  803. if (wpagui->ctrlRequest(cmd, reply, &reply_len) < 0) {
  804. QMessageBox msg;
  805. msg.setIcon(QMessageBox::Warning);
  806. msg.setText(tr("Failed to start learning AP configuration."));
  807. msg.exec();
  808. }
  809. }