2014-12-22 12:35:05 +01:00
|
|
|
|
// Module for interfacing with WIFI
|
|
|
|
|
|
|
|
|
|
//#include "lua.h"
|
|
|
|
|
#include "lualib.h"
|
|
|
|
|
#include "lauxlib.h"
|
|
|
|
|
#include "platform.h"
|
|
|
|
|
#include "auxmods.h"
|
|
|
|
|
#include "lrotable.h"
|
|
|
|
|
|
|
|
|
|
#include "c_string.h"
|
2015-05-11 14:06:48 +02:00
|
|
|
|
#include "c_stdlib.h"
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
#include "c_types.h"
|
|
|
|
|
#include "user_interface.h"
|
|
|
|
|
#include "smart.h"
|
2015-01-24 16:36:04 +01:00
|
|
|
|
#include "smartconfig.h"
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
static int wifi_smart_succeed = LUA_NOREF;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
static uint8 getap_output_format=0;
|
2015-07-14 07:12:16 +02:00
|
|
|
|
|
2015-11-04 02:23:43 +01:00
|
|
|
|
//wifi.sleep variables
|
|
|
|
|
#define FPM_SLEEP_MAX_TIME 0xFFFFFFF
|
2015-11-04 15:37:57 +01:00
|
|
|
|
static bool FLAG_wifi_force_sleep_enabled=0;
|
2015-11-04 02:23:43 +01:00
|
|
|
|
|
|
|
|
|
|
2015-07-14 06:13:26 +02:00
|
|
|
|
//variables for wifi event monitor
|
|
|
|
|
static sint32_t wifi_status_cb_ref[6] = {LUA_NOREF,LUA_NOREF,LUA_NOREF,LUA_NOREF,LUA_NOREF,LUA_NOREF};
|
|
|
|
|
static volatile os_timer_t wifi_sta_status_timer;
|
|
|
|
|
static uint8 prev_wifi_status=0;
|
|
|
|
|
|
|
|
|
|
|
2015-07-03 20:27:51 +02:00
|
|
|
|
#if defined( NODE_SMART_OLDSTYLE )
|
|
|
|
|
#else
|
|
|
|
|
static lua_State* smart_L = NULL;
|
|
|
|
|
#endif
|
2015-10-01 07:26:20 +02:00
|
|
|
|
static void wifi_smart_succeed_cb(sc_status status, void *pdata){
|
2014-12-22 12:35:05 +01:00
|
|
|
|
NODE_DBG("wifi_smart_succeed_cb is called.\n");
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
if (status == SC_STATUS_LINK_OVER)
|
|
|
|
|
{
|
|
|
|
|
smartconfig_stop();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-03 20:27:51 +02:00
|
|
|
|
#if defined( NODE_SMART_OLDSTYLE )
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
if (status != SC_STATUS_LINK || !pdata)
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return;
|
|
|
|
|
if(wifi_smart_succeed == LUA_NOREF)
|
|
|
|
|
return;
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
lua_State* L = (lua_State *)arg;
|
|
|
|
|
lua_rawgeti(L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
lua_call(L, 0, 0);
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
if (status != SC_STATUS_LINK || !pdata)
|
2015-07-03 20:27:51 +02:00
|
|
|
|
return;
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
struct station_config *sta_conf = pdata;
|
2015-07-03 20:27:51 +02:00
|
|
|
|
wifi_station_set_config(sta_conf);
|
|
|
|
|
wifi_station_disconnect();
|
|
|
|
|
wifi_station_connect();
|
|
|
|
|
|
|
|
|
|
if(wifi_smart_succeed != LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
lua_rawgeti(smart_L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
|
|
|
|
|
lua_pushstring(smart_L, sta_conf->ssid);
|
|
|
|
|
lua_pushstring(smart_L, sta_conf->password);
|
|
|
|
|
lua_call(smart_L, 2, 0);
|
|
|
|
|
|
|
|
|
|
luaL_unref(smart_L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
wifi_smart_succeed = LUA_NOREF;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // defined( NODE_SMART_OLDSTYLE )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int wifi_scan_succeed = LUA_NOREF;
|
|
|
|
|
static lua_State* gL = NULL;
|
|
|
|
|
/**
|
|
|
|
|
* @brief Wifi ap scan over callback to display.
|
|
|
|
|
* @param arg: contain the aps information
|
|
|
|
|
* @param status: scan over status
|
|
|
|
|
* @retval None
|
|
|
|
|
*/
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static void wifi_scan_done(void *arg, STATUS status)
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
uint8 ssid[33];
|
|
|
|
|
char temp[128];
|
|
|
|
|
if(wifi_scan_succeed == LUA_NOREF)
|
|
|
|
|
return;
|
|
|
|
|
if(arg == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
lua_rawgeti(gL, LUA_REGISTRYINDEX, wifi_scan_succeed);
|
|
|
|
|
|
|
|
|
|
if (status == OK)
|
|
|
|
|
{
|
|
|
|
|
struct bss_info *bss_link = (struct bss_info *)arg;
|
|
|
|
|
bss_link = bss_link->next.stqe_next;//ignore first
|
|
|
|
|
lua_newtable( gL );
|
|
|
|
|
|
|
|
|
|
while (bss_link != NULL)
|
|
|
|
|
{
|
|
|
|
|
c_memset(ssid, 0, 33);
|
|
|
|
|
if (c_strlen(bss_link->ssid) <= 32)
|
|
|
|
|
{
|
|
|
|
|
c_memcpy(ssid, bss_link->ssid, c_strlen(bss_link->ssid));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
c_memcpy(ssid, bss_link->ssid, 32);
|
|
|
|
|
}
|
2015-06-01 06:37:03 +02:00
|
|
|
|
if(getap_output_format==1) //use new format(BSSID : SSID, RSSI, Authmode, Channel)
|
|
|
|
|
{
|
|
|
|
|
c_sprintf(temp,"%s,%d,%d,%d", ssid, bss_link->rssi, bss_link->authmode, bss_link->channel);
|
|
|
|
|
lua_pushstring(gL, temp);
|
|
|
|
|
NODE_DBG(MACSTR" : %s\n",MAC2STR(bss_link->bssid) , temp);
|
|
|
|
|
c_sprintf(temp,MACSTR, MAC2STR(bss_link->bssid));
|
|
|
|
|
lua_setfield( gL, -2, temp);
|
|
|
|
|
}
|
|
|
|
|
else//use old format(SSID : Authmode, RSSI, BSSID, Channel)
|
|
|
|
|
{
|
|
|
|
|
c_sprintf(temp,"%d,%d,"MACSTR",%d", bss_link->authmode, bss_link->rssi, MAC2STR(bss_link->bssid),bss_link->channel);
|
|
|
|
|
lua_pushstring(gL, temp);
|
|
|
|
|
lua_setfield( gL, -2, ssid );
|
|
|
|
|
NODE_DBG("%s : %s\n", ssid, temp);
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
bss_link = bss_link->next.stqe_next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2015-05-20 11:21:46 +02:00
|
|
|
|
lua_newtable( gL );
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
lua_call(gL, 1, 0);
|
2015-05-07 14:02:59 +02:00
|
|
|
|
if(wifi_scan_succeed != LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
luaL_unref(gL, LUA_REGISTRYINDEX, wifi_scan_succeed);
|
|
|
|
|
wifi_scan_succeed = LUA_NOREF;
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: smart(channel, function succeed_cb)
|
2015-01-24 16:36:04 +01:00
|
|
|
|
// Lua: smart(type, function succeed_cb)
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_start_smart( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
|
|
|
|
#if defined( NODE_SMART_OLDSTYLE )
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
unsigned channel;
|
|
|
|
|
int stack = 1;
|
|
|
|
|
|
|
|
|
|
if ( lua_isnumber(L, stack) ){
|
|
|
|
|
channel = lua_tointeger(L, stack);
|
|
|
|
|
stack++;
|
|
|
|
|
} else {
|
|
|
|
|
channel = 6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// luaL_checkanyfunction(L, stack);
|
|
|
|
|
if (lua_type(L, stack) == LUA_TFUNCTION || lua_type(L, stack) == LUA_TLIGHTFUNCTION){
|
|
|
|
|
lua_pushvalue(L, stack); // copy argument (func) to the top of stack
|
|
|
|
|
if(wifi_smart_succeed != LUA_NOREF)
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
wifi_smart_succeed = luaL_ref(L, LUA_REGISTRYINDEX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( channel > 14 || channel < 1 )
|
|
|
|
|
return luaL_error( L, "wrong arg range" );
|
|
|
|
|
|
|
|
|
|
if(wifi_smart_succeed == LUA_NOREF){
|
|
|
|
|
smart_begin(channel, NULL, NULL);
|
|
|
|
|
}else{
|
|
|
|
|
smart_begin(channel, (smart_succeed )wifi_smart_succeed_cb, L);
|
|
|
|
|
}
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
if(wifi_get_opmode() != STATION_MODE)
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "Smart link only in STATION mode" );
|
|
|
|
|
}
|
|
|
|
|
uint8_t smart_type = 0;
|
|
|
|
|
int stack = 1;
|
|
|
|
|
smart_L = L;
|
|
|
|
|
if ( lua_isnumber(L, stack) )
|
|
|
|
|
{
|
|
|
|
|
smart_type = lua_tointeger(L, stack);
|
|
|
|
|
stack++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lua_type(L, stack) == LUA_TFUNCTION || lua_type(L, stack) == LUA_TLIGHTFUNCTION)
|
|
|
|
|
{
|
|
|
|
|
lua_pushvalue(L, stack); // copy argument (func) to the top of stack
|
|
|
|
|
if(wifi_smart_succeed != LUA_NOREF)
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
wifi_smart_succeed = luaL_ref(L, LUA_REGISTRYINDEX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( smart_type > 1 )
|
|
|
|
|
return luaL_error( L, "wrong arg range" );
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
smartconfig_set_type(smart_type);
|
|
|
|
|
smartconfig_start(wifi_smart_succeed_cb);
|
2015-07-03 20:27:51 +02:00
|
|
|
|
|
|
|
|
|
#endif // defined( NODE_SMART_OLDSTYLE )
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-24 16:36:04 +01:00
|
|
|
|
// Lua: exit_smart()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_exit_smart( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
2015-07-03 20:27:51 +02:00
|
|
|
|
#if defined( NODE_SMART_OLDSTYLE )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
smart_end();
|
2015-07-03 20:27:51 +02:00
|
|
|
|
#else
|
|
|
|
|
smartconfig_stop();
|
|
|
|
|
#endif // defined( NODE_SMART_OLDSTYLE )
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
if(wifi_smart_succeed != LUA_NOREF)
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_smart_succeed);
|
|
|
|
|
wifi_smart_succeed = LUA_NOREF;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: realmode = setmode(mode)
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_setmode( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned mode;
|
|
|
|
|
|
|
|
|
|
mode = luaL_checkinteger( L, 1 );
|
|
|
|
|
|
|
|
|
|
if ( mode != STATION_MODE && mode != SOFTAP_MODE && mode != STATIONAP_MODE )
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
wifi_set_opmode( (uint8_t)mode);
|
|
|
|
|
mode = (unsigned)wifi_get_opmode();
|
|
|
|
|
lua_pushinteger( L, mode );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: realmode = getmode()
|
2015-04-29 09:06:06 +02:00
|
|
|
|
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_getmode( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned mode;
|
|
|
|
|
mode = (unsigned)wifi_get_opmode();
|
|
|
|
|
lua_pushinteger( L, mode );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2015-05-23 04:42:21 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.getchannel()
|
|
|
|
|
* Description:
|
|
|
|
|
* Get current wifi Channel
|
|
|
|
|
*
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.getchannel()
|
|
|
|
|
* Parameters:
|
|
|
|
|
* nil
|
|
|
|
|
*
|
|
|
|
|
* Returns:
|
|
|
|
|
* Current wifi channel
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static int wifi_getchannel( lua_State* L )
|
|
|
|
|
{
|
|
|
|
|
unsigned channel;
|
|
|
|
|
channel = (unsigned)wifi_get_channel();
|
|
|
|
|
lua_pushinteger( L, channel );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
2015-04-29 09:06:06 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.setphymode()
|
|
|
|
|
* Description:
|
2015-05-23 04:42:21 +02:00
|
|
|
|
* Set wifi physical mode(802.11 b/g/n)
|
|
|
|
|
* Note: SoftAP only supports 802.11 b/g.
|
2015-04-29 09:06:06 +02:00
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.setphymode(mode)
|
|
|
|
|
* Parameters:
|
|
|
|
|
* mode:
|
|
|
|
|
* wifi.PHYMODE_B
|
|
|
|
|
* wifi.PHYMODE_G
|
|
|
|
|
* wifi.PHYMODE_N
|
|
|
|
|
* Returns:
|
|
|
|
|
* Current physical mode after setup
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-27 05:03:44 +02:00
|
|
|
|
static int wifi_setphymode( lua_State* L )
|
|
|
|
|
{
|
|
|
|
|
unsigned mode;
|
|
|
|
|
|
|
|
|
|
mode = luaL_checkinteger( L, 1 );
|
|
|
|
|
|
|
|
|
|
if ( mode != PHY_MODE_11B && mode != PHY_MODE_11G && mode != PHY_MODE_11N )
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
wifi_set_phy_mode( (uint8_t)mode);
|
|
|
|
|
mode = (unsigned)wifi_get_phy_mode();
|
|
|
|
|
lua_pushinteger( L, mode );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 09:06:06 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.getphymode()
|
|
|
|
|
* Description:
|
2015-05-23 04:42:21 +02:00
|
|
|
|
* Get wifi physical mode(802.11 b/g/n)
|
2015-04-29 09:06:06 +02:00
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.getphymode()
|
|
|
|
|
* Parameters:
|
|
|
|
|
* nil
|
|
|
|
|
* Returns:
|
|
|
|
|
* Current physical mode.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2015-04-27 05:03:44 +02:00
|
|
|
|
static int wifi_getphymode( lua_State* L )
|
|
|
|
|
{
|
|
|
|
|
unsigned mode;
|
|
|
|
|
mode = (unsigned)wifi_get_phy_mode();
|
|
|
|
|
lua_pushinteger( L, mode );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
2015-11-04 02:23:43 +01:00
|
|
|
|
//wifi.sleep()
|
|
|
|
|
static int wifi_sleep(lua_State* L)
|
|
|
|
|
{
|
|
|
|
|
uint8 desired_sleep_state=2;
|
|
|
|
|
if(lua_isnumber(L, 1))
|
|
|
|
|
{
|
|
|
|
|
if(luaL_checknumber(L, 1)==0)
|
|
|
|
|
{
|
|
|
|
|
desired_sleep_state=FALSE;
|
|
|
|
|
}
|
|
|
|
|
else if(luaL_checknumber(L, 1)==1)
|
|
|
|
|
{
|
|
|
|
|
desired_sleep_state=TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!FLAG_wifi_force_sleep_enabled && desired_sleep_state==1)
|
|
|
|
|
{
|
|
|
|
|
FLAG_wifi_force_sleep_enabled=TRUE;
|
|
|
|
|
uint8 wifi_current_opmode=wifi_get_opmode();
|
|
|
|
|
if (wifi_current_opmode==1||wifi_current_opmode==3)
|
|
|
|
|
{
|
|
|
|
|
wifi_station_disconnect();
|
|
|
|
|
}
|
|
|
|
|
// set WiFi mode to null mode
|
|
|
|
|
wifi_set_opmode(NULL_MODE);
|
|
|
|
|
// set force sleep type
|
|
|
|
|
wifi_fpm_set_sleep_type(MODEM_SLEEP_T);
|
|
|
|
|
wifi_fpm_open();
|
|
|
|
|
wifi_fpm_do_sleep(FPM_SLEEP_MAX_TIME);
|
|
|
|
|
}
|
|
|
|
|
else if(FLAG_wifi_force_sleep_enabled && desired_sleep_state==0)
|
|
|
|
|
{
|
|
|
|
|
FLAG_wifi_force_sleep_enabled=FALSE;
|
|
|
|
|
// wake up to use WiFi again
|
|
|
|
|
wifi_fpm_do_wakeup();
|
|
|
|
|
wifi_fpm_close();
|
|
|
|
|
}
|
|
|
|
|
lua_pushnumber(L, FLAG_wifi_force_sleep_enabled);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: mac = wifi.xx.getmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_getmac( lua_State* L, uint8_t mode )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
char temp[64];
|
|
|
|
|
uint8_t mac[6];
|
|
|
|
|
wifi_get_macaddr(mode, mac);
|
2015-05-09 13:29:18 +02:00
|
|
|
|
c_sprintf(temp, MACSTR, MAC2STR(mac));
|
2014-12-22 12:35:05 +01:00
|
|
|
|
lua_pushstring( L, temp );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
// Lua: mac = wifi.xx.setmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_setmac( lua_State* L, uint8_t mode )
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{
|
2015-05-09 13:29:18 +02:00
|
|
|
|
uint8_t mac[6];
|
2014-12-29 14:57:37 +01:00
|
|
|
|
unsigned len = 0;
|
2015-05-09 13:29:18 +02:00
|
|
|
|
const char *macaddr = luaL_checklstring( L, 1, &len );
|
|
|
|
|
if(len!=17)
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
2014-12-29 14:57:37 +01:00
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
ets_str2macaddr(mac, macaddr);
|
2014-12-29 14:57:37 +01:00
|
|
|
|
lua_pushboolean(L,wifi_set_macaddr(mode, (uint8 *)mac));
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: ip = wifi.xx.getip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_getip( lua_State* L, uint8_t mode )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
struct ip_info pTempIp;
|
|
|
|
|
char temp[64];
|
|
|
|
|
wifi_get_ip_info(mode, &pTempIp);
|
|
|
|
|
if(pTempIp.ip.addr==0){
|
|
|
|
|
lua_pushnil(L);
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return 1;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
} else {
|
|
|
|
|
c_sprintf(temp, "%d.%d.%d.%d", IP2STR(&pTempIp.ip) );
|
|
|
|
|
lua_pushstring( L, temp );
|
2015-01-12 12:23:55 +01:00
|
|
|
|
c_sprintf(temp, "%d.%d.%d.%d", IP2STR(&pTempIp.netmask) );
|
|
|
|
|
lua_pushstring( L, temp );
|
|
|
|
|
c_sprintf(temp, "%d.%d.%d.%d", IP2STR(&pTempIp.gw) );
|
|
|
|
|
lua_pushstring( L, temp );
|
|
|
|
|
return 3;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
2014-12-29 14:57:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 14:18:27 +01:00
|
|
|
|
// Lua: broadcast = wifi.xx.getbroadcast()
|
|
|
|
|
static int wifi_getbroadcast( lua_State* L, uint8_t mode )
|
|
|
|
|
{
|
|
|
|
|
struct ip_info pTempIp;
|
|
|
|
|
char temp[64];
|
|
|
|
|
wifi_get_ip_info(mode, &pTempIp);
|
|
|
|
|
if(pTempIp.ip.addr==0){
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
return 1;
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
struct ip_addr broadcast_address;
|
|
|
|
|
|
|
|
|
|
uint32 subnet_mask32 = pTempIp.netmask.addr & pTempIp.ip.addr;
|
|
|
|
|
uint32 broadcast_address32 = ~pTempIp.netmask.addr | subnet_mask32;
|
|
|
|
|
broadcast_address.addr = broadcast_address32;
|
|
|
|
|
|
|
|
|
|
c_sprintf(temp, "%d.%d.%d.%d", IP2STR(&broadcast_address) );
|
|
|
|
|
lua_pushstring( L, temp );
|
|
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
static uint32_t parse_key(lua_State* L, const char * key){
|
|
|
|
|
lua_getfield(L, 1, key);
|
2014-12-30 13:17:16 +01:00
|
|
|
|
if( lua_isstring(L, -1) ) // deal with the ip/netmask/gw string
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{
|
|
|
|
|
const char *ip = luaL_checkstring( L, -1 );
|
|
|
|
|
return ipaddr_addr(ip);
|
|
|
|
|
}
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: ip = wifi.xx.setip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_setip( lua_State* L, uint8_t mode )
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{
|
|
|
|
|
struct ip_info pTempIp;
|
|
|
|
|
wifi_get_ip_info(mode, &pTempIp);
|
|
|
|
|
|
|
|
|
|
if (!lua_istable(L, 1))
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
uint32_t ip = parse_key(L, "ip");
|
|
|
|
|
if(ip!=0)
|
|
|
|
|
pTempIp.ip.addr = ip;
|
|
|
|
|
|
|
|
|
|
ip = parse_key(L, "netmask");
|
|
|
|
|
if(ip!=0)
|
|
|
|
|
pTempIp.netmask.addr = ip;
|
|
|
|
|
|
|
|
|
|
ip = parse_key(L, "gateway");
|
2015-05-18 04:29:26 +02:00
|
|
|
|
if(mode==SOFTAP_IF || ip!=0)
|
2014-12-29 14:57:37 +01:00
|
|
|
|
pTempIp.gw.addr = ip;
|
2015-02-12 15:43:48 +01:00
|
|
|
|
|
|
|
|
|
if(STATION_IF == mode)
|
|
|
|
|
{
|
|
|
|
|
wifi_station_dhcpc_stop();
|
|
|
|
|
lua_pushboolean(L,wifi_set_ip_info(mode, &pTempIp));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wifi_softap_dhcps_stop();
|
|
|
|
|
lua_pushboolean(L,wifi_set_ip_info(mode, &pTempIp));
|
|
|
|
|
wifi_softap_dhcps_start();
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: realtype = sleeptype(type)
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_sleeptype( lua_State* L )
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned type;
|
|
|
|
|
|
|
|
|
|
if ( lua_isnumber(L, 1) ){
|
|
|
|
|
type = lua_tointeger(L, 1);
|
|
|
|
|
if ( type != NONE_SLEEP_T && type != LIGHT_SLEEP_T && type != MODEM_SLEEP_T )
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
if(!wifi_set_sleep_type(type)){
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type = wifi_get_sleep_type();
|
|
|
|
|
lua_pushinteger( L, type );
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: wifi.sta.getmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_getmac( lua_State* L ){
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return wifi_getmac(L, STATION_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
// Lua: wifi.sta.setmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_setmac( lua_State* L ){
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return wifi_setmac(L, STATION_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: wifi.sta.getip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_getip( lua_State* L ){
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return wifi_getip(L, STATION_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
// Lua: wifi.sta.setip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_setip( lua_State* L ){
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return wifi_setip(L, STATION_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 14:18:27 +01:00
|
|
|
|
// Lua: wifi.sta.getbroadcast()
|
|
|
|
|
static int wifi_station_getbroadcast( lua_State* L ){
|
|
|
|
|
return wifi_getbroadcast(L, STATION_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-09 10:50:35 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.getconfig()
|
|
|
|
|
* Description:
|
|
|
|
|
* Get current Station configuration.
|
|
|
|
|
* Note: if bssid_set==1 STATION is configured to connect to specified BSSID
|
|
|
|
|
* if bssid_set==0 specified BSSID address is irrelevant.
|
|
|
|
|
* Syntax:
|
|
|
|
|
* ssid, pwd, bssid_set, bssid=wifi.sta.getconfig()
|
|
|
|
|
* Parameters:
|
|
|
|
|
* none
|
|
|
|
|
* Returns:
|
|
|
|
|
* SSID, Password, BSSID_set, BSSID
|
|
|
|
|
*/
|
|
|
|
|
static int wifi_station_getconfig( lua_State* L )
|
|
|
|
|
{
|
|
|
|
|
struct station_config sta_conf;
|
|
|
|
|
char bssid[17];
|
|
|
|
|
wifi_station_get_config(&sta_conf);
|
|
|
|
|
if(sta_conf.ssid==0)
|
|
|
|
|
{
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
lua_pushstring( L, sta_conf.ssid );
|
|
|
|
|
lua_pushstring( L, sta_conf.password );
|
|
|
|
|
lua_pushinteger( L, sta_conf.bssid_set);
|
|
|
|
|
c_sprintf(bssid, MACSTR, MAC2STR(sta_conf.bssid));
|
|
|
|
|
lua_pushstring( L, bssid);
|
|
|
|
|
return 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.config()
|
|
|
|
|
* Description:
|
|
|
|
|
* Set current Station configuration.
|
|
|
|
|
* Note: If there are multiple APs with the same ssid, you can connect to a specific one by entering it's MAC address into the "bssid" field.
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.sta.getconfig(ssid, password) --Set STATION configuration, Auto-connect by default, Connects to any BSSID
|
|
|
|
|
* wifi.sta.getconfig(ssid, password, Auto_connect) --Set STATION configuration, Auto-connect(0 or 1), Connects to any BSSID
|
|
|
|
|
* wifi.sta.getconfig(ssid, password, bssid) --Set STATION configuration, Auto-connect by default, Connects to specific BSSID
|
|
|
|
|
* wifi.sta.getconfig(ssid, password, Auto_connect, bssid) --Set STATION configuration, Auto-connect(0 or 1), Connects to specific BSSID
|
|
|
|
|
* Parameters:
|
|
|
|
|
* ssid: string which is less than 32 bytes.
|
|
|
|
|
* Password: string which is less than 64 bytes.
|
|
|
|
|
* Auto_connect: 0 (disable Auto-connect) or 1 (to enable Auto-connect).
|
|
|
|
|
* bssid: MAC address of Access Point you would like to connect to.
|
|
|
|
|
* Returns:
|
|
|
|
|
* Nothing.
|
2015-05-09 13:17:35 +02:00
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
--Connect to Access Point automatically when in range
|
|
|
|
|
wifi.sta.getconfig("myssid", "password")
|
|
|
|
|
|
|
|
|
|
--Connect to Access Point, User decides when to connect/disconnect to/from AP
|
|
|
|
|
wifi.sta.getconfig("myssid", "mypassword", 0)
|
|
|
|
|
wifi.sta.connect()
|
|
|
|
|
--do some wifi stuff
|
|
|
|
|
wifi.sta.disconnect()
|
|
|
|
|
|
|
|
|
|
--Connect to specific Access Point automatically when in range
|
|
|
|
|
wifi.sta.getconfig("myssid", "mypassword", "12:34:56:78:90:12")
|
|
|
|
|
|
|
|
|
|
--Connect to specific Access Point, User decides when to connect/disconnect to/from AP
|
|
|
|
|
wifi.sta.getconfig("myssid", "mypassword", 0)
|
|
|
|
|
wifi.sta.connect()
|
|
|
|
|
--do some wifi stuff
|
|
|
|
|
wifi.sta.disconnect()
|
|
|
|
|
*
|
2015-05-09 10:50:35 +02:00
|
|
|
|
*/
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_config( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
2015-05-09 10:50:35 +02:00
|
|
|
|
size_t sl, pl, ml;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
struct station_config sta_conf;
|
2015-05-09 10:50:35 +02:00
|
|
|
|
int auto_connect=0;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
const char *ssid = luaL_checklstring( L, 1, &sl );
|
|
|
|
|
if (sl>32 || ssid == NULL)
|
|
|
|
|
return luaL_error( L, "ssid:<32" );
|
|
|
|
|
const char *password = luaL_checklstring( L, 2, &pl );
|
2015-05-07 15:12:57 +02:00
|
|
|
|
if (pl!=0 && (pl<8 || pl>64) || password == NULL)
|
|
|
|
|
return luaL_error( L, "pwd:0,8~64" );
|
2015-05-09 10:50:35 +02:00
|
|
|
|
|
|
|
|
|
if(lua_isnumber(L, 3))
|
|
|
|
|
{
|
|
|
|
|
auto_connect=luaL_checkinteger( L, 3 );;
|
|
|
|
|
if ( auto_connect != 0 && auto_connect != 1)
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else if (lua_isstring(L, 3)&& !(lua_isnumber(L, 3)))
|
|
|
|
|
{
|
2015-05-11 09:05:28 +02:00
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 3);
|
2015-05-09 10:50:35 +02:00
|
|
|
|
auto_connect=1;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if(lua_isnil(L, 3))
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
auto_connect=1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(lua_isnumber(L, 4))
|
|
|
|
|
{
|
|
|
|
|
sta_conf.bssid_set = 0;
|
|
|
|
|
c_memset(sta_conf.bssid, 0, 6);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (lua_isstring(L, 4))
|
|
|
|
|
{
|
|
|
|
|
const char *macaddr = luaL_checklstring( L, 4, &ml );
|
|
|
|
|
if (ml!=17)
|
|
|
|
|
return luaL_error( L, "MAC:FF:FF:FF:FF:FF:FF" );
|
|
|
|
|
c_memset(sta_conf.bssid, 0, 6);
|
2015-10-01 07:26:20 +02:00
|
|
|
|
ets_str2macaddr(sta_conf.bssid, macaddr);
|
2015-05-09 10:50:35 +02:00
|
|
|
|
sta_conf.bssid_set = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sta_conf.bssid_set = 0;
|
|
|
|
|
c_memset(sta_conf.bssid, 0, 6);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
c_memset(sta_conf.ssid, 0, 32);
|
|
|
|
|
c_memset(sta_conf.password, 0, 64);
|
|
|
|
|
c_memcpy(sta_conf.ssid, ssid, sl);
|
|
|
|
|
c_memcpy(sta_conf.password, password, pl);
|
|
|
|
|
|
|
|
|
|
NODE_DBG(sta_conf.ssid);
|
|
|
|
|
NODE_DBG(" %d\n", sl);
|
|
|
|
|
NODE_DBG(sta_conf.password);
|
|
|
|
|
NODE_DBG(" %d\n", pl);
|
2015-05-09 10:50:35 +02:00
|
|
|
|
NODE_DBG(" %d\n", sta_conf.bssid_set);
|
|
|
|
|
NODE_DBG( MACSTR, MAC2STR(sta_conf.bssid));
|
|
|
|
|
NODE_DBG("\n");
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
wifi_station_set_config(&sta_conf);
|
|
|
|
|
wifi_station_disconnect();
|
2015-05-09 10:50:35 +02:00
|
|
|
|
|
|
|
|
|
if(auto_connect==0)
|
|
|
|
|
{
|
|
|
|
|
wifi_station_set_auto_connect(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wifi_station_set_auto_connect(true);
|
|
|
|
|
wifi_station_connect();
|
|
|
|
|
}
|
|
|
|
|
// station_check_connect(0);
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: wifi.sta.connect()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_connect4lua( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
wifi_station_connect();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: wifi.sta.disconnect()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_disconnect4lua( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
wifi_station_disconnect();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: wifi.sta.auto(true/false)
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_setauto( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
unsigned a;
|
|
|
|
|
|
|
|
|
|
a = luaL_checkinteger( L, 1 );
|
|
|
|
|
|
|
|
|
|
if ( a != 0 && a != 1 )
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
wifi_station_set_auto_connect(a);
|
|
|
|
|
if(a){
|
|
|
|
|
// station_check_connect(0);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-11 14:38:23 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.listap()
|
|
|
|
|
* Description:
|
|
|
|
|
* scan and get ap list as a lua table into callback function.
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.sta.getap(function(table))
|
2015-06-01 07:45:43 +02:00
|
|
|
|
* wifi.sta.getap(format, function(table))
|
2015-05-11 14:38:23 +02:00
|
|
|
|
* wifi.sta.getap(cfg, function(table))
|
2015-06-01 07:45:43 +02:00
|
|
|
|
* wifi.sta.getap(cfg, format, function(table))
|
2015-05-11 14:38:23 +02:00
|
|
|
|
* Parameters:
|
|
|
|
|
* cfg: table that contains scan configuration
|
2015-06-01 07:45:43 +02:00
|
|
|
|
* Format:Select output table format.
|
|
|
|
|
* 0 for the old format (SSID : Authmode, RSSI, BSSID, Channel) (Default)
|
|
|
|
|
* 1 for the new format (BSSID : SSID, RSSI, Authmode, Channel)
|
2015-05-11 14:38:23 +02:00
|
|
|
|
* function(table): a callback function to receive ap table when scan is done
|
|
|
|
|
this function receive a table, the key is the ssid,
|
|
|
|
|
value is other info in format: authmode,rssi,bssid,channel
|
|
|
|
|
* Returns:
|
|
|
|
|
* nil
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
--original function left intact to preserve backward compatibility
|
|
|
|
|
wifi.sta.getap(function(T) for k,v in pairs(T) do print(k..":"..v) end end)
|
|
|
|
|
|
|
|
|
|
--if no scan configuration is desired cfg can be set to nil or previous example can be used
|
|
|
|
|
wifi.sta.getap(nil, function(T) for k,v in pairs(T) do print(k..":"..v) end end)
|
|
|
|
|
|
|
|
|
|
--scan configuration
|
|
|
|
|
scan_cfg={}
|
|
|
|
|
scan_cfg.ssid="myssid" --if set to nil, ssid is not filtered
|
|
|
|
|
scan_cfg.bssid="AA:AA:AA:AA:AA:AA" --if set to nil, MAC address is not filtered
|
|
|
|
|
scan_cfg.channel=0 --if set to nil, channel will default to 0(scans all channels), if set scan will be faster
|
|
|
|
|
scan_cfg.show_hidden=1 --if set to nil, show_hidden will default to 0
|
|
|
|
|
wifi.sta.getap(scan_cfg, function(T) for k,v in pairs(T) do print(k..":"..v) end end)
|
|
|
|
|
|
|
|
|
|
*/
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_listap( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
if(wifi_get_opmode() == SOFTAP_MODE)
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "Can't list ap in SOFTAP mode" );
|
|
|
|
|
}
|
|
|
|
|
gL = L;
|
2015-05-11 14:12:34 +02:00
|
|
|
|
struct scan_config scan_cfg;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
getap_output_format=0;
|
2015-05-11 14:12:34 +02:00
|
|
|
|
|
|
|
|
|
if (lua_type(L, 1)==LUA_TTABLE)
|
|
|
|
|
{
|
|
|
|
|
char ssid[32];
|
|
|
|
|
char bssid[6];
|
|
|
|
|
uint8 channel=0;
|
|
|
|
|
uint8 show_hidden=0;
|
|
|
|
|
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 *ssidstr = luaL_checklstring( L, -1, &len );
|
|
|
|
|
if(len>32)
|
|
|
|
|
return luaL_error( L, "ssid:<32" );
|
|
|
|
|
c_memset(ssid, 0, 32);
|
|
|
|
|
c_memcpy(ssid, ssidstr, len);
|
|
|
|
|
scan_cfg.ssid=ssid;
|
|
|
|
|
NODE_DBG(scan_cfg.ssid);
|
|
|
|
|
NODE_DBG("\n");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
scan_cfg.ssid=NULL;
|
|
|
|
|
|
|
|
|
|
lua_getfield(L, 1, "bssid");
|
|
|
|
|
if (!lua_isnil(L, -1)){ /* found? */
|
|
|
|
|
if( lua_isstring(L, -1) ) // deal with the ssid string
|
|
|
|
|
{
|
|
|
|
|
const char *macaddr = luaL_checklstring( L, -1, &len );
|
|
|
|
|
if(len!=17)
|
|
|
|
|
return luaL_error( L, "bssid: FF:FF:FF:FF:FF:FF" );
|
|
|
|
|
c_memset(bssid, 0, 6);
|
2015-10-01 07:26:20 +02:00
|
|
|
|
ets_str2macaddr(bssid, macaddr);
|
2015-05-11 14:12:34 +02:00
|
|
|
|
scan_cfg.bssid=bssid;
|
|
|
|
|
NODE_DBG(MACSTR, MAC2STR(scan_cfg.bssid));
|
|
|
|
|
NODE_DBG("\n");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
scan_cfg.bssid=NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lua_getfield(L, 1, "channel");
|
|
|
|
|
if (!lua_isnil(L, -1)){ /* found? */
|
|
|
|
|
if( lua_isnumber(L, -1) ) // deal with the ssid string
|
|
|
|
|
{
|
|
|
|
|
channel = luaL_checknumber( L, -1);
|
|
|
|
|
if(!(channel>=0 && channel<=13))
|
|
|
|
|
return luaL_error( L, "channel: 0 or 1-13" );
|
|
|
|
|
scan_cfg.channel=channel;
|
|
|
|
|
NODE_DBG("%d\n", scan_cfg.channel);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
scan_cfg.channel=0;
|
|
|
|
|
|
|
|
|
|
lua_getfield(L, 1, "show_hidden");
|
|
|
|
|
if (!lua_isnil(L, -1)){ /* found? */
|
|
|
|
|
if( lua_isnumber(L, -1) ) // deal with the ssid string
|
|
|
|
|
{
|
|
|
|
|
show_hidden = luaL_checknumber( L, -1);
|
2015-05-12 02:59:51 +02:00
|
|
|
|
if(show_hidden!=0 && show_hidden!=1)
|
2015-05-11 14:12:34 +02:00
|
|
|
|
return luaL_error( L, "show_hidden: 0 or 1" );
|
|
|
|
|
scan_cfg.show_hidden=show_hidden;
|
2015-05-12 06:02:46 +02:00
|
|
|
|
NODE_DBG("%d\n", scan_cfg.show_hidden);
|
2015-05-11 14:12:34 +02:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
scan_cfg.show_hidden=0;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
if (lua_type(L, 2) == LUA_TFUNCTION || lua_type(L, 2) == LUA_TLIGHTFUNCTION)
|
|
|
|
|
{
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 2);
|
|
|
|
|
}
|
|
|
|
|
lua_pop(L, -4);
|
|
|
|
|
}
|
|
|
|
|
else if (lua_type(L, 1) == LUA_TNUMBER)
|
|
|
|
|
{
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 1);
|
2015-05-11 14:12:34 +02:00
|
|
|
|
}
|
|
|
|
|
else if (lua_type(L, 1) == LUA_TFUNCTION || lua_type(L, 1) == LUA_TLIGHTFUNCTION)
|
|
|
|
|
{
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 1);
|
2015-06-01 06:37:03 +02:00
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 1);
|
2015-05-11 14:12:34 +02:00
|
|
|
|
}
|
|
|
|
|
else if(lua_isnil(L, 1))
|
|
|
|
|
{
|
2015-06-01 06:37:03 +02:00
|
|
|
|
if (lua_type(L, 2) == LUA_TFUNCTION || lua_type(L, 2) == LUA_TLIGHTFUNCTION)
|
|
|
|
|
{
|
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
lua_insert(L, 2);
|
|
|
|
|
}
|
2015-05-11 14:12:34 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-06-01 06:37:03 +02:00
|
|
|
|
if (lua_type(L, 2) == LUA_TNUMBER) //this section changes the output format
|
|
|
|
|
{
|
|
|
|
|
getap_output_format=luaL_checkinteger( L, 2 );
|
|
|
|
|
if ( getap_output_format != 0 && getap_output_format != 1)
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
NODE_DBG("Use alternate output format: %d\n", getap_output_format);
|
|
|
|
|
if (lua_type(L, 3) == LUA_TFUNCTION || lua_type(L, 3) == LUA_TLIGHTFUNCTION)
|
2015-05-11 14:12:34 +02:00
|
|
|
|
{
|
2015-06-01 06:37:03 +02:00
|
|
|
|
lua_pushvalue(L, 3); // copy argument (func) to the top of stack
|
2014-12-22 12:35:05 +01:00
|
|
|
|
if(wifi_scan_succeed != LUA_NOREF)
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_scan_succeed);
|
|
|
|
|
wifi_scan_succeed = luaL_ref(L, LUA_REGISTRYINDEX);
|
2015-05-11 14:12:34 +02:00
|
|
|
|
if (lua_type(L, 1)==LUA_TTABLE)
|
|
|
|
|
{
|
|
|
|
|
wifi_station_scan(&scan_cfg,wifi_scan_done);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
wifi_station_scan(NULL,wifi_scan_done);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-12-22 12:35:05 +01:00
|
|
|
|
if(wifi_scan_succeed != LUA_NOREF)
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_scan_succeed);
|
|
|
|
|
wifi_scan_succeed = LUA_NOREF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Lua: wifi.sta.status()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_station_status( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
uint8_t status = wifi_station_get_connect_status();
|
|
|
|
|
lua_pushinteger( L, status );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 07:12:16 +02:00
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.eventMonStop()
|
|
|
|
|
* Description:
|
|
|
|
|
* Stop wifi station event monitor
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.sta.eventMonStop()
|
|
|
|
|
* wifi.sta.eventMonStop("unreg all")
|
|
|
|
|
* Parameters:
|
|
|
|
|
* "unreg all": unregister all previously registered functions
|
|
|
|
|
* Returns:
|
|
|
|
|
* Nothing.
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
--stop wifi event monitor
|
|
|
|
|
wifi.sta.eventMonStop()
|
|
|
|
|
|
|
|
|
|
--stop wifi event monitor and unregister all callbacks
|
|
|
|
|
wifi.sta.eventMonStop("unreg all")
|
|
|
|
|
*/
|
|
|
|
|
static void wifi_station_event_mon_stop(lua_State* L)
|
|
|
|
|
{
|
|
|
|
|
os_timer_disarm(&wifi_sta_status_timer);
|
|
|
|
|
if(lua_isstring(L,1))
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (c_strcmp(luaL_checkstring(L, 1), "unreg all")==0)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
for (i=0;i<6;i++)
|
|
|
|
|
{
|
|
|
|
|
if(wifi_status_cb_ref[i] != LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_status_cb_ref[i]);
|
|
|
|
|
wifi_status_cb_ref[i] = LUA_NOREF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 06:13:26 +02:00
|
|
|
|
static void wifi_status_cb(int arg)
|
|
|
|
|
{
|
2015-07-14 07:12:16 +02:00
|
|
|
|
if (wifi_get_opmode()==2)
|
|
|
|
|
{
|
|
|
|
|
os_timer_disarm(&wifi_sta_status_timer);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2015-07-14 06:13:26 +02:00
|
|
|
|
int wifi_status=wifi_station_get_connect_status();
|
|
|
|
|
if (wifi_status!=prev_wifi_status)
|
|
|
|
|
{
|
|
|
|
|
if(wifi_status_cb_ref[wifi_status]!=LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
lua_rawgeti(gL, LUA_REGISTRYINDEX, wifi_status_cb_ref[wifi_status]);
|
|
|
|
|
lua_call(gL, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
prev_wifi_status=wifi_status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.eventMonReg()
|
|
|
|
|
* Description:
|
|
|
|
|
* Register callback for wifi station status event
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.sta.eventMonReg(wifi_status, function)
|
|
|
|
|
* wifi.sta.eventMonReg(wifi.status, "unreg") //unregister callback
|
|
|
|
|
* Parameters:
|
|
|
|
|
* wifi_status: wifi status you would like to set callback for
|
|
|
|
|
* Valid wifi states:
|
2015-07-14 07:12:16 +02:00
|
|
|
|
* wifi.STA_IDLE
|
|
|
|
|
* wifi.STA_CONNECTING
|
|
|
|
|
* wifi.STA_WRONGPWD
|
|
|
|
|
* wifi.STA_APNOTFOUND
|
|
|
|
|
* wifi.STA_FAIL
|
|
|
|
|
* wifi.STA_GOTIP
|
2015-07-14 06:13:26 +02:00
|
|
|
|
* function: function to perform
|
|
|
|
|
* "unreg": unregister previously registered function
|
|
|
|
|
* Returns:
|
|
|
|
|
* Nothing.
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
--register callback
|
|
|
|
|
wifi.sta.eventMonReg(0, function() print("STATION_IDLE") end)
|
|
|
|
|
wifi.sta.eventMonReg(1, function() print("STATION_CONNECTING") end)
|
|
|
|
|
wifi.sta.eventMonReg(2, function() print("STATION_WRONG_PASSWORD") end)
|
|
|
|
|
wifi.sta.eventMonReg(3, function() print("STATION_NO_AP_FOUND") end)
|
|
|
|
|
wifi.sta.eventMonReg(4, function() print("STATION_CONNECT_FAIL") end)
|
|
|
|
|
wifi.sta.eventMonReg(5, function() print("STATION_GOT_IP") end)
|
|
|
|
|
|
|
|
|
|
--unregister callback
|
|
|
|
|
wifi.sta.eventMonReg(0, "unreg")
|
|
|
|
|
*/
|
|
|
|
|
static int wifi_station_event_mon_reg(lua_State* L)
|
|
|
|
|
{
|
|
|
|
|
gL=L;
|
|
|
|
|
uint8 id=luaL_checknumber(L, 1);
|
|
|
|
|
if (!(id >= 0 && id <=5))
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "valid wifi status:0-5" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lua_type(L, 2) == LUA_TFUNCTION || lua_type(L, 2) == LUA_TLIGHTFUNCTION)
|
|
|
|
|
{
|
|
|
|
|
lua_pushvalue(L, 2); // copy argument (func) to the top of stack
|
|
|
|
|
if(wifi_status_cb_ref[id] != LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_status_cb_ref[id]);
|
|
|
|
|
}
|
|
|
|
|
wifi_status_cb_ref[id] = luaL_ref(L, LUA_REGISTRYINDEX);
|
|
|
|
|
}
|
|
|
|
|
else if (c_strcmp(luaL_checkstring(L, 2), "unreg")==0)
|
|
|
|
|
{
|
|
|
|
|
if(wifi_status_cb_ref[id] != LUA_NOREF)
|
|
|
|
|
{
|
|
|
|
|
luaL_unref(L, LUA_REGISTRYINDEX, wifi_status_cb_ref[id]);
|
|
|
|
|
wifi_status_cb_ref[id] = LUA_NOREF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* wifi.sta.eventMonStart()
|
|
|
|
|
* Description:
|
|
|
|
|
* Start wifi station event monitor
|
|
|
|
|
* Syntax:
|
|
|
|
|
* wifi.sta.eventMonStart()
|
|
|
|
|
* wifi.sta.eventMonStart(mS)
|
|
|
|
|
* Parameters:
|
|
|
|
|
* mS:interval between checks in milliseconds. defaults to 150 mS if not provided
|
|
|
|
|
* Returns:
|
|
|
|
|
* Nothing.
|
|
|
|
|
*
|
|
|
|
|
* Example:
|
|
|
|
|
--start wifi event monitor with default interval
|
|
|
|
|
wifi.sta.eventMonStart()
|
|
|
|
|
|
|
|
|
|
--start wifi event monitor with 100 mS interval
|
|
|
|
|
wifi.sta.eventMonStart(100)
|
|
|
|
|
*/
|
|
|
|
|
static int wifi_station_event_mon_start(lua_State* L)
|
|
|
|
|
{
|
|
|
|
|
if(wifi_get_opmode() == SOFTAP_MODE)
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "Can't monitor station in SOFTAP mode" );
|
|
|
|
|
}
|
|
|
|
|
if (wifi_status_cb_ref[0]==LUA_NOREF && wifi_status_cb_ref[1]==LUA_NOREF &&
|
|
|
|
|
wifi_status_cb_ref[2]==LUA_NOREF && wifi_status_cb_ref[3]==LUA_NOREF &&
|
|
|
|
|
wifi_status_cb_ref[4]==LUA_NOREF && wifi_status_cb_ref[5]==LUA_NOREF )
|
|
|
|
|
{
|
|
|
|
|
return luaL_error( L, "No callbacks defined" );
|
|
|
|
|
}
|
|
|
|
|
uint32 ms=150;
|
|
|
|
|
if(lua_isnumber(L, 1))
|
|
|
|
|
{
|
|
|
|
|
ms=luaL_checknumber(L, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
os_timer_disarm(&wifi_sta_status_timer);
|
|
|
|
|
os_timer_setfn(&wifi_sta_status_timer, (os_timer_func_t *)wifi_status_cb, NULL);
|
|
|
|
|
os_timer_arm(&wifi_sta_status_timer, ms, 1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: wifi.ap.getmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_ap_getmac( lua_State* L ){
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return wifi_getmac(L, SOFTAP_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
// Lua: wifi.ap.setmac()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_ap_setmac( lua_State* L ){
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return wifi_setmac(L, SOFTAP_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: wifi.ap.getip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_ap_getip( lua_State* L ){
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return wifi_getip(L, SOFTAP_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
// Lua: wifi.ap.setip()
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_ap_setip( lua_State* L ){
|
2014-12-29 14:57:37 +01:00
|
|
|
|
return wifi_setip(L, SOFTAP_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-09 14:18:27 +01:00
|
|
|
|
// Lua: wifi.ap.getbroadcast()
|
|
|
|
|
static int wifi_ap_getbroadcast( lua_State* L ){
|
|
|
|
|
return wifi_getbroadcast(L, SOFTAP_IF);
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-27 06:30:36 +02:00
|
|
|
|
// Lua: wifi.ap.getconfig()
|
|
|
|
|
static int wifi_ap_getconfig( lua_State* L )
|
|
|
|
|
{
|
|
|
|
|
struct softap_config config;
|
|
|
|
|
wifi_softap_get_config(&config);
|
|
|
|
|
lua_pushstring( L, config.ssid );
|
2015-08-31 17:53:38 +02:00
|
|
|
|
if(config.authmode == AUTH_OPEN)
|
2015-06-27 06:30:36 +02:00
|
|
|
|
lua_pushnil(L);
|
|
|
|
|
else
|
|
|
|
|
lua_pushstring( L, config.password );
|
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// Lua: wifi.ap.config(table)
|
2015-01-05 03:09:51 +01:00
|
|
|
|
static int wifi_ap_config( lua_State* L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
if (!lua_istable(L, 1))
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
struct softap_config config;
|
|
|
|
|
wifi_softap_get_config(&config);
|
|
|
|
|
|
|
|
|
|
size_t len;
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
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 );
|
2015-05-11 14:06:48 +02:00
|
|
|
|
if(len<1 || len>32 || ssid == NULL)
|
|
|
|
|
return luaL_error( L, "ssid:1~32" );
|
2014-12-22 12:35:05 +01:00
|
|
|
|
c_memset(config.ssid, 0, 32);
|
|
|
|
|
c_memcpy(config.ssid, ssid, len);
|
|
|
|
|
NODE_DBG(config.ssid);
|
|
|
|
|
NODE_DBG("\n");
|
2015-05-11 14:06:48 +02:00
|
|
|
|
config.ssid_len = len;
|
|
|
|
|
config.ssid_hidden = 0;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else
|
2015-05-11 14:06:48 +02:00
|
|
|
|
return luaL_error( L, "ssid required" );
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
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 );
|
2015-05-11 14:06:48 +02:00
|
|
|
|
if(len<8 || len>64 || pwd == NULL)
|
|
|
|
|
return luaL_error( L, "pwd:8~64" );
|
2014-12-22 12:35:05 +01:00
|
|
|
|
c_memset(config.password, 0, 64);
|
|
|
|
|
c_memcpy(config.password, pwd, len);
|
|
|
|
|
NODE_DBG(config.password);
|
|
|
|
|
NODE_DBG("\n");
|
2015-05-11 14:06:48 +02:00
|
|
|
|
config.authmode = AUTH_WPA_WPA2_PSK;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return luaL_error( L, "wrong arg type" );
|
|
|
|
|
}
|
|
|
|
|
else{
|
|
|
|
|
config.authmode = AUTH_OPEN;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
lua_getfield(L, 1, "auth");
|
|
|
|
|
if (!lua_isnil(L, -1))
|
|
|
|
|
{
|
|
|
|
|
config.authmode = (uint8_t)luaL_checkinteger(L, -1);
|
2015-06-01 06:37:03 +02:00
|
|
|
|
NODE_DBG("%d\n", config.authmode);
|
2015-05-11 14:06:48 +02:00
|
|
|
|
}
|
|
|
|
|
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;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
NODE_DBG("%d\n", config.channel);
|
2015-05-11 14:06:48 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
config.channel = 6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lua_getfield(L, 1, "hidden");
|
|
|
|
|
if (!lua_isnil(L, -1))
|
|
|
|
|
{
|
|
|
|
|
config.ssid_hidden = (uint8_t)luaL_checkinteger(L, -1);
|
2015-06-01 06:37:03 +02:00
|
|
|
|
NODE_DBG("%d\n", config.ssid_hidden);
|
2015-05-11 14:06:48 +02:00
|
|
|
|
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;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
NODE_DBG("%d\n", config.max_connection);
|
2015-05-11 14:06:48 +02:00
|
|
|
|
}
|
|
|
|
|
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;
|
2015-06-01 06:37:03 +02:00
|
|
|
|
NODE_DBG("%d\n", config.beacon_interval);
|
2015-05-11 14:06:48 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
config.beacon_interval = 100;
|
|
|
|
|
}
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
wifi_softap_set_config(&config);
|
|
|
|
|
// system_restart();
|
2015-05-11 14:06:48 +02:00
|
|
|
|
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" );
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
lease.start_ip.addr = ip;
|
2015-05-11 14:06:48 +02:00
|
|
|
|
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;
|
2014-12-22 12:35:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Module function map
|
|
|
|
|
#define MIN_OPT_LEVEL 2
|
|
|
|
|
#include "lrodefs.h"
|
|
|
|
|
static const LUA_REG_TYPE wifi_station_map[] =
|
|
|
|
|
{
|
2015-05-09 10:50:35 +02:00
|
|
|
|
{ LSTRKEY( "getconfig" ), LFUNCVAL ( wifi_station_getconfig ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "config" ), LFUNCVAL ( wifi_station_config ) },
|
|
|
|
|
{ LSTRKEY( "connect" ), LFUNCVAL ( wifi_station_connect4lua ) },
|
|
|
|
|
{ LSTRKEY( "disconnect" ), LFUNCVAL ( wifi_station_disconnect4lua ) },
|
|
|
|
|
{ LSTRKEY( "autoconnect" ), LFUNCVAL ( wifi_station_setauto ) },
|
|
|
|
|
{ LSTRKEY( "getip" ), LFUNCVAL ( wifi_station_getip ) },
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "setip" ), LFUNCVAL ( wifi_station_setip ) },
|
2015-01-09 14:18:27 +01:00
|
|
|
|
{ LSTRKEY( "getbroadcast" ), LFUNCVAL ( wifi_station_getbroadcast) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "getmac" ), LFUNCVAL ( wifi_station_getmac ) },
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "setmac" ), LFUNCVAL ( wifi_station_setmac ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "getap" ), LFUNCVAL ( wifi_station_listap ) },
|
|
|
|
|
{ LSTRKEY( "status" ), LFUNCVAL ( wifi_station_status ) },
|
2015-07-14 06:13:26 +02:00
|
|
|
|
{ LSTRKEY( "eventMonReg" ), LFUNCVAL ( wifi_station_event_mon_reg ) },
|
|
|
|
|
{ LSTRKEY( "eventMonStart" ), LFUNCVAL ( wifi_station_event_mon_start ) },
|
|
|
|
|
{ LSTRKEY( "eventMonStop" ), LFUNCVAL ( wifi_station_event_mon_stop ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LNILKEY, LNILVAL }
|
|
|
|
|
};
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
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 }
|
|
|
|
|
};
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
static const LUA_REG_TYPE wifi_ap_map[] =
|
|
|
|
|
{
|
|
|
|
|
{ LSTRKEY( "config" ), LFUNCVAL( wifi_ap_config ) },
|
|
|
|
|
{ LSTRKEY( "getip" ), LFUNCVAL ( wifi_ap_getip ) },
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "setip" ), LFUNCVAL ( wifi_ap_setip ) },
|
2015-01-09 14:18:27 +01:00
|
|
|
|
{ LSTRKEY( "getbroadcast" ), LFUNCVAL ( wifi_ap_getbroadcast) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "getmac" ), LFUNCVAL ( wifi_ap_getmac ) },
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "setmac" ), LFUNCVAL ( wifi_ap_setmac ) },
|
2015-05-11 14:06:48 +02:00
|
|
|
|
{ LSTRKEY( "getclient" ), LFUNCVAL ( wifi_ap_listclient ) },
|
2015-07-10 05:59:41 +02:00
|
|
|
|
{ LSTRKEY( "getconfig" ), LFUNCVAL( wifi_ap_getconfig ) },
|
2015-05-11 14:06:48 +02:00
|
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
|
{ LSTRKEY( "dhcp" ), LROVAL( wifi_ap_dhcp_map ) },
|
|
|
|
|
|
|
|
|
|
// { LSTRKEY( "__metatable" ), LROVAL( wifi_ap_map ) },
|
|
|
|
|
#endif
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LNILKEY, LNILVAL }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const LUA_REG_TYPE wifi_map[] =
|
|
|
|
|
{
|
|
|
|
|
{ LSTRKEY( "setmode" ), LFUNCVAL( wifi_setmode ) },
|
|
|
|
|
{ LSTRKEY( "getmode" ), LFUNCVAL( wifi_getmode ) },
|
2015-05-23 04:42:21 +02:00
|
|
|
|
{ LSTRKEY( "getchannel" ), LFUNCVAL( wifi_getchannel ) },
|
2015-04-27 05:03:44 +02:00
|
|
|
|
{ LSTRKEY( "setphymode" ), LFUNCVAL( wifi_setphymode ) },
|
|
|
|
|
{ LSTRKEY( "getphymode" ), LFUNCVAL( wifi_getphymode ) },
|
2015-11-04 02:23:43 +01:00
|
|
|
|
{ LSTRKEY( "sleep" ), LFUNCVAL( wifi_sleep ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "startsmart" ), LFUNCVAL( wifi_start_smart ) },
|
|
|
|
|
{ LSTRKEY( "stopsmart" ), LFUNCVAL( wifi_exit_smart ) },
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "sleeptype" ), LFUNCVAL( wifi_sleeptype ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
|
{ LSTRKEY( "sta" ), LROVAL( wifi_station_map ) },
|
|
|
|
|
{ LSTRKEY( "ap" ), LROVAL( wifi_ap_map ) },
|
|
|
|
|
|
2015-11-04 03:06:41 +01:00
|
|
|
|
{ LSTRKEY( "NULLMODE" ), LNUMVAL( NULL_MODE ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{ LSTRKEY( "STATION" ), LNUMVAL( STATION_MODE ) },
|
|
|
|
|
{ LSTRKEY( "SOFTAP" ), LNUMVAL( SOFTAP_MODE ) },
|
|
|
|
|
{ LSTRKEY( "STATIONAP" ), LNUMVAL( STATIONAP_MODE ) },
|
|
|
|
|
|
2015-10-01 07:26:20 +02:00
|
|
|
|
{ LSTRKEY( "PHYMODE_B" ), LNUMVAL( PHY_MODE_11B ) },
|
|
|
|
|
{ LSTRKEY( "PHYMODE_G" ), LNUMVAL( PHY_MODE_11G ) },
|
|
|
|
|
{ LSTRKEY( "PHYMODE_N" ), LNUMVAL( PHY_MODE_11N ) },
|
2015-04-29 09:06:06 +02:00
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
{ LSTRKEY( "NONE_SLEEP" ), LNUMVAL( NONE_SLEEP_T ) },
|
|
|
|
|
{ LSTRKEY( "LIGHT_SLEEP" ), LNUMVAL( LIGHT_SLEEP_T ) },
|
|
|
|
|
{ LSTRKEY( "MODEM_SLEEP" ), LNUMVAL( MODEM_SLEEP_T ) },
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
{ 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 ) },
|
|
|
|
|
|
2015-07-14 06:13:26 +02:00
|
|
|
|
{ LSTRKEY( "STA_IDLE" ), LNUMVAL( STATION_IDLE ) },
|
|
|
|
|
{ LSTRKEY( "STA_CONNECTING" ), LNUMVAL( STATION_CONNECTING ) },
|
|
|
|
|
{ LSTRKEY( "STA_WRONGPWD" ), LNUMVAL( STATION_WRONG_PASSWORD ) },
|
|
|
|
|
{ LSTRKEY( "STA_APNOTFOUND" ), LNUMVAL( STATION_NO_AP_FOUND ) },
|
|
|
|
|
{ LSTRKEY( "STA_FAIL" ), LNUMVAL( STATION_CONNECT_FAIL ) },
|
|
|
|
|
{ LSTRKEY( "STA_GOTIP" ), LNUMVAL( STATION_GOT_IP ) },
|
2014-12-22 12:35:05 +01:00
|
|
|
|
|
|
|
|
|
{ LSTRKEY( "__metatable" ), LROVAL( wifi_map ) },
|
|
|
|
|
#endif
|
|
|
|
|
{ LNILKEY, LNILVAL }
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-05 03:09:51 +01:00
|
|
|
|
LUALIB_API int luaopen_wifi( lua_State *L )
|
2014-12-22 12:35:05 +01:00
|
|
|
|
{
|
|
|
|
|
#if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
|
return 0;
|
|
|
|
|
#else // #if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
|
luaL_register( L, AUXLIB_WIFI, wifi_map );
|
|
|
|
|
|
|
|
|
|
// Set it as its own metatable
|
|
|
|
|
lua_pushvalue( L, -1 );
|
|
|
|
|
lua_setmetatable( L, -2 );
|
|
|
|
|
|
|
|
|
|
// Module constants
|
|
|
|
|
// MOD_REG_NUMBER( L, "NULLMODE", NULL_MODE );
|
|
|
|
|
MOD_REG_NUMBER( L, "STATION", STATION_MODE );
|
|
|
|
|
MOD_REG_NUMBER( L, "SOFTAP", SOFTAP_MODE );
|
|
|
|
|
MOD_REG_NUMBER( L, "STATIONAP", STATIONAP_MODE );
|
|
|
|
|
|
2014-12-29 14:57:37 +01:00
|
|
|
|
MOD_REG_NUMBER( L, "NONE_SLEEP", NONE_SLEEP_T );
|
|
|
|
|
MOD_REG_NUMBER( L, "LIGHT_SLEEP", LIGHT_SLEEP_T );
|
|
|
|
|
MOD_REG_NUMBER( L, "MODEM_SLEEP", MODEM_SLEEP_T );
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
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 );
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
// 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 );
|
|
|
|
|
// MOD_REG_NUMBER( L, "STA_APNOTFOUND", STATION_NO_AP_FOUND );
|
|
|
|
|
// MOD_REG_NUMBER( L, "STA_FAIL", STATION_CONNECT_FAIL );
|
|
|
|
|
// MOD_REG_NUMBER( L, "STA_GOTIP", STATION_GOT_IP );
|
|
|
|
|
|
|
|
|
|
// Setup the new tables (station and ap) inside wifi
|
|
|
|
|
lua_newtable( L );
|
|
|
|
|
luaL_register( L, NULL, wifi_station_map );
|
|
|
|
|
lua_setfield( L, -2, "sta" );
|
|
|
|
|
|
|
|
|
|
lua_newtable( L );
|
|
|
|
|
luaL_register( L, NULL, wifi_ap_map );
|
|
|
|
|
lua_setfield( L, -2, "ap" );
|
|
|
|
|
|
2015-05-11 14:06:48 +02:00
|
|
|
|
// Setup the new table (dhcp) inside ap
|
|
|
|
|
lua_newtable( L );
|
|
|
|
|
luaL_register( L, NULL, wifi_ap_dhcp_map );
|
|
|
|
|
lua_setfield( L, -1, "dhcp" );
|
|
|
|
|
|
2014-12-22 12:35:05 +01:00
|
|
|
|
return 1;
|
|
|
|
|
#endif // #if LUA_OPTIMIZE_MEMORY > 0
|
|
|
|
|
}
|