2 * iwinfo - Wireless Information Library - Lua Bindings
4 * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
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.
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.
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/.
19 #include "iwinfo/lua.h"
23 static int iwinfo_L_type(lua_State *L)
25 const char *ifname = luaL_checkstring(L, 1);
26 const char *type = iwinfo_type(ifname);
29 lua_pushstring(L, type);
36 /* Shutdown backends */
37 static int iwinfo_L__gc(lua_State *L)
44 * Build a short textual description of the crypto info
47 static char * iwinfo_crypto_print_ciphers(int ciphers)
49 static char str[128] = { 0 };
52 if (ciphers & IWINFO_CIPHER_WEP40)
53 pos += sprintf(pos, "WEP-40, ");
55 if (ciphers & IWINFO_CIPHER_WEP104)
56 pos += sprintf(pos, "WEP-104, ");
58 if (ciphers & IWINFO_CIPHER_TKIP)
59 pos += sprintf(pos, "TKIP, ");
61 if (ciphers & IWINFO_CIPHER_CCMP)
62 pos += sprintf(pos, "CCMP, ");
64 if (ciphers & IWINFO_CIPHER_WRAP)
65 pos += sprintf(pos, "WRAP, ");
67 if (ciphers & IWINFO_CIPHER_AESOCB)
68 pos += sprintf(pos, "AES-OCB, ");
70 if (ciphers & IWINFO_CIPHER_CKIP)
71 pos += sprintf(pos, "CKIP, ");
73 if (!ciphers || (ciphers & IWINFO_CIPHER_NONE))
74 pos += sprintf(pos, "NONE, ");
81 static char * iwinfo_crypto_print_suites(int suites)
83 static char str[64] = { 0 };
86 if (suites & IWINFO_KMGMT_PSK)
87 pos += sprintf(pos, "PSK/");
89 if (suites & IWINFO_KMGMT_8021x)
90 pos += sprintf(pos, "802.1X/");
92 if (!suites || (suites & IWINFO_KMGMT_NONE))
93 pos += sprintf(pos, "NONE/");
100 static char * iwinfo_crypto_desc(struct iwinfo_crypto_entry *c)
102 static char desc[512] = { 0 };
109 if (c->auth_algs && !c->wpa_version)
111 if ((c->auth_algs & IWINFO_AUTH_OPEN) &&
112 (c->auth_algs & IWINFO_AUTH_SHARED))
114 sprintf(desc, "WEP Open/Shared (%s)",
115 iwinfo_crypto_print_ciphers(c->pair_ciphers));
117 else if (c->auth_algs & IWINFO_AUTH_OPEN)
119 sprintf(desc, "WEP Open System (%s)",
120 iwinfo_crypto_print_ciphers(c->pair_ciphers));
122 else if (c->auth_algs & IWINFO_AUTH_SHARED)
124 sprintf(desc, "WEP Shared Auth (%s)",
125 iwinfo_crypto_print_ciphers(c->pair_ciphers));
130 else if (c->wpa_version)
132 switch (c->wpa_version) {
134 sprintf(desc, "mixed WPA/WPA2 %s (%s)",
135 iwinfo_crypto_print_suites(c->auth_suites),
136 iwinfo_crypto_print_ciphers(
137 c->pair_ciphers & c->group_ciphers));
141 sprintf(desc, "WPA2 %s (%s)",
142 iwinfo_crypto_print_suites(c->auth_suites),
143 iwinfo_crypto_print_ciphers(
144 c->pair_ciphers & c->group_ciphers));
148 sprintf(desc, "WPA %s (%s)",
149 iwinfo_crypto_print_suites(c->auth_suites),
150 iwinfo_crypto_print_ciphers(
151 c->pair_ciphers & c->group_ciphers));
157 sprintf(desc, "None");
162 sprintf(desc, "None");
167 sprintf(desc, "Unknown");
173 /* Build Lua table from crypto data */
174 static void iwinfo_L_cryptotable(lua_State *L, struct iwinfo_crypto_entry *c)
180 lua_pushboolean(L, c->enabled);
181 lua_setfield(L, -2, "enabled");
183 lua_pushstring(L, iwinfo_crypto_desc(c));
184 lua_setfield(L, -2, "description");
186 lua_pushboolean(L, (c->enabled && !c->wpa_version));
187 lua_setfield(L, -2, "wep");
189 lua_pushinteger(L, c->wpa_version);
190 lua_setfield(L, -2, "wpa");
193 for (i = 0, j = 1; i < 8; i++)
195 if (c->pair_ciphers & (1 << i))
197 lua_pushstring(L, IWINFO_CIPHER_NAMES[i]);
198 lua_rawseti(L, -2, j++);
201 lua_setfield(L, -2, "pair_ciphers");
204 for (i = 0, j = 1; i < 8; i++)
206 if (c->group_ciphers & (1 << i))
208 lua_pushstring(L, IWINFO_CIPHER_NAMES[i]);
209 lua_rawseti(L, -2, j++);
212 lua_setfield(L, -2, "group_ciphers");
215 for (i = 0, j = 1; i < 8; i++)
217 if (c->auth_suites & (1 << i))
219 lua_pushstring(L, IWINFO_KMGMT_NAMES[i]);
220 lua_rawseti(L, -2, j++);
223 lua_setfield(L, -2, "auth_suites");
226 for (i = 0, j = 1; i < 8; i++)
228 if (c->auth_algs & (1 << i))
230 lua_pushstring(L, IWINFO_AUTH_NAMES[i]);
231 lua_rawseti(L, -2, j++);
234 lua_setfield(L, -2, "auth_algs");
238 /* Wrapper for mode */
239 static int iwinfo_L_mode(lua_State *L, int (*func)(const char *, int *))
242 const char *ifname = luaL_checkstring(L, 1);
244 if ((*func)(ifname, &mode))
245 mode = IWINFO_OPMODE_UNKNOWN;
247 lua_pushstring(L, IWINFO_OPMODE_NAMES[mode]);
251 /* Wrapper for assoclist */
252 static int iwinfo_L_assoclist(lua_State *L, int (*func)(const char *, char *, int *))
255 char rv[IWINFO_BUFSIZE];
257 const char *ifname = luaL_checkstring(L, 1);
258 struct iwinfo_assoclist_entry *e;
261 memset(rv, 0, sizeof(rv));
263 if (!(*func)(ifname, rv, &len))
265 for (i = 0; i < len; i += sizeof(struct iwinfo_assoclist_entry))
267 e = (struct iwinfo_assoclist_entry *) &rv[i];
269 sprintf(macstr, "%02X:%02X:%02X:%02X:%02X:%02X",
270 e->mac[0], e->mac[1], e->mac[2],
271 e->mac[3], e->mac[4], e->mac[5]);
275 lua_pushnumber(L, e->signal);
276 lua_setfield(L, -2, "signal");
278 lua_pushnumber(L, e->noise);
279 lua_setfield(L, -2, "noise");
281 lua_pushnumber(L, e->inactive);
282 lua_setfield(L, -2, "inactive");
284 lua_pushnumber(L, e->rx_packets);
285 lua_setfield(L, -2, "rx_packets");
287 lua_pushnumber(L, e->tx_packets);
288 lua_setfield(L, -2, "tx_packets");
290 lua_pushnumber(L, e->rx_rate.rate);
291 lua_setfield(L, -2, "rx_rate");
293 lua_pushnumber(L, e->tx_rate.rate);
294 lua_setfield(L, -2, "tx_rate");
296 if (e->rx_rate.mcs >= 0)
298 lua_pushnumber(L, e->rx_rate.mcs);
299 lua_setfield(L, -2, "rx_mcs");
301 lua_pushboolean(L, e->rx_rate.is_40mhz);
302 lua_setfield(L, -2, "rx_40mhz");
304 lua_pushboolean(L, e->rx_rate.is_short_gi);
305 lua_setfield(L, -2, "rx_short_gi");
308 if (e->tx_rate.mcs >= 0)
310 lua_pushnumber(L, e->tx_rate.mcs);
311 lua_setfield(L, -2, "tx_mcs");
313 lua_pushboolean(L, e->tx_rate.is_40mhz);
314 lua_setfield(L, -2, "tx_40mhz");
316 lua_pushboolean(L, e->tx_rate.is_short_gi);
317 lua_setfield(L, -2, "tx_short_gi");
320 lua_setfield(L, -2, macstr);
327 /* Wrapper for tx power list */
328 static int iwinfo_L_txpwrlist(lua_State *L, int (*func)(const char *, char *, int *))
331 char rv[IWINFO_BUFSIZE];
332 const char *ifname = luaL_checkstring(L, 1);
333 struct iwinfo_txpwrlist_entry *e;
335 memset(rv, 0, sizeof(rv));
337 if (!(*func)(ifname, rv, &len))
341 for (i = 0, x = 1; i < len; i += sizeof(struct iwinfo_txpwrlist_entry), x++)
343 e = (struct iwinfo_txpwrlist_entry *) &rv[i];
347 lua_pushnumber(L, e->mw);
348 lua_setfield(L, -2, "mw");
350 lua_pushnumber(L, e->dbm);
351 lua_setfield(L, -2, "dbm");
353 lua_rawseti(L, -2, x);
362 /* Wrapper for scan list */
363 static int iwinfo_L_scanlist(lua_State *L, int (*func)(const char *, char *, int *))
366 char rv[IWINFO_BUFSIZE];
368 const char *ifname = luaL_checkstring(L, 1);
369 struct iwinfo_scanlist_entry *e;
372 memset(rv, 0, sizeof(rv));
374 if (!(*func)(ifname, rv, &len))
376 for (i = 0, x = 1; i < len; i += sizeof(struct iwinfo_scanlist_entry), x++)
378 e = (struct iwinfo_scanlist_entry *) &rv[i];
383 sprintf(macstr, "%02X:%02X:%02X:%02X:%02X:%02X",
384 e->mac[0], e->mac[1], e->mac[2],
385 e->mac[3], e->mac[4], e->mac[5]);
387 lua_pushstring(L, macstr);
388 lua_setfield(L, -2, "bssid");
393 lua_pushstring(L, (char *) e->ssid);
394 lua_setfield(L, -2, "ssid");
398 lua_pushinteger(L, e->channel);
399 lua_setfield(L, -2, "channel");
402 lua_pushstring(L, IWINFO_OPMODE_NAMES[e->mode]);
403 lua_setfield(L, -2, "mode");
405 /* Quality, Signal */
406 lua_pushinteger(L, e->quality);
407 lua_setfield(L, -2, "quality");
409 lua_pushinteger(L, e->quality_max);
410 lua_setfield(L, -2, "quality_max");
412 lua_pushnumber(L, (e->signal - 0x100));
413 lua_setfield(L, -2, "signal");
416 iwinfo_L_cryptotable(L, &e->crypto);
417 lua_setfield(L, -2, "encryption");
419 lua_rawseti(L, -2, x);
426 /* Wrapper for frequency list */
427 static int iwinfo_L_freqlist(lua_State *L, int (*func)(const char *, char *, int *))
430 char rv[IWINFO_BUFSIZE];
431 const char *ifname = luaL_checkstring(L, 1);
432 struct iwinfo_freqlist_entry *e;
435 memset(rv, 0, sizeof(rv));
437 if (!(*func)(ifname, rv, &len))
439 for (i = 0, x = 1; i < len; i += sizeof(struct iwinfo_freqlist_entry), x++)
441 e = (struct iwinfo_freqlist_entry *) &rv[i];
446 lua_pushinteger(L, e->mhz);
447 lua_setfield(L, -2, "mhz");
450 lua_pushinteger(L, e->channel);
451 lua_setfield(L, -2, "channel");
453 /* Restricted (DFS/TPC/Radar) */
454 lua_pushboolean(L, e->restricted);
455 lua_setfield(L, -2, "restricted");
457 lua_rawseti(L, -2, x);
464 /* Wrapper for crypto settings */
465 static int iwinfo_L_encryption(lua_State *L, int (*func)(const char *, char *))
467 const char *ifname = luaL_checkstring(L, 1);
468 struct iwinfo_crypto_entry c = { 0 };
470 if (!(*func)(ifname, (char *)&c))
472 iwinfo_L_cryptotable(L, &c);
480 /* Wrapper for hwmode list */
481 static int iwinfo_L_hwmodelist(lua_State *L, int (*func)(const char *, int *))
483 const char *ifname = luaL_checkstring(L, 1);
486 if (!(*func)(ifname, &hwmodes))
490 lua_pushboolean(L, hwmodes & IWINFO_80211_A);
491 lua_setfield(L, -2, "a");
493 lua_pushboolean(L, hwmodes & IWINFO_80211_B);
494 lua_setfield(L, -2, "b");
496 lua_pushboolean(L, hwmodes & IWINFO_80211_G);
497 lua_setfield(L, -2, "g");
499 lua_pushboolean(L, hwmodes & IWINFO_80211_N);
500 lua_setfield(L, -2, "n");
502 lua_pushboolean(L, hwmodes & IWINFO_80211_AC);
503 lua_setfield(L, -2, "ac");
512 /* Wrapper for mbssid_support */
513 static int iwinfo_L_mbssid_support(lua_State *L, int (*func)(const char *, int *))
515 const char *ifname = luaL_checkstring(L, 1);
518 if (!(*func)(ifname, &support))
520 lua_pushboolean(L, support);
528 /* Wrapper for hardware_id */
529 static int iwinfo_L_hardware_id(lua_State *L, int (*func)(const char *, char *))
531 const char *ifname = luaL_checkstring(L, 1);
532 struct iwinfo_hardware_id ids;
534 if (!(*func)(ifname, (char *)&ids))
538 lua_pushnumber(L, ids.vendor_id);
539 lua_setfield(L, -2, "vendor_id");
541 lua_pushnumber(L, ids.device_id);
542 lua_setfield(L, -2, "device_id");
544 lua_pushnumber(L, ids.subsystem_vendor_id);
545 lua_setfield(L, -2, "subsystem_vendor_id");
547 lua_pushnumber(L, ids.subsystem_device_id);
548 lua_setfield(L, -2, "subsystem_device_id");
558 /* Wrapper for country list */
559 static char * iwinfo_L_country_lookup(char *buf, int len, int iso3166)
562 struct iwinfo_country_entry *c;
564 for (i = 0; i < len; i += sizeof(struct iwinfo_country_entry))
566 c = (struct iwinfo_country_entry *) &buf[i];
568 if (c->iso3166 == iso3166)
575 static int iwinfo_L_countrylist(lua_State *L, int (*func)(const char *, char *, int *))
578 char rv[IWINFO_BUFSIZE], alpha2[3];
580 const char *ifname = luaL_checkstring(L, 1);
581 const struct iwinfo_iso3166_label *l;
584 memset(rv, 0, sizeof(rv));
586 if (!(*func)(ifname, rv, &len))
588 for (l = IWINFO_ISO3166_NAMES, j = 1; l->iso3166; l++)
590 if ((ccode = iwinfo_L_country_lookup(rv, len, l->iso3166)) != NULL)
592 sprintf(alpha2, "%c%c",
593 (l->iso3166 / 256), (l->iso3166 % 256));
597 lua_pushstring(L, alpha2);
598 lua_setfield(L, -2, "alpha2");
600 lua_pushstring(L, ccode);
601 lua_setfield(L, -2, "ccode");
603 lua_pushstring(L, l->name);
604 lua_setfield(L, -2, "name");
606 lua_rawseti(L, -2, j++);
617 LUA_WRAP_INT_OP(wl,channel)
618 LUA_WRAP_INT_OP(wl,frequency)
619 LUA_WRAP_INT_OP(wl,frequency_offset)
620 LUA_WRAP_INT_OP(wl,txpower)
621 LUA_WRAP_INT_OP(wl,txpower_offset)
622 LUA_WRAP_INT_OP(wl,bitrate)
623 LUA_WRAP_INT_OP(wl,signal)
624 LUA_WRAP_INT_OP(wl,noise)
625 LUA_WRAP_INT_OP(wl,quality)
626 LUA_WRAP_INT_OP(wl,quality_max)
627 LUA_WRAP_STRING_OP(wl,ssid)
628 LUA_WRAP_STRING_OP(wl,bssid)
629 LUA_WRAP_STRING_OP(wl,country)
630 LUA_WRAP_STRING_OP(wl,hardware_name)
631 LUA_WRAP_STRING_OP(wl,phyname)
632 LUA_WRAP_STRUCT_OP(wl,mode)
633 LUA_WRAP_STRUCT_OP(wl,assoclist)
634 LUA_WRAP_STRUCT_OP(wl,txpwrlist)
635 LUA_WRAP_STRUCT_OP(wl,scanlist)
636 LUA_WRAP_STRUCT_OP(wl,freqlist)
637 LUA_WRAP_STRUCT_OP(wl,countrylist)
638 LUA_WRAP_STRUCT_OP(wl,hwmodelist)
639 LUA_WRAP_STRUCT_OP(wl,encryption)
640 LUA_WRAP_STRUCT_OP(wl,mbssid_support)
641 LUA_WRAP_STRUCT_OP(wl,hardware_id)
646 LUA_WRAP_INT_OP(madwifi,channel)
647 LUA_WRAP_INT_OP(madwifi,frequency)
648 LUA_WRAP_INT_OP(madwifi,frequency_offset)
649 LUA_WRAP_INT_OP(madwifi,txpower)
650 LUA_WRAP_INT_OP(madwifi,txpower_offset)
651 LUA_WRAP_INT_OP(madwifi,bitrate)
652 LUA_WRAP_INT_OP(madwifi,signal)
653 LUA_WRAP_INT_OP(madwifi,noise)
654 LUA_WRAP_INT_OP(madwifi,quality)
655 LUA_WRAP_INT_OP(madwifi,quality_max)
656 LUA_WRAP_STRING_OP(madwifi,ssid)
657 LUA_WRAP_STRING_OP(madwifi,bssid)
658 LUA_WRAP_STRING_OP(madwifi,country)
659 LUA_WRAP_STRING_OP(madwifi,hardware_name)
660 LUA_WRAP_STRING_OP(madwifi,phyname)
661 LUA_WRAP_STRUCT_OP(madwifi,mode)
662 LUA_WRAP_STRUCT_OP(madwifi,assoclist)
663 LUA_WRAP_STRUCT_OP(madwifi,txpwrlist)
664 LUA_WRAP_STRUCT_OP(madwifi,scanlist)
665 LUA_WRAP_STRUCT_OP(madwifi,freqlist)
666 LUA_WRAP_STRUCT_OP(madwifi,countrylist)
667 LUA_WRAP_STRUCT_OP(madwifi,hwmodelist)
668 LUA_WRAP_STRUCT_OP(madwifi,encryption)
669 LUA_WRAP_STRUCT_OP(madwifi,mbssid_support)
670 LUA_WRAP_STRUCT_OP(madwifi,hardware_id)
675 LUA_WRAP_INT_OP(nl80211,channel)
676 LUA_WRAP_INT_OP(nl80211,frequency)
677 LUA_WRAP_INT_OP(nl80211,frequency_offset)
678 LUA_WRAP_INT_OP(nl80211,txpower)
679 LUA_WRAP_INT_OP(nl80211,txpower_offset)
680 LUA_WRAP_INT_OP(nl80211,bitrate)
681 LUA_WRAP_INT_OP(nl80211,signal)
682 LUA_WRAP_INT_OP(nl80211,noise)
683 LUA_WRAP_INT_OP(nl80211,quality)
684 LUA_WRAP_INT_OP(nl80211,quality_max)
685 LUA_WRAP_STRING_OP(nl80211,ssid)
686 LUA_WRAP_STRING_OP(nl80211,bssid)
687 LUA_WRAP_STRING_OP(nl80211,country)
688 LUA_WRAP_STRING_OP(nl80211,hardware_name)
689 LUA_WRAP_STRING_OP(nl80211,phyname)
690 LUA_WRAP_STRUCT_OP(nl80211,mode)
691 LUA_WRAP_STRUCT_OP(nl80211,assoclist)
692 LUA_WRAP_STRUCT_OP(nl80211,txpwrlist)
693 LUA_WRAP_STRUCT_OP(nl80211,scanlist)
694 LUA_WRAP_STRUCT_OP(nl80211,freqlist)
695 LUA_WRAP_STRUCT_OP(nl80211,countrylist)
696 LUA_WRAP_STRUCT_OP(nl80211,hwmodelist)
697 LUA_WRAP_STRUCT_OP(nl80211,encryption)
698 LUA_WRAP_STRUCT_OP(nl80211,mbssid_support)
699 LUA_WRAP_STRUCT_OP(nl80211,hardware_id)
703 LUA_WRAP_INT_OP(wext,channel)
704 LUA_WRAP_INT_OP(wext,frequency)
705 LUA_WRAP_INT_OP(wext,frequency_offset)
706 LUA_WRAP_INT_OP(wext,txpower)
707 LUA_WRAP_INT_OP(wext,txpower_offset)
708 LUA_WRAP_INT_OP(wext,bitrate)
709 LUA_WRAP_INT_OP(wext,signal)
710 LUA_WRAP_INT_OP(wext,noise)
711 LUA_WRAP_INT_OP(wext,quality)
712 LUA_WRAP_INT_OP(wext,quality_max)
713 LUA_WRAP_STRING_OP(wext,ssid)
714 LUA_WRAP_STRING_OP(wext,bssid)
715 LUA_WRAP_STRING_OP(wext,country)
716 LUA_WRAP_STRING_OP(wext,hardware_name)
717 LUA_WRAP_STRING_OP(wext,phyname)
718 LUA_WRAP_STRUCT_OP(wext,mode)
719 LUA_WRAP_STRUCT_OP(wext,assoclist)
720 LUA_WRAP_STRUCT_OP(wext,txpwrlist)
721 LUA_WRAP_STRUCT_OP(wext,scanlist)
722 LUA_WRAP_STRUCT_OP(wext,freqlist)
723 LUA_WRAP_STRUCT_OP(wext,countrylist)
724 LUA_WRAP_STRUCT_OP(wext,hwmodelist)
725 LUA_WRAP_STRUCT_OP(wext,encryption)
726 LUA_WRAP_STRUCT_OP(wext,mbssid_support)
727 LUA_WRAP_STRUCT_OP(wext,hardware_id)
731 static const luaL_reg R_wl[] = {
733 LUA_REG(wl,frequency),
734 LUA_REG(wl,frequency_offset),
736 LUA_REG(wl,txpower_offset),
741 LUA_REG(wl,quality_max),
746 LUA_REG(wl,assoclist),
747 LUA_REG(wl,txpwrlist),
748 LUA_REG(wl,scanlist),
749 LUA_REG(wl,freqlist),
750 LUA_REG(wl,countrylist),
751 LUA_REG(wl,hwmodelist),
752 LUA_REG(wl,encryption),
753 LUA_REG(wl,mbssid_support),
754 LUA_REG(wl,hardware_id),
755 LUA_REG(wl,hardware_name),
763 static const luaL_reg R_madwifi[] = {
764 LUA_REG(madwifi,channel),
765 LUA_REG(madwifi,frequency),
766 LUA_REG(madwifi,frequency_offset),
767 LUA_REG(madwifi,txpower),
768 LUA_REG(madwifi,txpower_offset),
769 LUA_REG(madwifi,bitrate),
770 LUA_REG(madwifi,signal),
771 LUA_REG(madwifi,noise),
772 LUA_REG(madwifi,quality),
773 LUA_REG(madwifi,quality_max),
774 LUA_REG(madwifi,mode),
775 LUA_REG(madwifi,ssid),
776 LUA_REG(madwifi,bssid),
777 LUA_REG(madwifi,country),
778 LUA_REG(madwifi,assoclist),
779 LUA_REG(madwifi,txpwrlist),
780 LUA_REG(madwifi,scanlist),
781 LUA_REG(madwifi,freqlist),
782 LUA_REG(madwifi,countrylist),
783 LUA_REG(madwifi,hwmodelist),
784 LUA_REG(madwifi,encryption),
785 LUA_REG(madwifi,mbssid_support),
786 LUA_REG(madwifi,hardware_id),
787 LUA_REG(madwifi,hardware_name),
788 LUA_REG(madwifi,phyname),
795 static const luaL_reg R_nl80211[] = {
796 LUA_REG(nl80211,channel),
797 LUA_REG(nl80211,frequency),
798 LUA_REG(nl80211,frequency_offset),
799 LUA_REG(nl80211,txpower),
800 LUA_REG(nl80211,txpower_offset),
801 LUA_REG(nl80211,bitrate),
802 LUA_REG(nl80211,signal),
803 LUA_REG(nl80211,noise),
804 LUA_REG(nl80211,quality),
805 LUA_REG(nl80211,quality_max),
806 LUA_REG(nl80211,mode),
807 LUA_REG(nl80211,ssid),
808 LUA_REG(nl80211,bssid),
809 LUA_REG(nl80211,country),
810 LUA_REG(nl80211,assoclist),
811 LUA_REG(nl80211,txpwrlist),
812 LUA_REG(nl80211,scanlist),
813 LUA_REG(nl80211,freqlist),
814 LUA_REG(nl80211,countrylist),
815 LUA_REG(nl80211,hwmodelist),
816 LUA_REG(nl80211,encryption),
817 LUA_REG(nl80211,mbssid_support),
818 LUA_REG(nl80211,hardware_id),
819 LUA_REG(nl80211,hardware_name),
820 LUA_REG(nl80211,phyname),
826 static const luaL_reg R_wext[] = {
827 LUA_REG(wext,channel),
828 LUA_REG(wext,frequency),
829 LUA_REG(wext,frequency_offset),
830 LUA_REG(wext,txpower),
831 LUA_REG(wext,txpower_offset),
832 LUA_REG(wext,bitrate),
833 LUA_REG(wext,signal),
835 LUA_REG(wext,quality),
836 LUA_REG(wext,quality_max),
840 LUA_REG(wext,country),
841 LUA_REG(wext,assoclist),
842 LUA_REG(wext,txpwrlist),
843 LUA_REG(wext,scanlist),
844 LUA_REG(wext,freqlist),
845 LUA_REG(wext,countrylist),
846 LUA_REG(wext,hwmodelist),
847 LUA_REG(wext,encryption),
848 LUA_REG(wext,mbssid_support),
849 LUA_REG(wext,hardware_id),
850 LUA_REG(wext,hardware_name),
851 LUA_REG(wext,phyname),
856 static const luaL_reg R_common[] = {
857 { "type", iwinfo_L_type },
858 { "__gc", iwinfo_L__gc },
863 LUALIB_API int luaopen_iwinfo(lua_State *L) {
864 luaL_register(L, IWINFO_META, R_common);
867 luaL_newmetatable(L, IWINFO_WL_META);
868 luaL_register(L, NULL, R_common);
869 luaL_register(L, NULL, R_wl);
870 lua_pushvalue(L, -1);
871 lua_setfield(L, -2, "__index");
872 lua_setfield(L, -2, "wl");
876 luaL_newmetatable(L, IWINFO_MADWIFI_META);
877 luaL_register(L, NULL, R_common);
878 luaL_register(L, NULL, R_madwifi);
879 lua_pushvalue(L, -1);
880 lua_setfield(L, -2, "__index");
881 lua_setfield(L, -2, "madwifi");
885 luaL_newmetatable(L, IWINFO_NL80211_META);
886 luaL_register(L, NULL, R_common);
887 luaL_register(L, NULL, R_nl80211);
888 lua_pushvalue(L, -1);
889 lua_setfield(L, -2, "__index");
890 lua_setfield(L, -2, "nl80211");
893 luaL_newmetatable(L, IWINFO_WEXT_META);
894 luaL_register(L, NULL, R_common);
895 luaL_register(L, NULL, R_wext);
896 lua_pushvalue(L, -1);
897 lua_setfield(L, -2, "__index");
898 lua_setfield(L, -2, "wext");