iwinfo_utils.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576
  1. /*
  2. * iwinfo - Wireless Information Library - Shared utility routines
  3. *
  4. * Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
  5. *
  6. * The iwinfo library is free software: you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License version 2
  8. * as published by the Free Software Foundation.
  9. *
  10. * The iwinfo library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. * See the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along
  16. * with the iwinfo library. If not, see http://www.gnu.org/licenses/.
  17. *
  18. * The signal handling code is derived from the official madwifi tools,
  19. * wlanconfig.c in particular. The encryption property handling was
  20. * inspired by the hostapd madwifi driver.
  21. */
  22. #include "iwinfo/utils.h"
  23. static int ioctl_socket = -1;
  24. struct uci_context *uci_ctx = NULL;
  25. static int iwinfo_ioctl_socket(void)
  26. {
  27. /* Prepare socket */
  28. if (ioctl_socket == -1)
  29. {
  30. ioctl_socket = socket(AF_INET, SOCK_DGRAM, 0);
  31. fcntl(ioctl_socket, F_SETFD, fcntl(ioctl_socket, F_GETFD) | FD_CLOEXEC);
  32. }
  33. return ioctl_socket;
  34. }
  35. int iwinfo_ioctl(int cmd, void *ifr)
  36. {
  37. int s = iwinfo_ioctl_socket();
  38. return ioctl(s, cmd, ifr);
  39. }
  40. int iwinfo_dbm2mw(int in)
  41. {
  42. double res = 1.0;
  43. int ip = in / 10;
  44. int fp = in % 10;
  45. int k;
  46. for(k = 0; k < ip; k++) res *= 10;
  47. for(k = 0; k < fp; k++) res *= LOG10_MAGIC;
  48. return (int)res;
  49. }
  50. int iwinfo_mw2dbm(int in)
  51. {
  52. double fin = (double) in;
  53. int res = 0;
  54. while(fin > 10.0)
  55. {
  56. res += 10;
  57. fin /= 10.0;
  58. }
  59. while(fin > 1.000001)
  60. {
  61. res += 1;
  62. fin /= LOG10_MAGIC;
  63. }
  64. return (int)res;
  65. }
  66. int iwinfo_ifup(const char *ifname)
  67. {
  68. struct ifreq ifr;
  69. strncpy(ifr.ifr_name, ifname, IFNAMSIZ - 1);
  70. if (iwinfo_ioctl(SIOCGIFFLAGS, &ifr))
  71. return 0;
  72. ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);
  73. return !iwinfo_ioctl(SIOCSIFFLAGS, &ifr);
  74. }
  75. int iwinfo_ifdown(const char *ifname)
  76. {
  77. struct ifreq ifr;
  78. strncpy(ifr.ifr_name, ifname, IFNAMSIZ - 1);
  79. if (iwinfo_ioctl(SIOCGIFFLAGS, &ifr))
  80. return 0;
  81. ifr.ifr_flags &= ~(IFF_UP | IFF_RUNNING);
  82. return !iwinfo_ioctl(SIOCSIFFLAGS, &ifr);
  83. }
  84. int iwinfo_ifmac(const char *ifname)
  85. {
  86. struct ifreq ifr;
  87. strncpy(ifr.ifr_name, ifname, IFNAMSIZ - 1);
  88. if (iwinfo_ioctl(SIOCGIFHWADDR, &ifr))
  89. return 0;
  90. ifr.ifr_hwaddr.sa_data[0] |= 0x02;
  91. ifr.ifr_hwaddr.sa_data[1]++;
  92. ifr.ifr_hwaddr.sa_data[2]++;
  93. return !iwinfo_ioctl(SIOCSIFHWADDR, &ifr);
  94. }
  95. void iwinfo_close(void)
  96. {
  97. if (ioctl_socket > -1)
  98. close(ioctl_socket);
  99. ioctl_socket = -1;
  100. }
  101. struct iwinfo_hardware_entry * iwinfo_hardware(struct iwinfo_hardware_id *id)
  102. {
  103. FILE *db;
  104. char buf[256] = { 0 };
  105. static struct iwinfo_hardware_entry e;
  106. struct iwinfo_hardware_entry *rv = NULL;
  107. if (!(db = fopen(IWINFO_HARDWARE_FILE, "r")))
  108. return NULL;
  109. while (fgets(buf, sizeof(buf) - 1, db) != NULL)
  110. {
  111. memset(&e, 0, sizeof(e));
  112. if (sscanf(buf, "%hx %hx %hx %hx %hd %hd \"%63[^\"]\" \"%63[^\"]\"",
  113. &e.vendor_id, &e.device_id,
  114. &e.subsystem_vendor_id, &e.subsystem_device_id,
  115. &e.txpower_offset, &e.frequency_offset,
  116. e.vendor_name, e.device_name) < 8)
  117. continue;
  118. if ((e.vendor_id != 0xffff) && (e.vendor_id != id->vendor_id))
  119. continue;
  120. if ((e.device_id != 0xffff) && (e.device_id != id->device_id))
  121. continue;
  122. if ((e.subsystem_vendor_id != 0xffff) &&
  123. (e.subsystem_vendor_id != id->subsystem_vendor_id))
  124. continue;
  125. if ((e.subsystem_device_id != 0xffff) &&
  126. (e.subsystem_device_id != id->subsystem_device_id))
  127. continue;
  128. rv = &e;
  129. break;
  130. }
  131. fclose(db);
  132. return rv;
  133. }
  134. int iwinfo_hardware_id_from_mtd(struct iwinfo_hardware_id *id)
  135. {
  136. FILE *mtd;
  137. uint16_t *bc;
  138. int fd, off;
  139. unsigned int len;
  140. char buf[128];
  141. if (!(mtd = fopen("/proc/mtd", "r")))
  142. return -1;
  143. while (fgets(buf, sizeof(buf), mtd) != NULL)
  144. {
  145. if (fscanf(mtd, "mtd%d: %x %*x %127s", &off, &len, buf) < 3 ||
  146. (strcmp(buf, "\"boardconfig\"") && strcmp(buf, "\"EEPROM\"") &&
  147. strcmp(buf, "\"factory\"")))
  148. {
  149. off = -1;
  150. continue;
  151. }
  152. break;
  153. }
  154. fclose(mtd);
  155. if (off < 0)
  156. return -1;
  157. snprintf(buf, sizeof(buf), "/dev/mtdblock%d", off);
  158. if ((fd = open(buf, O_RDONLY)) < 0)
  159. return -1;
  160. bc = mmap(NULL, len, PROT_READ, MAP_PRIVATE|MAP_LOCKED, fd, 0);
  161. if ((void *)bc != MAP_FAILED)
  162. {
  163. id->vendor_id = 0;
  164. id->device_id = 0;
  165. for (off = len / 2 - 0x800; off >= 0; off -= 0x800)
  166. {
  167. /* AR531X board data magic */
  168. if ((bc[off] == 0x3533) && (bc[off + 1] == 0x3131))
  169. {
  170. id->vendor_id = bc[off + 0x7d];
  171. id->device_id = bc[off + 0x7c];
  172. id->subsystem_vendor_id = bc[off + 0x84];
  173. id->subsystem_device_id = bc[off + 0x83];
  174. break;
  175. }
  176. /* AR5416 EEPROM magic */
  177. else if ((bc[off] == 0xA55A) || (bc[off] == 0x5AA5))
  178. {
  179. id->vendor_id = bc[off + 0x0D];
  180. id->device_id = bc[off + 0x0E];
  181. id->subsystem_vendor_id = bc[off + 0x13];
  182. id->subsystem_device_id = bc[off + 0x14];
  183. break;
  184. }
  185. /* Rt3xxx SoC */
  186. else if ((bc[off] == 0x3050) || (bc[off] == 0x5030) ||
  187. (bc[off] == 0x3051) || (bc[off] == 0x5130) ||
  188. (bc[off] == 0x3052) || (bc[off] == 0x5230) ||
  189. (bc[off] == 0x3350) || (bc[off] == 0x5033) ||
  190. (bc[off] == 0x3352) || (bc[off] == 0x5233) ||
  191. (bc[off] == 0x3662) || (bc[off] == 0x6236) ||
  192. (bc[off] == 0x3883) || (bc[off] == 0x8338) ||
  193. (bc[off] == 0x5350) || (bc[off] == 0x5053))
  194. {
  195. /* vendor: RaLink */
  196. id->vendor_id = 0x1814;
  197. id->subsystem_vendor_id = 0x1814;
  198. /* device */
  199. if (((bc[off] & 0xf0) == 0x30) ||
  200. ((bc[off] & 0xff) == 0x53))
  201. id->device_id = (bc[off] >> 8) | (bc[off] & 0x00ff) << 8;
  202. else
  203. id->device_id = bc[off];
  204. /* subsystem from EEPROM_NIC_CONF0_RF_TYPE */
  205. id->subsystem_device_id = (bc[off + 0x1a] & 0x0f00) >> 8;
  206. } else if ((bc[off] == 0x7620) || (bc[off] == 0x2076) ||
  207. (bc[off] == 0x7628) || (bc[off] == 0x2876) ||
  208. (bc[off] == 0x7688) || (bc[off] == 0x8876)) {
  209. /* vendor: MediaTek */
  210. id->vendor_id = 0x14c3;
  211. id->subsystem_vendor_id = 0x14c3;
  212. /* device */
  213. if ((bc[off] & 0xff) == 0x76)
  214. id->device_id = (bc[off] >> 8) | (bc[off] & 0x00ff) << 8;
  215. else
  216. id->device_id = bc[off];
  217. /* subsystem from EEPROM_NIC_CONF0_RF_TYPE */
  218. id->subsystem_device_id = (bc[off + 0x1a] & 0x0f00) >> 8;
  219. }
  220. }
  221. munmap(bc, len);
  222. }
  223. close(fd);
  224. return (id->vendor_id && id->device_id) ? 0 : -1;
  225. }
  226. static void iwinfo_parse_rsn_cipher(uint8_t idx, uint16_t *ciphers)
  227. {
  228. switch (idx)
  229. {
  230. case 0:
  231. *ciphers |= IWINFO_CIPHER_NONE;
  232. break;
  233. case 1:
  234. *ciphers |= IWINFO_CIPHER_WEP40;
  235. break;
  236. case 2:
  237. *ciphers |= IWINFO_CIPHER_TKIP;
  238. break;
  239. case 3: /* WRAP */
  240. break;
  241. case 4:
  242. *ciphers |= IWINFO_CIPHER_CCMP;
  243. break;
  244. case 5:
  245. *ciphers |= IWINFO_CIPHER_WEP104;
  246. break;
  247. case 8:
  248. *ciphers |= IWINFO_CIPHER_GCMP;
  249. break;
  250. case 6: /* AES-128-CMAC */
  251. case 7: /* No group addressed */
  252. case 9: /* GCMP-256 */
  253. case 10: /* CCMP-256 */
  254. case 11: /* BIP-GMAC-128 */
  255. case 12: /* BIP-GMAC-256 */
  256. case 13: /* BIP-CMAC-256 */
  257. break;
  258. }
  259. }
  260. void iwinfo_parse_rsn(struct iwinfo_crypto_entry *c, uint8_t *data, uint8_t len,
  261. uint16_t defcipher, uint8_t defauth)
  262. {
  263. uint16_t i, count;
  264. uint8_t wpa_version = 0;
  265. static unsigned char ms_oui[3] = { 0x00, 0x50, 0xf2 };
  266. static unsigned char ieee80211_oui[3] = { 0x00, 0x0f, 0xac };
  267. data += 2;
  268. len -= 2;
  269. if (!memcmp(data, ms_oui, 3))
  270. wpa_version |= 1;
  271. else if (!memcmp(data, ieee80211_oui, 3))
  272. wpa_version |= 2;
  273. if (len < 4)
  274. {
  275. c->group_ciphers |= defcipher;
  276. c->pair_ciphers |= defcipher;
  277. c->auth_suites |= defauth;
  278. return;
  279. }
  280. if (!memcmp(data, ms_oui, 3) || !memcmp(data, ieee80211_oui, 3))
  281. iwinfo_parse_rsn_cipher(data[3], &c->group_ciphers);
  282. data += 4;
  283. len -= 4;
  284. if (len < 2)
  285. {
  286. c->pair_ciphers |= defcipher;
  287. c->auth_suites |= defauth;
  288. return;
  289. }
  290. count = data[0] | (data[1] << 8);
  291. if (2 + (count * 4) > len)
  292. return;
  293. for (i = 0; i < count; i++)
  294. if (!memcmp(data + 2 + (i * 4), ms_oui, 3) ||
  295. !memcmp(data + 2 + (i * 4), ieee80211_oui, 3))
  296. iwinfo_parse_rsn_cipher(data[2 + (i * 4) + 3], &c->pair_ciphers);
  297. data += 2 + (count * 4);
  298. len -= 2 + (count * 4);
  299. if (len < 2)
  300. {
  301. c->auth_suites |= defauth;
  302. return;
  303. }
  304. count = data[0] | (data[1] << 8);
  305. if (2 + (count * 4) > len)
  306. return;
  307. for (i = 0; i < count; i++)
  308. {
  309. if (!memcmp(data + 2 + (i * 4), ms_oui, 3) ||
  310. !memcmp(data + 2 + (i * 4), ieee80211_oui, 3))
  311. {
  312. switch (data[2 + (i * 4) + 3])
  313. {
  314. case 1: /* IEEE 802.1x */
  315. c->wpa_version |= wpa_version;
  316. c->auth_suites |= IWINFO_KMGMT_8021x;
  317. break;
  318. case 2: /* PSK */
  319. c->wpa_version |= wpa_version;
  320. c->auth_suites |= IWINFO_KMGMT_PSK;
  321. break;
  322. case 3: /* FT/IEEE 802.1X */
  323. case 4: /* FT/PSK */
  324. case 5: /* IEEE 802.1X/SHA-256 */
  325. case 6: /* PSK/SHA-256 */
  326. case 7: /* TPK Handshake */
  327. break;
  328. case 8: /* SAE */
  329. c->wpa_version |= 4;
  330. c->auth_suites |= IWINFO_KMGMT_SAE;
  331. break;
  332. case 9: /* FT/SAE */
  333. case 10: /* undefined */
  334. break;
  335. case 11: /* 802.1x Suite-B */
  336. case 12: /* 802.1x Suite-B-192 */
  337. c->wpa_version |= 4;
  338. c->auth_suites |= IWINFO_KMGMT_8021x;
  339. break;
  340. case 13: /* FT/802.1x SHA-384 */
  341. case 14: /* FILS SHA-256 */
  342. case 15: /* FILS SHA-384 */
  343. case 16: /* FT/FILS SHA-256 */
  344. case 17: /* FT/FILS SHA-384 */
  345. break;
  346. case 18: /* OWE */
  347. c->wpa_version |= 4;
  348. c->auth_suites |= IWINFO_KMGMT_OWE;
  349. break;
  350. }
  351. }
  352. }
  353. data += 2 + (count * 4);
  354. len -= 2 + (count * 4);
  355. }
  356. struct uci_section *iwinfo_uci_get_radio(const char *name, const char *type)
  357. {
  358. struct uci_ptr ptr = {
  359. .package = "wireless",
  360. .section = name,
  361. .flags = (name && *name == '@') ? UCI_LOOKUP_EXTENDED : 0,
  362. };
  363. const char *opt;
  364. if (!uci_ctx) {
  365. uci_ctx = uci_alloc_context();
  366. if (!uci_ctx)
  367. return NULL;
  368. }
  369. if (uci_lookup_ptr(uci_ctx, &ptr, NULL, true))
  370. return NULL;
  371. if (!ptr.s || strcmp(ptr.s->type, "wifi-device") != 0)
  372. return NULL;
  373. opt = uci_lookup_option_string(uci_ctx, ptr.s, "type");
  374. if (!opt || strcmp(opt, type) != 0)
  375. return NULL;
  376. return ptr.s;
  377. }
  378. void iwinfo_uci_free(void)
  379. {
  380. if (!uci_ctx)
  381. return;
  382. uci_free_context(uci_ctx);
  383. uci_ctx = NULL;
  384. }
  385. struct iwinfo_ubus_query_state {
  386. const char *ifname;
  387. const char *field;
  388. size_t len;
  389. char *buf;
  390. };
  391. static void iwinfo_ubus_query_cb(struct ubus_request *req, int type,
  392. struct blob_attr *msg)
  393. {
  394. struct iwinfo_ubus_query_state *st = req->priv;
  395. struct blobmsg_policy pol1[2] = {
  396. { "ifname", BLOBMSG_TYPE_STRING },
  397. { "config", BLOBMSG_TYPE_TABLE }
  398. };
  399. struct blobmsg_policy pol2 = { st->field, BLOBMSG_TYPE_STRING };
  400. struct blob_attr *cur, *cur2, *cur3, *cfg[2], *res;
  401. int rem, rem2, rem3;
  402. blobmsg_for_each_attr(cur, msg, rem) {
  403. if (blobmsg_type(cur) != BLOBMSG_TYPE_TABLE)
  404. continue;
  405. blobmsg_for_each_attr(cur2, cur, rem2) {
  406. if (blobmsg_type(cur2) != BLOBMSG_TYPE_ARRAY)
  407. continue;
  408. if (strcmp(blobmsg_name(cur2), "interfaces"))
  409. continue;
  410. blobmsg_for_each_attr(cur3, cur2, rem3) {
  411. blobmsg_parse(pol1, sizeof(pol1) / sizeof(pol1[0]), cfg,
  412. blobmsg_data(cur3), blobmsg_len(cur3));
  413. if (!cfg[0] || !cfg[1] ||
  414. strcmp(blobmsg_get_string(cfg[0]), st->ifname))
  415. continue;
  416. blobmsg_parse(&pol2, 1, &res,
  417. blobmsg_data(cfg[1]), blobmsg_len(cfg[1]));
  418. if (!res)
  419. continue;
  420. strncpy(st->buf, blobmsg_get_string(res), st->len);
  421. return;
  422. }
  423. }
  424. }
  425. }
  426. int iwinfo_ubus_query(const char *ifname, const char *field,
  427. char *buf, size_t len)
  428. {
  429. struct iwinfo_ubus_query_state st = {
  430. .ifname = ifname,
  431. .field = field,
  432. .buf = buf,
  433. .len = len
  434. };
  435. struct ubus_context *ctx = NULL;
  436. struct blob_buf b = { };
  437. int rv = -1;
  438. uint32_t id;
  439. blob_buf_init(&b, 0);
  440. ctx = ubus_connect(NULL);
  441. if (!ctx)
  442. goto out;
  443. if (ubus_lookup_id(ctx, "network.wireless", &id))
  444. goto out;
  445. if (ubus_invoke(ctx, id, "status", b.head, iwinfo_ubus_query_cb, &st, 250))
  446. goto out;
  447. rv = 0;
  448. out:
  449. if (ctx)
  450. ubus_free(ctx);
  451. blob_buf_free(&b);
  452. return rv;
  453. }