peers.cpp 22 KB

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