wifi.sta.config (wifi_station_config):
- range checking password length (8~64) wifi.ap.config (wifi_ap_config): - range checking ssid length (1~32) - range checking pwd length (8~64) - new params: - auth: wifi.OPEN, wifi.WPA_PSK, wifi.WPA2_PSK, wifi.WPA_WPA2_PSK - default WITH pwd: wifi.WPA_WPA2_PSK - default WITHOUT pwd: wifi.OPEN - channel: 1~13 (default: 6) - hidden: 0/1 (default: 0) - max: 1~4 (default: 4) - beacon: 100~60000ms (default: 100) wifi.ap.getclient (wifi_ap_listclient): - returns table(mac,ip) of all connected clients wifi.ap.dhcp: - new submodule - config (wifi_ap_dhcp_config), returns start/end ips - params: - start (e.g., "192.168.1.100") - end ip calculated from wifi.ap.config.max - start (wifi_ap_dhcp_start), returns boolean - stop (wifi_ap_dhcp_stop), returns boolean
This commit is contained in:
parent
8558641190
commit
f13c5c61e6
|
@ -8,6 +8,7 @@
|
|||
#include "lrotable.h"
|
||||
|
||||
#include "c_string.h"
|
||||
#include "c_stdlib.h"
|
||||
|
||||
#include "c_types.h"
|
||||
#include "user_interface.h"
|
||||
|
@ -327,8 +328,8 @@ static int wifi_station_config( lua_State* L )
|
|||
if (sl>32 || ssid == NULL)
|
||||
return luaL_error( L, "ssid:<32" );
|
||||
const char *password = luaL_checklstring( L, 2, &pl );
|
||||
if (pl>64 || password == NULL)
|
||||
return luaL_error( L, "pwd:<64" );
|
||||
if (pl<8 || pl>64 || password == NULL)
|
||||
return luaL_error( L, "pwd:8~64" );
|
||||
|
||||
c_memset(sta_conf.ssid, 0, 32);
|
||||
c_memset(sta_conf.password, 0, 64);
|
||||
|
@ -380,6 +381,7 @@ static int wifi_station_setauto( lua_State* L )
|
|||
return 0;
|
||||
}
|
||||
|
||||
// Lua: table = wifi.sta.getap()
|
||||
static int wifi_station_listap( lua_State* L )
|
||||
{
|
||||
if(wifi_get_opmode() == SOFTAP_MODE)
|
||||
|
@ -437,44 +439,46 @@ static int wifi_ap_getbroadcast( lua_State* L ){
|
|||
// Lua: wifi.ap.config(table)
|
||||
static int wifi_ap_config( lua_State* L )
|
||||
{
|
||||
struct softap_config config;
|
||||
size_t len;
|
||||
wifi_softap_get_config(&config);
|
||||
if (!lua_istable(L, 1))
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
|
||||
struct softap_config config;
|
||||
wifi_softap_get_config(&config);
|
||||
|
||||
size_t len;
|
||||
|
||||
lua_getfield(L, 1, "ssid");
|
||||
if (!lua_isnil(L, -1)){ /* found? */
|
||||
if( lua_isstring(L, -1) ) // deal with the ssid string
|
||||
{
|
||||
const char *ssid = luaL_checklstring( L, -1, &len );
|
||||
if(len>32)
|
||||
return luaL_error( L, "ssid:<32" );
|
||||
if(len<1 || len>32 || ssid == NULL)
|
||||
return luaL_error( L, "ssid:1~32" );
|
||||
c_memset(config.ssid, 0, 32);
|
||||
c_memcpy(config.ssid, ssid, len);
|
||||
config.ssid_len = len;
|
||||
config.ssid_hidden = 0;
|
||||
NODE_DBG(config.ssid);
|
||||
NODE_DBG("\n");
|
||||
config.ssid_len = len;
|
||||
config.ssid_hidden = 0;
|
||||
}
|
||||
else
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
}
|
||||
else
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
return luaL_error( L, "ssid required" );
|
||||
|
||||
lua_getfield(L, 1, "pwd");
|
||||
if (!lua_isnil(L, -1)){ /* found? */
|
||||
if( lua_isstring(L, -1) ) // deal with the password string
|
||||
{
|
||||
const char *pwd = luaL_checklstring( L, -1, &len );
|
||||
if(len>64)
|
||||
return luaL_error( L, "pwd:<64" );
|
||||
if(len<8 || len>64 || pwd == NULL)
|
||||
return luaL_error( L, "pwd:8~64" );
|
||||
c_memset(config.password, 0, 64);
|
||||
c_memcpy(config.password, pwd, len);
|
||||
config.authmode = AUTH_WPA_WPA2_PSK;
|
||||
NODE_DBG(config.password);
|
||||
NODE_DBG("\n");
|
||||
config.authmode = AUTH_WPA_WPA2_PSK;
|
||||
}
|
||||
else
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
|
@ -483,11 +487,162 @@ static int wifi_ap_config( lua_State* L )
|
|||
config.authmode = AUTH_OPEN;
|
||||
}
|
||||
|
||||
config.max_connection = 4;
|
||||
lua_getfield(L, 1, "auth");
|
||||
if (!lua_isnil(L, -1))
|
||||
{
|
||||
config.authmode = (uint8_t)luaL_checkinteger(L, -1);
|
||||
NODE_DBG(config.authmode);
|
||||
NODE_DBG("\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
// keep whatever value resulted from "pwd" logic above
|
||||
}
|
||||
|
||||
lua_getfield(L, 1, "channel");
|
||||
if (!lua_isnil(L, -1))
|
||||
{
|
||||
unsigned channel = luaL_checkinteger(L, -1);
|
||||
if (channel < 1 || channel > 13)
|
||||
return luaL_error( L, "channel:1~13" );
|
||||
|
||||
config.channel = (uint8_t)channel;
|
||||
NODE_DBG(config.channel);
|
||||
NODE_DBG("\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
config.channel = 6;
|
||||
}
|
||||
|
||||
lua_getfield(L, 1, "hidden");
|
||||
if (!lua_isnil(L, -1))
|
||||
{
|
||||
config.ssid_hidden = (uint8_t)luaL_checkinteger(L, -1);
|
||||
NODE_DBG(config.ssid_hidden);
|
||||
NODE_DBG("\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
config.ssid_hidden = 0;
|
||||
}
|
||||
|
||||
lua_getfield(L, 1, "max");
|
||||
if (!lua_isnil(L, -1))
|
||||
{
|
||||
unsigned max = luaL_checkinteger(L, -1);
|
||||
if (max < 1 || max > 4)
|
||||
return luaL_error( L, "max:1~4" );
|
||||
|
||||
config.max_connection = (uint8_t)max;
|
||||
NODE_DBG(config.max_connection);
|
||||
NODE_DBG("\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
config.max_connection = 4;
|
||||
}
|
||||
|
||||
lua_getfield(L, 1, "beacon");
|
||||
if (!lua_isnil(L, -1))
|
||||
{
|
||||
unsigned beacon = luaL_checkinteger(L, -1);
|
||||
if (beacon < 100 || beacon > 60000)
|
||||
return luaL_error( L, "beacon:100~60000" );
|
||||
|
||||
config.beacon_interval = (uint16_t)beacon;
|
||||
NODE_DBG(config.beacon_interval);
|
||||
NODE_DBG("\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
config.beacon_interval = 100;
|
||||
}
|
||||
|
||||
wifi_softap_set_config(&config);
|
||||
// system_restart();
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Lua: table = wifi.ap.getclient()
|
||||
static int wifi_ap_listclient( lua_State* L )
|
||||
{
|
||||
if (wifi_get_opmode() == STATION_MODE)
|
||||
{
|
||||
return luaL_error( L, "Can't list client in STATION_MODE mode" );
|
||||
}
|
||||
|
||||
char temp[64];
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
struct station_info * station = wifi_softap_get_station_info();
|
||||
struct station_info * next_station;
|
||||
while (station != NULL)
|
||||
{
|
||||
c_sprintf(temp, IPSTR, IP2STR(&station->ip));
|
||||
lua_pushstring(L, temp);
|
||||
|
||||
c_sprintf(temp, MACSTR, MAC2STR(station->bssid));
|
||||
lua_setfield(L, -2, temp);
|
||||
|
||||
next_station = STAILQ_NEXT(station, next);
|
||||
c_free(station);
|
||||
station = next_station;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Lua: ip = wifi.ap.dhcp.config()
|
||||
static int wifi_ap_dhcp_config( lua_State* L )
|
||||
{
|
||||
if (!lua_istable(L, 1))
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
|
||||
struct dhcps_lease lease;
|
||||
uint32_t ip;
|
||||
|
||||
ip = parse_key(L, "start");
|
||||
if (ip == 0)
|
||||
return luaL_error( L, "wrong arg type" );
|
||||
|
||||
lease.start_ip = ip;
|
||||
NODE_DBG(IPSTR, IP2STR(&lease.start_ip));
|
||||
NODE_DBG("\n");
|
||||
|
||||
// use configured max_connection to determine end
|
||||
struct softap_config config;
|
||||
wifi_softap_get_config(&config);
|
||||
lease.end_ip = lease.start_ip;
|
||||
ip4_addr4(&lease.end_ip) += config.max_connection - 1;
|
||||
|
||||
char temp[64];
|
||||
c_sprintf(temp, IPSTR, IP2STR(&lease.start_ip));
|
||||
lua_pushstring(L, temp);
|
||||
c_sprintf(temp, IPSTR, IP2STR(&lease.end_ip));
|
||||
lua_pushstring(L, temp);
|
||||
|
||||
// note: DHCP max range = 101 from start_ip to end_ip
|
||||
wifi_softap_dhcps_stop();
|
||||
wifi_softap_set_dhcps_lease(&lease);
|
||||
wifi_softap_dhcps_start();
|
||||
|
||||
return 2;
|
||||
}
|
||||
|
||||
// Lua: wifi.ap.dhcp.start()
|
||||
static int wifi_ap_dhcp_start( lua_State* L )
|
||||
{
|
||||
lua_pushboolean(L, wifi_softap_dhcps_start());
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Lua: wifi.ap.dhcp.stop()
|
||||
static int wifi_ap_dhcp_stop( lua_State* L )
|
||||
{
|
||||
lua_pushboolean(L, wifi_softap_dhcps_stop());
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Module function map
|
||||
|
@ -509,6 +664,14 @@ static const LUA_REG_TYPE wifi_station_map[] =
|
|||
{ LNILKEY, LNILVAL }
|
||||
};
|
||||
|
||||
static const LUA_REG_TYPE wifi_ap_dhcp_map[] =
|
||||
{
|
||||
{ LSTRKEY( "config" ), LFUNCVAL( wifi_ap_dhcp_config ) },
|
||||
{ LSTRKEY( "start" ), LFUNCVAL( wifi_ap_dhcp_start ) },
|
||||
{ LSTRKEY( "stop" ), LFUNCVAL( wifi_ap_dhcp_stop ) },
|
||||
{ LNILKEY, LNILVAL }
|
||||
};
|
||||
|
||||
static const LUA_REG_TYPE wifi_ap_map[] =
|
||||
{
|
||||
{ LSTRKEY( "config" ), LFUNCVAL( wifi_ap_config ) },
|
||||
|
@ -517,6 +680,12 @@ static const LUA_REG_TYPE wifi_ap_map[] =
|
|||
{ LSTRKEY( "getbroadcast" ), LFUNCVAL ( wifi_ap_getbroadcast) },
|
||||
{ LSTRKEY( "getmac" ), LFUNCVAL ( wifi_ap_getmac ) },
|
||||
{ LSTRKEY( "setmac" ), LFUNCVAL ( wifi_ap_setmac ) },
|
||||
{ LSTRKEY( "getclient" ), LFUNCVAL ( wifi_ap_listclient ) },
|
||||
#if LUA_OPTIMIZE_MEMORY > 0
|
||||
{ LSTRKEY( "dhcp" ), LROVAL( wifi_ap_dhcp_map ) },
|
||||
|
||||
// { LSTRKEY( "__metatable" ), LROVAL( wifi_ap_map ) },
|
||||
#endif
|
||||
{ LNILKEY, LNILVAL }
|
||||
};
|
||||
|
||||
|
@ -540,6 +709,12 @@ const LUA_REG_TYPE wifi_map[] =
|
|||
{ LSTRKEY( "LIGHT_SLEEP" ), LNUMVAL( LIGHT_SLEEP_T ) },
|
||||
{ LSTRKEY( "MODEM_SLEEP" ), LNUMVAL( MODEM_SLEEP_T ) },
|
||||
|
||||
{ LSTRKEY( "OPEN" ), LNUMVAL( AUTH_OPEN ) },
|
||||
// { LSTRKEY( "WEP" ), LNUMVAL( AUTH_WEP ) },
|
||||
{ LSTRKEY( "WPA_PSK" ), LNUMVAL( AUTH_WPA_PSK ) },
|
||||
{ LSTRKEY( "WPA2_PSK" ), LNUMVAL( AUTH_WPA2_PSK ) },
|
||||
{ LSTRKEY( "WPA_WPA2_PSK" ), LNUMVAL( AUTH_WPA_WPA2_PSK ) },
|
||||
|
||||
// { LSTRKEY( "STA_IDLE" ), LNUMVAL( STATION_IDLE ) },
|
||||
// { LSTRKEY( "STA_CONNECTING" ), LNUMVAL( STATION_CONNECTING ) },
|
||||
// { LSTRKEY( "STA_WRONGPWD" ), LNUMVAL( STATION_WRONG_PASSWORD ) },
|
||||
|
@ -573,6 +748,12 @@ LUALIB_API int luaopen_wifi( lua_State *L )
|
|||
MOD_REG_NUMBER( L, "LIGHT_SLEEP", LIGHT_SLEEP_T );
|
||||
MOD_REG_NUMBER( L, "MODEM_SLEEP", MODEM_SLEEP_T );
|
||||
|
||||
MOD_REG_NUMBER( L, "OPEN", AUTH_OPEN );
|
||||
// MOD_REG_NUMBER( L, "WEP", AUTH_WEP );
|
||||
MOD_REG_NUMBER( L, "WPA_PSK", AUTH_WPA_PSK );
|
||||
MOD_REG_NUMBER( L, "WPA2_PSK", AUTH_WPA2_PSK );
|
||||
MOD_REG_NUMBER( L, "WPA_WPA2_PSK", AUTH_WPA_WPA2_PSK );
|
||||
|
||||
// MOD_REG_NUMBER( L, "STA_IDLE", STATION_IDLE );
|
||||
// MOD_REG_NUMBER( L, "STA_CONNECTING", STATION_CONNECTING );
|
||||
// MOD_REG_NUMBER( L, "STA_WRONGPWD", STATION_WRONG_PASSWORD );
|
||||
|
@ -589,6 +770,11 @@ LUALIB_API int luaopen_wifi( lua_State *L )
|
|||
luaL_register( L, NULL, wifi_ap_map );
|
||||
lua_setfield( L, -2, "ap" );
|
||||
|
||||
// Setup the new table (dhcp) inside ap
|
||||
lua_newtable( L );
|
||||
luaL_register( L, NULL, wifi_ap_dhcp_map );
|
||||
lua_setfield( L, -1, "dhcp" );
|
||||
|
||||
return 1;
|
||||
#endif // #if LUA_OPTIMIZE_MEMORY > 0
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue