endless bandsteering first try
This commit is contained in:
parent
0decaae1eb
commit
4a303c20af
|
@ -9,6 +9,8 @@ PKG_LICENSE:=APGL
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
|
||||||
|
TARGET_CFLAGS += -DDEBUG
|
||||||
|
|
||||||
define Package/wifictld/Default
|
define Package/wifictld/Default
|
||||||
SECTION:=net
|
SECTION:=net
|
||||||
CATEGORY:=Network
|
CATEGORY:=Network
|
||||||
|
@ -21,7 +23,6 @@ define Package/wifictld
|
||||||
$(call Package/wifictld/Default)
|
$(call Package/wifictld/Default)
|
||||||
TITLE+= (full)
|
TITLE+= (full)
|
||||||
VARIANT:=full
|
VARIANT:=full
|
||||||
TARGET_CFLAGS += -DDEBUG
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Package/wifictld-mini
|
define Package/wifictld-mini
|
||||||
|
@ -42,7 +43,7 @@ endef
|
||||||
|
|
||||||
define Build/Prepare
|
define Build/Prepare
|
||||||
mkdir -p $(PKG_BUILD_DIR)
|
mkdir -p $(PKG_BUILD_DIR)
|
||||||
cp ./src/* $(PKG_BUILD_DIR)
|
cp -r ./src/* $(PKG_BUILD_DIR)
|
||||||
$(Build/Patch)
|
$(Build/Patch)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
all: wifictld
|
all: hostapd wifictld
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -Wall
|
CFLAGS = -Wall
|
||||||
|
@ -9,7 +9,10 @@ DEPS = $(wildcard *.h)
|
||||||
|
|
||||||
SRC = $(wildcard *.c)
|
SRC = $(wildcard *.c)
|
||||||
|
|
||||||
OBJ = $(patsubst %.c, %.o, $(SRC))
|
OBJ = $(patsubst %.c, %.o, $(SRC)) hostapd/common.o
|
||||||
|
|
||||||
|
hostapd:
|
||||||
|
$(MAKE) -C hostapd
|
||||||
|
|
||||||
%.o: %.c $(DEPS)
|
%.o: %.c $(DEPS)
|
||||||
$(CC) -c -o $@ $< $(CFLAGS)
|
$(CC) -c -o $@ $< $(CFLAGS)
|
||||||
|
@ -20,4 +23,5 @@ wifictld: $(OBJ)
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
$(MAKE) -C hostapd clean
|
||||||
rm -f wifictld *.o
|
rm -f wifictld *.o
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
|
||||||
|
all: common.o
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
CFLAGS = -Wall
|
||||||
|
LDFLAGS =
|
||||||
|
|
||||||
|
DEPS = $(wildcard *.h)
|
||||||
|
|
||||||
|
SRC = $(wildcard *.c)
|
||||||
|
|
||||||
|
OBJ = $(patsubst %.c, %.o, $(SRC))
|
||||||
|
|
||||||
|
%.o: %.c $(DEPS)
|
||||||
|
$(CC) -c -o $@ $< $(CFLAGS)
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f *.o
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,590 @@
|
||||||
|
/*
|
||||||
|
* wpa_supplicant/hostapd / common helper functions, etc.
|
||||||
|
* Copyright (c) 2002-2007, Jouni Malinen <j@w1.fi>
|
||||||
|
*
|
||||||
|
* This software may be distributed under the terms of the BSD license.
|
||||||
|
* See README for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef COMMON_H
|
||||||
|
#define COMMON_H
|
||||||
|
|
||||||
|
#include "os.h"
|
||||||
|
|
||||||
|
#if defined(__linux__) || defined(__GLIBC__)
|
||||||
|
#include <endian.h>
|
||||||
|
#include <byteswap.h>
|
||||||
|
#endif /* __linux__ */
|
||||||
|
|
||||||
|
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
|
||||||
|
defined(__OpenBSD__)
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/endian.h>
|
||||||
|
#define __BYTE_ORDER _BYTE_ORDER
|
||||||
|
#define __LITTLE_ENDIAN _LITTLE_ENDIAN
|
||||||
|
#define __BIG_ENDIAN _BIG_ENDIAN
|
||||||
|
#ifdef __OpenBSD__
|
||||||
|
#define bswap_16 swap16
|
||||||
|
#define bswap_32 swap32
|
||||||
|
#define bswap_64 swap64
|
||||||
|
#else /* __OpenBSD__ */
|
||||||
|
#define bswap_16 bswap16
|
||||||
|
#define bswap_32 bswap32
|
||||||
|
#define bswap_64 bswap64
|
||||||
|
#endif /* __OpenBSD__ */
|
||||||
|
#endif /* defined(__FreeBSD__) || defined(__NetBSD__) ||
|
||||||
|
* defined(__DragonFly__) || defined(__OpenBSD__) */
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <machine/endian.h>
|
||||||
|
#define __BYTE_ORDER _BYTE_ORDER
|
||||||
|
#define __LITTLE_ENDIAN _LITTLE_ENDIAN
|
||||||
|
#define __BIG_ENDIAN _BIG_ENDIAN
|
||||||
|
static inline unsigned short bswap_16(unsigned short v)
|
||||||
|
{
|
||||||
|
return ((v & 0xff) << 8) | (v >> 8);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int bswap_32(unsigned int v)
|
||||||
|
{
|
||||||
|
return ((v & 0xff) << 24) | ((v & 0xff00) << 8) |
|
||||||
|
((v & 0xff0000) >> 8) | (v >> 24);
|
||||||
|
}
|
||||||
|
#endif /* __APPLE__ */
|
||||||
|
|
||||||
|
#ifdef __rtems__
|
||||||
|
#include <rtems/endian.h>
|
||||||
|
#define __BYTE_ORDER BYTE_ORDER
|
||||||
|
#define __LITTLE_ENDIAN LITTLE_ENDIAN
|
||||||
|
#define __BIG_ENDIAN BIG_ENDIAN
|
||||||
|
#define bswap_16 CPU_swap_u16
|
||||||
|
#define bswap_32 CPU_swap_u32
|
||||||
|
#endif /* __rtems__ */
|
||||||
|
|
||||||
|
#ifdef CONFIG_NATIVE_WINDOWS
|
||||||
|
#include <winsock.h>
|
||||||
|
|
||||||
|
typedef int socklen_t;
|
||||||
|
|
||||||
|
#ifndef MSG_DONTWAIT
|
||||||
|
#define MSG_DONTWAIT 0 /* not supported */
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
#define inline __inline
|
||||||
|
|
||||||
|
#undef vsnprintf
|
||||||
|
#define vsnprintf _vsnprintf
|
||||||
|
#undef close
|
||||||
|
#define close closesocket
|
||||||
|
#endif /* _MSC_VER */
|
||||||
|
|
||||||
|
|
||||||
|
/* Define platform specific integer types */
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
typedef UINT64 u64;
|
||||||
|
typedef UINT32 u32;
|
||||||
|
typedef UINT16 u16;
|
||||||
|
typedef UINT8 u8;
|
||||||
|
typedef INT64 s64;
|
||||||
|
typedef INT32 s32;
|
||||||
|
typedef INT16 s16;
|
||||||
|
typedef INT8 s8;
|
||||||
|
#define WPA_TYPES_DEFINED
|
||||||
|
#endif /* _MSC_VER */
|
||||||
|
|
||||||
|
#ifdef __vxworks
|
||||||
|
typedef unsigned long long u64;
|
||||||
|
typedef UINT32 u32;
|
||||||
|
typedef UINT16 u16;
|
||||||
|
typedef UINT8 u8;
|
||||||
|
typedef long long s64;
|
||||||
|
typedef INT32 s32;
|
||||||
|
typedef INT16 s16;
|
||||||
|
typedef INT8 s8;
|
||||||
|
#define WPA_TYPES_DEFINED
|
||||||
|
#endif /* __vxworks */
|
||||||
|
|
||||||
|
#ifndef WPA_TYPES_DEFINED
|
||||||
|
#ifdef CONFIG_USE_INTTYPES_H
|
||||||
|
#include <inttypes.h>
|
||||||
|
#else
|
||||||
|
#include <stdint.h>
|
||||||
|
#endif
|
||||||
|
typedef uint64_t u64;
|
||||||
|
typedef uint32_t u32;
|
||||||
|
typedef uint16_t u16;
|
||||||
|
typedef uint8_t u8;
|
||||||
|
typedef int64_t s64;
|
||||||
|
typedef int32_t s32;
|
||||||
|
typedef int16_t s16;
|
||||||
|
typedef int8_t s8;
|
||||||
|
#define WPA_TYPES_DEFINED
|
||||||
|
#endif /* !WPA_TYPES_DEFINED */
|
||||||
|
|
||||||
|
|
||||||
|
/* Define platform specific byte swapping macros */
|
||||||
|
|
||||||
|
#if defined(__CYGWIN__) || defined(CONFIG_NATIVE_WINDOWS)
|
||||||
|
|
||||||
|
static inline unsigned short wpa_swap_16(unsigned short v)
|
||||||
|
{
|
||||||
|
return ((v & 0xff) << 8) | (v >> 8);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline unsigned int wpa_swap_32(unsigned int v)
|
||||||
|
{
|
||||||
|
return ((v & 0xff) << 24) | ((v & 0xff00) << 8) |
|
||||||
|
((v & 0xff0000) >> 8) | (v >> 24);
|
||||||
|
}
|
||||||
|
|
||||||
|
#define le_to_host16(n) (n)
|
||||||
|
#define host_to_le16(n) (n)
|
||||||
|
#define be_to_host16(n) wpa_swap_16(n)
|
||||||
|
#define host_to_be16(n) wpa_swap_16(n)
|
||||||
|
#define le_to_host32(n) (n)
|
||||||
|
#define host_to_le32(n) (n)
|
||||||
|
#define be_to_host32(n) wpa_swap_32(n)
|
||||||
|
#define host_to_be32(n) wpa_swap_32(n)
|
||||||
|
#define host_to_le64(n) (n)
|
||||||
|
|
||||||
|
#define WPA_BYTE_SWAP_DEFINED
|
||||||
|
|
||||||
|
#endif /* __CYGWIN__ || CONFIG_NATIVE_WINDOWS */
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef WPA_BYTE_SWAP_DEFINED
|
||||||
|
|
||||||
|
#ifndef __BYTE_ORDER
|
||||||
|
#ifndef __LITTLE_ENDIAN
|
||||||
|
#ifndef __BIG_ENDIAN
|
||||||
|
#define __LITTLE_ENDIAN 1234
|
||||||
|
#define __BIG_ENDIAN 4321
|
||||||
|
#if defined(sparc)
|
||||||
|
#define __BYTE_ORDER __BIG_ENDIAN
|
||||||
|
#endif
|
||||||
|
#endif /* __BIG_ENDIAN */
|
||||||
|
#endif /* __LITTLE_ENDIAN */
|
||||||
|
#endif /* __BYTE_ORDER */
|
||||||
|
|
||||||
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
||||||
|
#define le_to_host16(n) ((__force u16) (le16) (n))
|
||||||
|
#define host_to_le16(n) ((__force le16) (u16) (n))
|
||||||
|
#define be_to_host16(n) bswap_16((__force u16) (be16) (n))
|
||||||
|
#define host_to_be16(n) ((__force be16) bswap_16((n)))
|
||||||
|
#define le_to_host32(n) ((__force u32) (le32) (n))
|
||||||
|
#define host_to_le32(n) ((__force le32) (u32) (n))
|
||||||
|
#define be_to_host32(n) bswap_32((__force u32) (be32) (n))
|
||||||
|
#define host_to_be32(n) ((__force be32) bswap_32((n)))
|
||||||
|
#define le_to_host64(n) ((__force u64) (le64) (n))
|
||||||
|
#define host_to_le64(n) ((__force le64) (u64) (n))
|
||||||
|
#define be_to_host64(n) bswap_64((__force u64) (be64) (n))
|
||||||
|
#define host_to_be64(n) ((__force be64) bswap_64((n)))
|
||||||
|
#elif __BYTE_ORDER == __BIG_ENDIAN
|
||||||
|
#define le_to_host16(n) bswap_16(n)
|
||||||
|
#define host_to_le16(n) bswap_16(n)
|
||||||
|
#define be_to_host16(n) (n)
|
||||||
|
#define host_to_be16(n) (n)
|
||||||
|
#define le_to_host32(n) bswap_32(n)
|
||||||
|
#define host_to_le32(n) bswap_32(n)
|
||||||
|
#define be_to_host32(n) (n)
|
||||||
|
#define host_to_be32(n) (n)
|
||||||
|
#define le_to_host64(n) bswap_64(n)
|
||||||
|
#define host_to_le64(n) bswap_64(n)
|
||||||
|
#define be_to_host64(n) (n)
|
||||||
|
#define host_to_be64(n) (n)
|
||||||
|
#ifndef WORDS_BIGENDIAN
|
||||||
|
#define WORDS_BIGENDIAN
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#error Could not determine CPU byte order
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define WPA_BYTE_SWAP_DEFINED
|
||||||
|
#endif /* !WPA_BYTE_SWAP_DEFINED */
|
||||||
|
|
||||||
|
|
||||||
|
/* Macros for handling unaligned memory accesses */
|
||||||
|
|
||||||
|
static inline u16 WPA_GET_BE16(const u8 *a)
|
||||||
|
{
|
||||||
|
return (a[0] << 8) | a[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_BE16(u8 *a, u16 val)
|
||||||
|
{
|
||||||
|
a[0] = val >> 8;
|
||||||
|
a[1] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u16 WPA_GET_LE16(const u8 *a)
|
||||||
|
{
|
||||||
|
return (a[1] << 8) | a[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_LE16(u8 *a, u16 val)
|
||||||
|
{
|
||||||
|
a[1] = val >> 8;
|
||||||
|
a[0] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u32 WPA_GET_BE24(const u8 *a)
|
||||||
|
{
|
||||||
|
return (a[0] << 16) | (a[1] << 8) | a[2];
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_BE24(u8 *a, u32 val)
|
||||||
|
{
|
||||||
|
a[0] = (val >> 16) & 0xff;
|
||||||
|
a[1] = (val >> 8) & 0xff;
|
||||||
|
a[2] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u32 WPA_GET_BE32(const u8 *a)
|
||||||
|
{
|
||||||
|
return ((u32) a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3];
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_BE32(u8 *a, u32 val)
|
||||||
|
{
|
||||||
|
a[0] = (val >> 24) & 0xff;
|
||||||
|
a[1] = (val >> 16) & 0xff;
|
||||||
|
a[2] = (val >> 8) & 0xff;
|
||||||
|
a[3] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u32 WPA_GET_LE32(const u8 *a)
|
||||||
|
{
|
||||||
|
return ((u32) a[3] << 24) | (a[2] << 16) | (a[1] << 8) | a[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_LE32(u8 *a, u32 val)
|
||||||
|
{
|
||||||
|
a[3] = (val >> 24) & 0xff;
|
||||||
|
a[2] = (val >> 16) & 0xff;
|
||||||
|
a[1] = (val >> 8) & 0xff;
|
||||||
|
a[0] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u64 WPA_GET_BE64(const u8 *a)
|
||||||
|
{
|
||||||
|
return (((u64) a[0]) << 56) | (((u64) a[1]) << 48) |
|
||||||
|
(((u64) a[2]) << 40) | (((u64) a[3]) << 32) |
|
||||||
|
(((u64) a[4]) << 24) | (((u64) a[5]) << 16) |
|
||||||
|
(((u64) a[6]) << 8) | ((u64) a[7]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_BE64(u8 *a, u64 val)
|
||||||
|
{
|
||||||
|
a[0] = val >> 56;
|
||||||
|
a[1] = val >> 48;
|
||||||
|
a[2] = val >> 40;
|
||||||
|
a[3] = val >> 32;
|
||||||
|
a[4] = val >> 24;
|
||||||
|
a[5] = val >> 16;
|
||||||
|
a[6] = val >> 8;
|
||||||
|
a[7] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline u64 WPA_GET_LE64(const u8 *a)
|
||||||
|
{
|
||||||
|
return (((u64) a[7]) << 56) | (((u64) a[6]) << 48) |
|
||||||
|
(((u64) a[5]) << 40) | (((u64) a[4]) << 32) |
|
||||||
|
(((u64) a[3]) << 24) | (((u64) a[2]) << 16) |
|
||||||
|
(((u64) a[1]) << 8) | ((u64) a[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void WPA_PUT_LE64(u8 *a, u64 val)
|
||||||
|
{
|
||||||
|
a[7] = val >> 56;
|
||||||
|
a[6] = val >> 48;
|
||||||
|
a[5] = val >> 40;
|
||||||
|
a[4] = val >> 32;
|
||||||
|
a[3] = val >> 24;
|
||||||
|
a[2] = val >> 16;
|
||||||
|
a[1] = val >> 8;
|
||||||
|
a[0] = val & 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef ETH_ALEN
|
||||||
|
#define ETH_ALEN 6
|
||||||
|
#endif
|
||||||
|
#ifndef ETH_HLEN
|
||||||
|
#define ETH_HLEN 14
|
||||||
|
#endif
|
||||||
|
#ifndef IFNAMSIZ
|
||||||
|
#define IFNAMSIZ 16
|
||||||
|
#endif
|
||||||
|
#ifndef ETH_P_ALL
|
||||||
|
#define ETH_P_ALL 0x0003
|
||||||
|
#endif
|
||||||
|
#ifndef ETH_P_IP
|
||||||
|
#define ETH_P_IP 0x0800
|
||||||
|
#endif
|
||||||
|
#ifndef ETH_P_80211_ENCAP
|
||||||
|
#define ETH_P_80211_ENCAP 0x890d /* TDLS comes under this category */
|
||||||
|
#endif
|
||||||
|
#ifndef ETH_P_PAE
|
||||||
|
#define ETH_P_PAE 0x888E /* Port Access Entity (IEEE 802.1X) */
|
||||||
|
#endif /* ETH_P_PAE */
|
||||||
|
#ifndef ETH_P_EAPOL
|
||||||
|
#define ETH_P_EAPOL ETH_P_PAE
|
||||||
|
#endif /* ETH_P_EAPOL */
|
||||||
|
#ifndef ETH_P_RSN_PREAUTH
|
||||||
|
#define ETH_P_RSN_PREAUTH 0x88c7
|
||||||
|
#endif /* ETH_P_RSN_PREAUTH */
|
||||||
|
#ifndef ETH_P_RRB
|
||||||
|
#define ETH_P_RRB 0x890D
|
||||||
|
#endif /* ETH_P_RRB */
|
||||||
|
#ifndef ETH_P_OUI
|
||||||
|
#define ETH_P_OUI 0x88B7
|
||||||
|
#endif /* ETH_P_OUI */
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef __GNUC__
|
||||||
|
#define PRINTF_FORMAT(a,b) __attribute__ ((format (printf, (a), (b))))
|
||||||
|
#define STRUCT_PACKED __attribute__ ((packed))
|
||||||
|
#else
|
||||||
|
#define PRINTF_FORMAT(a,b)
|
||||||
|
#define STRUCT_PACKED
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifdef CONFIG_ANSI_C_EXTRA
|
||||||
|
|
||||||
|
#if !defined(_MSC_VER) || _MSC_VER < 1400
|
||||||
|
/* snprintf - used in number of places; sprintf() is _not_ a good replacement
|
||||||
|
* due to possible buffer overflow; see, e.g.,
|
||||||
|
* http://www.ijs.si/software/snprintf/ for portable implementation of
|
||||||
|
* snprintf. */
|
||||||
|
int snprintf(char *str, size_t size, const char *format, ...);
|
||||||
|
|
||||||
|
/* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
|
||||||
|
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
|
||||||
|
#endif /* !defined(_MSC_VER) || _MSC_VER < 1400 */
|
||||||
|
|
||||||
|
/* getopt - only used in main.c */
|
||||||
|
int getopt(int argc, char *const argv[], const char *optstring);
|
||||||
|
extern char *optarg;
|
||||||
|
extern int optind;
|
||||||
|
|
||||||
|
#ifndef CONFIG_NO_SOCKLEN_T_TYPEDEF
|
||||||
|
#ifndef __socklen_t_defined
|
||||||
|
typedef int socklen_t;
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* inline - define as __inline or just define it to be empty, if needed */
|
||||||
|
#ifdef CONFIG_NO_INLINE
|
||||||
|
#define inline
|
||||||
|
#else
|
||||||
|
#define inline __inline
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __func__
|
||||||
|
#define __func__ "__func__ not defined"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef bswap_16
|
||||||
|
#define bswap_16(a) ((((u16) (a) << 8) & 0xff00) | (((u16) (a) >> 8) & 0xff))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef bswap_32
|
||||||
|
#define bswap_32(a) ((((u32) (a) << 24) & 0xff000000) | \
|
||||||
|
(((u32) (a) << 8) & 0xff0000) | \
|
||||||
|
(((u32) (a) >> 8) & 0xff00) | \
|
||||||
|
(((u32) (a) >> 24) & 0xff))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef MSG_DONTWAIT
|
||||||
|
#define MSG_DONTWAIT 0
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef _WIN32_WCE
|
||||||
|
void perror(const char *s);
|
||||||
|
#endif /* _WIN32_WCE */
|
||||||
|
|
||||||
|
#endif /* CONFIG_ANSI_C_EXTRA */
|
||||||
|
|
||||||
|
#ifndef MAC2STR
|
||||||
|
#define MAC2STR(a) (a)[0], (a)[1], (a)[2], (a)[3], (a)[4], (a)[5]
|
||||||
|
#define MACSTR "%02x:%02x:%02x:%02x:%02x:%02x"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Compact form for string representation of MAC address
|
||||||
|
* To be used, e.g., for constructing dbus paths for P2P Devices
|
||||||
|
*/
|
||||||
|
#define COMPACT_MACSTR "%02x%02x%02x%02x%02x%02x"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef BIT
|
||||||
|
#define BIT(x) (1U << (x))
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Definitions for sparse validation
|
||||||
|
* (http://kernel.org/pub/linux/kernel/people/josh/sparse/)
|
||||||
|
*/
|
||||||
|
#ifdef __CHECKER__
|
||||||
|
#define __force __attribute__((force))
|
||||||
|
#undef __bitwise
|
||||||
|
#define __bitwise __attribute__((bitwise))
|
||||||
|
#else
|
||||||
|
#define __force
|
||||||
|
#undef __bitwise
|
||||||
|
#define __bitwise
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef u16 __bitwise be16;
|
||||||
|
typedef u16 __bitwise le16;
|
||||||
|
typedef u32 __bitwise be32;
|
||||||
|
typedef u32 __bitwise le32;
|
||||||
|
typedef u64 __bitwise be64;
|
||||||
|
typedef u64 __bitwise le64;
|
||||||
|
|
||||||
|
#ifndef __must_check
|
||||||
|
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
|
||||||
|
#define __must_check __attribute__((__warn_unused_result__))
|
||||||
|
#else
|
||||||
|
#define __must_check
|
||||||
|
#endif /* __GNUC__ */
|
||||||
|
#endif /* __must_check */
|
||||||
|
|
||||||
|
#ifndef __maybe_unused
|
||||||
|
#if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
|
||||||
|
#define __maybe_unused __attribute__((unused))
|
||||||
|
#else
|
||||||
|
#define __maybe_unused
|
||||||
|
#endif /* __GNUC__ */
|
||||||
|
#endif /* __must_check */
|
||||||
|
|
||||||
|
#define SSID_MAX_LEN 32
|
||||||
|
|
||||||
|
struct wpa_ssid_value {
|
||||||
|
u8 ssid[SSID_MAX_LEN];
|
||||||
|
size_t ssid_len;
|
||||||
|
};
|
||||||
|
|
||||||
|
int hwaddr_aton(const char *txt, u8 *addr);
|
||||||
|
int hwaddr_masked_aton(const char *txt, u8 *addr, u8 *mask, u8 maskable);
|
||||||
|
int hwaddr_compact_aton(const char *txt, u8 *addr);
|
||||||
|
int hwaddr_aton2(const char *txt, u8 *addr);
|
||||||
|
int hex2byte(const char *hex);
|
||||||
|
int hexstr2bin(const char *hex, u8 *buf, size_t len);
|
||||||
|
void inc_byte_array(u8 *counter, size_t len);
|
||||||
|
void wpa_get_ntp_timestamp(u8 *buf);
|
||||||
|
int wpa_scnprintf(char *buf, size_t size, const char *fmt, ...);
|
||||||
|
int wpa_snprintf_hex_sep(char *buf, size_t buf_size, const u8 *data, size_t len,
|
||||||
|
char sep);
|
||||||
|
int wpa_snprintf_hex(char *buf, size_t buf_size, const u8 *data, size_t len);
|
||||||
|
int wpa_snprintf_hex_uppercase(char *buf, size_t buf_size, const u8 *data,
|
||||||
|
size_t len);
|
||||||
|
|
||||||
|
int hwaddr_mask_txt(char *buf, size_t len, const u8 *addr, const u8 *mask);
|
||||||
|
int ssid_parse(const char *buf, struct wpa_ssid_value *ssid);
|
||||||
|
|
||||||
|
#ifdef CONFIG_NATIVE_WINDOWS
|
||||||
|
void wpa_unicode2ascii_inplace(TCHAR *str);
|
||||||
|
TCHAR * wpa_strdup_tchar(const char *str);
|
||||||
|
#else /* CONFIG_NATIVE_WINDOWS */
|
||||||
|
#define wpa_unicode2ascii_inplace(s) do { } while (0)
|
||||||
|
#define wpa_strdup_tchar(s) strdup((s))
|
||||||
|
#endif /* CONFIG_NATIVE_WINDOWS */
|
||||||
|
|
||||||
|
void printf_encode(char *txt, size_t maxlen, const u8 *data, size_t len);
|
||||||
|
size_t printf_decode(u8 *buf, size_t maxlen, const char *str);
|
||||||
|
|
||||||
|
const char * wpa_ssid_txt(const u8 *ssid, size_t ssid_len);
|
||||||
|
|
||||||
|
char * wpa_config_parse_string(const char *value, size_t *len);
|
||||||
|
int is_hex(const u8 *data, size_t len);
|
||||||
|
int has_ctrl_char(const u8 *data, size_t len);
|
||||||
|
int has_newline(const char *str);
|
||||||
|
size_t merge_byte_arrays(u8 *res, size_t res_len,
|
||||||
|
const u8 *src1, size_t src1_len,
|
||||||
|
const u8 *src2, size_t src2_len);
|
||||||
|
char * dup_binstr(const void *src, size_t len);
|
||||||
|
|
||||||
|
static inline int is_zero_ether_addr(const u8 *a)
|
||||||
|
{
|
||||||
|
return !(a[0] | a[1] | a[2] | a[3] | a[4] | a[5]);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int is_broadcast_ether_addr(const u8 *a)
|
||||||
|
{
|
||||||
|
return (a[0] & a[1] & a[2] & a[3] & a[4] & a[5]) == 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline int is_multicast_ether_addr(const u8 *a)
|
||||||
|
{
|
||||||
|
return a[0] & 0x01;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define broadcast_ether_addr (const u8 *) "\xff\xff\xff\xff\xff\xff"
|
||||||
|
|
||||||
|
#include "wpa_debug.h"
|
||||||
|
|
||||||
|
|
||||||
|
struct wpa_freq_range_list {
|
||||||
|
struct wpa_freq_range {
|
||||||
|
unsigned int min;
|
||||||
|
unsigned int max;
|
||||||
|
} *range;
|
||||||
|
unsigned int num;
|
||||||
|
};
|
||||||
|
|
||||||
|
int freq_range_list_parse(struct wpa_freq_range_list *res, const char *value);
|
||||||
|
int freq_range_list_includes(const struct wpa_freq_range_list *list,
|
||||||
|
unsigned int freq);
|
||||||
|
char * freq_range_list_str(const struct wpa_freq_range_list *list);
|
||||||
|
|
||||||
|
int int_array_len(const int *a);
|
||||||
|
void int_array_concat(int **res, const int *a);
|
||||||
|
void int_array_sort_unique(int *a);
|
||||||
|
void int_array_add_unique(int **res, int a);
|
||||||
|
|
||||||
|
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
|
||||||
|
|
||||||
|
void str_clear_free(char *str);
|
||||||
|
void bin_clear_free(void *bin, size_t len);
|
||||||
|
|
||||||
|
int random_mac_addr(u8 *addr);
|
||||||
|
int random_mac_addr_keep_oui(u8 *addr);
|
||||||
|
|
||||||
|
const char * cstr_token(const char *str, const char *delim, const char **last);
|
||||||
|
char * str_token(char *str, const char *delim, char **context);
|
||||||
|
size_t utf8_escape(const char *inp, size_t in_size,
|
||||||
|
char *outp, size_t out_size);
|
||||||
|
size_t utf8_unescape(const char *inp, size_t in_size,
|
||||||
|
char *outp, size_t out_size);
|
||||||
|
int is_ctrl_char(char c);
|
||||||
|
|
||||||
|
int str_starts(const char *str, const char *start);
|
||||||
|
|
||||||
|
u8 rssi_to_rcpi(int rssi);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gcc 4.4 ends up generating strict-aliasing warnings about some very common
|
||||||
|
* networking socket uses that do not really result in a real problem and
|
||||||
|
* cannot be easily avoided with union-based type-punning due to struct
|
||||||
|
* definitions including another struct in system header files. To avoid having
|
||||||
|
* to fully disable strict-aliasing warnings, provide a mechanism to hide the
|
||||||
|
* typecast from aliasing for now. A cleaner solution will hopefully be found
|
||||||
|
* in the future to handle these cases.
|
||||||
|
*/
|
||||||
|
void * __hide_aliasing_typecast(void *foo);
|
||||||
|
#define aliasing_hide_typecast(a,t) (t *) __hide_aliasing_typecast((a))
|
||||||
|
|
||||||
|
#ifdef CONFIG_VALGRIND
|
||||||
|
#include <valgrind/memcheck.h>
|
||||||
|
#define WPA_MEM_DEFINED(ptr, len) VALGRIND_MAKE_MEM_DEFINED((ptr), (len))
|
||||||
|
#else /* CONFIG_VALGRIND */
|
||||||
|
#define WPA_MEM_DEFINED(ptr, len) do { } while (0)
|
||||||
|
#endif /* CONFIG_VALGRIND */
|
||||||
|
|
||||||
|
#endif /* COMMON_H */
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,39 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdarg.h>
|
||||||
|
#include "log.h"
|
||||||
|
|
||||||
|
#ifdef DEBUG
|
||||||
|
void log_debug(const char *format, ...) {
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vfprintf(stderr, format, args);
|
||||||
|
va_end(args);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
void log_debug(const char *format, ...) {
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
void log_verbose(const char *format, ...) {
|
||||||
|
if (!verbose)
|
||||||
|
return;
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vprintf(format, args);
|
||||||
|
va_end(args);
|
||||||
|
}
|
||||||
|
|
||||||
|
void log_info(const char *format, ...) {
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vprintf(format, args);
|
||||||
|
va_end(args);
|
||||||
|
}
|
||||||
|
|
||||||
|
void log_error(const char *format, ...) {
|
||||||
|
va_list args;
|
||||||
|
va_start(args, format);
|
||||||
|
vfprintf(stderr, format, args);
|
||||||
|
va_end(args);
|
||||||
|
}
|
|
@ -1,14 +1,11 @@
|
||||||
#ifndef __WIFICTLD_LOG_H
|
#ifndef __WIFICTLD_LOG_H
|
||||||
#define __WIFICTLD_LOG_H
|
#define __WIFICTLD_LOG_H
|
||||||
|
|
||||||
#ifdef DEBUG
|
static int verbose = 0;
|
||||||
#define DEBUG_COMPILE 1
|
|
||||||
#else
|
|
||||||
#define DEBUG_COMPILE 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define debug_print(fmt) \
|
void log_info(const char *format, ...);
|
||||||
do { if (DEBUG_COMPILE) fprintf(stderr, "%s:%d:%s(): " fmt, __FILE__, \
|
void log_verbose(const char *format, ...);
|
||||||
__LINE__, __func__); } while (0)
|
void log_debug(const char *format, ...);
|
||||||
|
void log_error(const char *format, ...);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1,105 +0,0 @@
|
||||||
#ifndef IEEE802_11_DEFS_H
|
|
||||||
#define IEEE802_11_DEFS_H
|
|
||||||
|
|
||||||
//TODO showd use hostapd/../src/common/ieee802_11_defs.h
|
|
||||||
|
|
||||||
/* Status codes (IEEE Std 802.11-2016, 9.4.1.9, Table 9-46) */
|
|
||||||
#define WLAN_STATUS_SUCCESS 0
|
|
||||||
#define WLAN_STATUS_UNSPECIFIED_FAILURE 1
|
|
||||||
#define WLAN_STATUS_TDLS_WAKEUP_ALTERNATE 2
|
|
||||||
#define WLAN_STATUS_TDLS_WAKEUP_REJECT 3
|
|
||||||
#define WLAN_STATUS_SECURITY_DISABLED 5
|
|
||||||
#define WLAN_STATUS_UNACCEPTABLE_LIFETIME 6
|
|
||||||
#define WLAN_STATUS_NOT_IN_SAME_BSS 7
|
|
||||||
#define WLAN_STATUS_CAPS_UNSUPPORTED 10
|
|
||||||
#define WLAN_STATUS_REASSOC_NO_ASSOC 11
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_UNSPEC 12
|
|
||||||
#define WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG 13
|
|
||||||
#define WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION 14
|
|
||||||
#define WLAN_STATUS_CHALLENGE_FAIL 15
|
|
||||||
#define WLAN_STATUS_AUTH_TIMEOUT 16
|
|
||||||
#define WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA 17
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_RATES 18
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_NOSHORT 19
|
|
||||||
#define WLAN_STATUS_SPEC_MGMT_REQUIRED 22
|
|
||||||
#define WLAN_STATUS_PWR_CAPABILITY_NOT_VALID 23
|
|
||||||
#define WLAN_STATUS_SUPPORTED_CHANNEL_NOT_VALID 24
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_NO_SHORT_SLOT_TIME 25
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_NO_HT 27
|
|
||||||
#define WLAN_STATUS_R0KH_UNREACHABLE 28
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_NO_PCO 29
|
|
||||||
#define WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY 30
|
|
||||||
#define WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION 31
|
|
||||||
#define WLAN_STATUS_UNSPECIFIED_QOS_FAILURE 32
|
|
||||||
#define WLAN_STATUS_DENIED_INSUFFICIENT_BANDWIDTH 33
|
|
||||||
#define WLAN_STATUS_DENIED_POOR_CHANNEL_CONDITIONS 34
|
|
||||||
#define WLAN_STATUS_DENIED_QOS_NOT_SUPPORTED 35
|
|
||||||
#define WLAN_STATUS_REQUEST_DECLINED 37
|
|
||||||
#define WLAN_STATUS_INVALID_PARAMETERS 38
|
|
||||||
#define WLAN_STATUS_REJECTED_WITH_SUGGESTED_CHANGES 39
|
|
||||||
#define WLAN_STATUS_INVALID_IE 40
|
|
||||||
#define WLAN_STATUS_GROUP_CIPHER_NOT_VALID 41
|
|
||||||
#define WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID 42
|
|
||||||
#define WLAN_STATUS_AKMP_NOT_VALID 43
|
|
||||||
#define WLAN_STATUS_UNSUPPORTED_RSN_IE_VERSION 44
|
|
||||||
#define WLAN_STATUS_INVALID_RSN_IE_CAPAB 45
|
|
||||||
#define WLAN_STATUS_CIPHER_REJECTED_PER_POLICY 46
|
|
||||||
#define WLAN_STATUS_TS_NOT_CREATED 47
|
|
||||||
#define WLAN_STATUS_DIRECT_LINK_NOT_ALLOWED 48
|
|
||||||
#define WLAN_STATUS_DEST_STA_NOT_PRESENT 49
|
|
||||||
#define WLAN_STATUS_DEST_STA_NOT_QOS_STA 50
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE 51
|
|
||||||
#define WLAN_STATUS_INVALID_FT_ACTION_FRAME_COUNT 52
|
|
||||||
#define WLAN_STATUS_INVALID_PMKID 53
|
|
||||||
#define WLAN_STATUS_INVALID_MDIE 54
|
|
||||||
#define WLAN_STATUS_INVALID_FTIE 55
|
|
||||||
#define WLAN_STATUS_REQUESTED_TCLAS_NOT_SUPPORTED 56
|
|
||||||
#define WLAN_STATUS_INSUFFICIENT_TCLAS_PROCESSING_RESOURCES 57
|
|
||||||
#define WLAN_STATUS_TRY_ANOTHER_BSS 58
|
|
||||||
#define WLAN_STATUS_GAS_ADV_PROTO_NOT_SUPPORTED 59
|
|
||||||
#define WLAN_STATUS_NO_OUTSTANDING_GAS_REQ 60
|
|
||||||
#define WLAN_STATUS_GAS_RESP_NOT_RECEIVED 61
|
|
||||||
#define WLAN_STATUS_STA_TIMED_OUT_WAITING_FOR_GAS_RESP 62
|
|
||||||
#define WLAN_STATUS_GAS_RESP_LARGER_THAN_LIMIT 63
|
|
||||||
#define WLAN_STATUS_REQ_REFUSED_HOME 64
|
|
||||||
#define WLAN_STATUS_ADV_SRV_UNREACHABLE 65
|
|
||||||
#define WLAN_STATUS_REQ_REFUSED_SSPN 67
|
|
||||||
#define WLAN_STATUS_REQ_REFUSED_UNAUTH_ACCESS 68
|
|
||||||
#define WLAN_STATUS_INVALID_RSNIE 72
|
|
||||||
#define WLAN_STATUS_U_APSD_COEX_NOT_SUPPORTED 73
|
|
||||||
#define WLAN_STATUS_U_APSD_COEX_MODE_NOT_SUPPORTED 74
|
|
||||||
#define WLAN_STATUS_BAD_INTERVAL_WITH_U_APSD_COEX 75
|
|
||||||
#define WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ 76
|
|
||||||
#define WLAN_STATUS_FINITE_CYCLIC_GROUP_NOT_SUPPORTED 77
|
|
||||||
#define WLAN_STATUS_CANNOT_FIND_ALT_TBTT 78
|
|
||||||
#define WLAN_STATUS_TRANSMISSION_FAILURE 79
|
|
||||||
#define WLAN_STATUS_REQ_TCLAS_NOT_SUPPORTED 80
|
|
||||||
#define WLAN_STATUS_TCLAS_RESOURCES_EXCHAUSTED 81
|
|
||||||
#define WLAN_STATUS_REJECTED_WITH_SUGGESTED_BSS_TRANSITION 82
|
|
||||||
#define WLAN_STATUS_REJECT_WITH_SCHEDULE 83
|
|
||||||
#define WLAN_STATUS_REJECT_NO_WAKEUP_SPECIFIED 84
|
|
||||||
#define WLAN_STATUS_SUCCESS_POWER_SAVE_MODE 85
|
|
||||||
#define WLAN_STATUS_PENDING_ADMITTING_FST_SESSION 86
|
|
||||||
#define WLAN_STATUS_PERFORMING_FST_NOW 87
|
|
||||||
#define WLAN_STATUS_PENDING_GAP_IN_BA_WINDOW 88
|
|
||||||
#define WLAN_STATUS_REJECT_U_PID_SETTING 89
|
|
||||||
#define WLAN_STATUS_REFUSED_EXTERNAL_REASON 92
|
|
||||||
#define WLAN_STATUS_REFUSED_AP_OUT_OF_MEMORY 93
|
|
||||||
#define WLAN_STATUS_REJECTED_EMERGENCY_SERVICE_NOT_SUPPORTED 94
|
|
||||||
#define WLAN_STATUS_QUERY_RESP_OUTSTANDING 95
|
|
||||||
#define WLAN_STATUS_REJECT_DSE_BAND 96
|
|
||||||
#define WLAN_STATUS_TCLAS_PROCESSING_TERMINATED 97
|
|
||||||
#define WLAN_STATUS_TS_SCHEDULE_CONFLICT 98
|
|
||||||
#define WLAN_STATUS_DENIED_WITH_SUGGESTED_BAND_AND_CHANNEL 99
|
|
||||||
#define WLAN_STATUS_MCCAOP_RESERVATION_CONFLICT 100
|
|
||||||
#define WLAN_STATUS_MAF_LIMIT_EXCEEDED 101
|
|
||||||
#define WLAN_STATUS_MCCA_TRACK_LIMIT_EXCEEDED 102
|
|
||||||
#define WLAN_STATUS_DENIED_DUE_TO_SPECTRUM_MANAGEMENT 103
|
|
||||||
#define WLAN_STATUS_ASSOC_DENIED_NO_VHT 104
|
|
||||||
#define WLAN_STATUS_ENABLEMENT_DENIED 105
|
|
||||||
#define WLAN_STATUS_RESTRICTION_FROM_AUTHORIZED_GDB 106
|
|
||||||
#define WLAN_STATUS_AUTHORIZATION_DEENABLED 107
|
|
||||||
#define WLAN_STATUS_FILS_AUTHENTICATION_FAILURE 112
|
|
||||||
#define WLAN_STATUS_UNKNOWN_AUTHENTICATION_SERVER 113
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -1,69 +1,71 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <libubox/blobmsg.h>
|
#include <libubox/blobmsg.h>
|
||||||
#include <libubox/ulog.h>
|
|
||||||
#include <libubus.h>
|
#include <libubus.h>
|
||||||
#include "temp_defs.h"
|
#include "hostapd/ieee802_11_defs.h" // ETH_ALEN + hwaddr_aton
|
||||||
|
#include "hostapd/common.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
#include "wifi_clients.h"
|
||||||
|
#include "ubus_events.h"
|
||||||
|
|
||||||
static struct blob_buf b;
|
static struct blob_buf b;
|
||||||
struct ubus_context *ctx_main;
|
static struct ubus_context *ctx_main;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
static int receive_request(struct ubus_context *ctx, struct ubus_object *obj, struct ubus_request_data *req, const char *method, struct blob_attr *msg)
|
|
||||||
{
|
|
||||||
const char *attr_name, *addr;
|
|
||||||
uint16_t freq, ssi_signal = -1;
|
|
||||||
struct blob_attr *pos;
|
|
||||||
int rem = blobmsg_data_len(msg);
|
|
||||||
|
|
||||||
// read msg
|
|
||||||
blobmsg_for_each_attr(pos, msg, rem) {
|
|
||||||
attr_name = blobmsg_name(pos);
|
|
||||||
|
|
||||||
if (!strcmp(attr_name, "address")){
|
|
||||||
addr = blobmsg_get_string(pos);
|
|
||||||
} else if(!strcmp(attr_name, "signal")){
|
|
||||||
ssi_signal = blobmsg_get_u32(pos);
|
|
||||||
} else if(!strcmp(attr_name, "freq")){
|
|
||||||
freq = blobmsg_get_u32(pos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
blob_buf_init(&b, 0);
|
|
||||||
blob_put_u32(&b, 0, WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA);
|
|
||||||
ubus_send_reply(ctx, req, b.head);
|
|
||||||
*/
|
|
||||||
|
|
||||||
if (!strcmp(method, "probe")) {
|
|
||||||
ULOG_NOTE("probe\n");
|
|
||||||
return WLAN_STATUS_SUCCESS;
|
|
||||||
}
|
|
||||||
if (!strcmp(method, "auth")) {
|
|
||||||
if (freq <= 5000) {
|
|
||||||
ULOG_WARN("auth [drop]-> %s\n", addr);
|
|
||||||
return WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
|
|
||||||
}
|
|
||||||
ULOG_WARN("auth [accept]-> %s\n", addr);
|
|
||||||
}
|
|
||||||
|
|
||||||
// learn by freq and address
|
|
||||||
|
|
||||||
ULOG_INFO("%s\n", method);
|
|
||||||
return WLAN_STATUS_SUCCESS;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
// bind on every hostapd by receive all ubus registered services
|
||||||
|
static void recieve_interfaces(struct ubus_context *ctx, struct ubus_object_data *obj, void *priv);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* handle every notify sended by hostapd
|
||||||
|
* (and allow or deny client auth)
|
||||||
|
*/
|
||||||
|
static int receive_notify(struct ubus_context *ctx, struct ubus_object *obj,
|
||||||
|
struct ubus_request_data *req, const char *method, struct blob_attr *msg);
|
||||||
|
|
||||||
|
// subscriber handler with callback to handle notifies from hostapd
|
||||||
struct ubus_subscriber sub = {
|
struct ubus_subscriber sub = {
|
||||||
.cb = receive_request,
|
.cb = receive_notify,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* init ubus connection and request for all registered hostapd instances
|
||||||
|
* (start everthing need and add themselve to uloop)
|
||||||
|
*/
|
||||||
|
int wifictld_ubus_init()
|
||||||
|
{
|
||||||
|
int ret = 0;
|
||||||
|
|
||||||
void wifictld_ubus_interfaces(struct ubus_context *ctx, struct ubus_object_data *obj, void *priv)
|
// connect to ubus
|
||||||
|
ctx_main = ubus_connect(NULL);
|
||||||
|
if (!ctx_main) {
|
||||||
|
log_error("Failed to connect to ubus");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// register subscriber on ubus
|
||||||
|
ret = ubus_register_subscriber(ctx_main, &sub);
|
||||||
|
if (ret) {
|
||||||
|
log_error("Error while registering subscriber: %s", ubus_strerror(ret));
|
||||||
|
ubus_free(ctx_main);
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
// request for all ubus services
|
||||||
|
ubus_lookup(ctx_main, NULL, recieve_interfaces, NULL);
|
||||||
|
|
||||||
|
// add to uloop
|
||||||
|
ubus_add_uloop(ctx_main);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// close ubus connection
|
||||||
|
void wifictld_ubus_close()
|
||||||
|
{
|
||||||
|
ubus_free(ctx_main);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void recieve_interfaces(struct ubus_context *ctx, struct ubus_object_data *obj, void *priv)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
const char *str = "notify_response";
|
const char *str = "notify_response";
|
||||||
|
@ -72,49 +74,63 @@ void wifictld_ubus_interfaces(struct ubus_context *ctx, struct ubus_object_data
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//switch to notify
|
//change hostapd to wait for response
|
||||||
blob_buf_init(&b, 0);
|
blob_buf_init(&b, 0);
|
||||||
blobmsg_add_u32(&b, str, 1);
|
blobmsg_add_u32(&b, str, 1);
|
||||||
ret = ubus_invoke(ctx, obj->id, str, b.head, NULL, NULL, 100);
|
ret = ubus_invoke(ctx, obj->id, str, b.head, NULL, NULL, 100);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
ULOG_ERR("Error while register response for event '%s': %s\n", obj->path, ubus_strerror(ret));
|
log_error("Error while register response for event '%s': %s\n", obj->path, ubus_strerror(ret));
|
||||||
}
|
}
|
||||||
|
|
||||||
//subscribe
|
//subscribe hostapd with THIS interface
|
||||||
ret = ubus_subscribe(ctx, &sub, obj->id);
|
ret = ubus_subscribe(ctx, &sub, obj->id);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
ULOG_ERR("Error while register subscribe for event '%s': %s\n", obj->path, ubus_strerror(ret));
|
log_error("Error while register subscribe for event '%s': %s\n", obj->path, ubus_strerror(ret));
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("sub %s: %d:%d\n", obj->path, obj->id, obj->type_id);
|
log_info("sub %s: %d:%d\n", obj->path, obj->id, obj->type_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wifictld_ubus_init()
|
|
||||||
|
static int receive_notify(struct ubus_context *ctx, struct ubus_object *obj, struct ubus_request_data *req, const char *method, struct blob_attr *msg)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
const char *attr_name, *str;
|
||||||
|
u8 addr[ETH_ALEN];
|
||||||
|
uint32_t freq, ssi_signal = -1;
|
||||||
|
struct blob_attr *pos;
|
||||||
|
int rem = blobmsg_data_len(msg);
|
||||||
|
|
||||||
ctx_main = ubus_connect(NULL);
|
// read msg
|
||||||
if (!ctx_main) {
|
blobmsg_for_each_attr(pos, msg, rem) {
|
||||||
ULOG_ERR("Failed to connect to ubus");
|
attr_name = blobmsg_name(pos);
|
||||||
return 1;
|
|
||||||
|
if (!strcmp(attr_name, "address")){
|
||||||
|
str = blobmsg_get_string(pos);
|
||||||
|
hwaddr_aton(str, addr);
|
||||||
|
} else if(!strcmp(attr_name, "signal")){
|
||||||
|
ssi_signal = blobmsg_get_u32(pos);
|
||||||
|
} else if(!strcmp(attr_name, "freq")){
|
||||||
|
freq = blobmsg_get_u32(pos);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = ubus_register_subscriber(ctx_main, &sub);
|
// handle
|
||||||
if (ret) {
|
|
||||||
ULOG_ERR("Error while registering subscriber: %s", ubus_strerror(ret));
|
if (!strcmp(method, "probe")) {
|
||||||
ubus_free(ctx_main);
|
log_verbose("probe\n");
|
||||||
return 2;
|
if (client_probe_learning)
|
||||||
|
wifi_clients_learn(addr, freq);
|
||||||
|
return WLAN_STATUS_SUCCESS;
|
||||||
|
}
|
||||||
|
if (!strcmp(method, "auth")) {
|
||||||
|
if (!wifi_clients_try(addr, freq)) {
|
||||||
|
log_info("auth [drop]-> %s\n", addr);
|
||||||
|
return WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
|
||||||
|
}
|
||||||
|
log_info("auth [accept]-> %s\n", addr);
|
||||||
|
} else {
|
||||||
|
log_verbose("%s\n", method);
|
||||||
}
|
}
|
||||||
|
|
||||||
ubus_lookup(ctx_main, NULL, wifictld_ubus_interfaces, NULL);
|
return WLAN_STATUS_SUCCESS;
|
||||||
|
|
||||||
ubus_add_uloop(ctx_main);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void wifictld_ubus_close()
|
|
||||||
{
|
|
||||||
ubus_free(ctx_main);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#ifndef __WIFICTLD_UBUS_EVENT_H
|
#ifndef __WIFICTLD_UBUS_EVENT_H
|
||||||
#define __WIFICTLD_UBUS_EVENT_H
|
#define __WIFICTLD_UBUS_EVENT_H
|
||||||
|
|
||||||
#include <libubus.h>
|
static int client_probe_learning = 0;
|
||||||
|
|
||||||
int wifictld_ubus_init();
|
int wifictld_ubus_init();
|
||||||
void wifictld_ubus_close();
|
void wifictld_ubus_close();
|
||||||
|
|
|
@ -0,0 +1,84 @@
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <libubox/avl.h>
|
||||||
|
#include "hostapd/ieee802_11_defs.h" // ETH_ALEN
|
||||||
|
#include "wifi_clients.h"
|
||||||
|
|
||||||
|
static void wifi_clients_del(const u8 *addr);
|
||||||
|
|
||||||
|
static struct avl_tree clients_by_addr;
|
||||||
|
|
||||||
|
struct wifi_client {
|
||||||
|
struct avl_node avl;
|
||||||
|
u8 addr[ETH_ALEN];
|
||||||
|
int time;
|
||||||
|
int try;
|
||||||
|
uint32_t highfreq;
|
||||||
|
};
|
||||||
|
|
||||||
|
int wifi_clients_init() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wifi_clients_close() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wifi_client *__get_client(const u8 *addr){
|
||||||
|
struct wifi_client *client;
|
||||||
|
|
||||||
|
client = avl_find_element(&clients_by_addr, addr, client, avl);
|
||||||
|
if (client)
|
||||||
|
return client;
|
||||||
|
client = malloc(sizeof(*client));
|
||||||
|
memcpy(client->addr, addr, sizeof(client->addr));
|
||||||
|
client->highfreq = 0;
|
||||||
|
client->try = 0;
|
||||||
|
client->time = 0;
|
||||||
|
client->avl.key = client->addr;
|
||||||
|
avl_insert(&clients_by_addr, &client->avl);
|
||||||
|
return client;
|
||||||
|
}
|
||||||
|
|
||||||
|
void __client_learn(struct wifi_client *client, uint32_t freq) {
|
||||||
|
if (client->highfreq < freq) {
|
||||||
|
client->highfreq = freq;
|
||||||
|
}
|
||||||
|
//TODO time set and reset clean
|
||||||
|
}
|
||||||
|
|
||||||
|
void wifi_clients_learn(const u8 *address, uint32_t freq) {
|
||||||
|
struct wifi_client *client;
|
||||||
|
client = __get_client(address);
|
||||||
|
__client_learn(client, freq);
|
||||||
|
}
|
||||||
|
|
||||||
|
int wifi_clients_try(const u8 *address, uint32_t freq) {
|
||||||
|
struct wifi_client *client;
|
||||||
|
client = __get_client(address);
|
||||||
|
__client_learn(client, freq);
|
||||||
|
|
||||||
|
if (freq > 5000) {
|
||||||
|
client->try = 0;
|
||||||
|
} else {
|
||||||
|
if(client->try > client_freq_try_threashold) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
client->try++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return client->try;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void wifi_clients_del(const u8 *addr) {
|
||||||
|
struct wifi_client *client;
|
||||||
|
|
||||||
|
client = avl_find_element(&clients_by_addr, addr, client, avl);
|
||||||
|
if (!client)
|
||||||
|
return;
|
||||||
|
|
||||||
|
avl_delete(&clients_by_addr, &client->avl);
|
||||||
|
free(client);
|
||||||
|
}
|
|
@ -0,0 +1,14 @@
|
||||||
|
#ifndef __WIFICTLD_WIFI_CLIENTS_H
|
||||||
|
#define __WIFICTLD_WIFI_CLIENTS_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
static int client_freq_try_threashold = 3;
|
||||||
|
|
||||||
|
int wifi_clients_init();
|
||||||
|
void wifi_clients_close();
|
||||||
|
|
||||||
|
void wifi_clients_learn(const uint8_t *address, uint32_t freq);
|
||||||
|
int wifi_clients_try(const uint8_t *address, uint32_t freq);
|
||||||
|
|
||||||
|
#endif
|
|
@ -1,31 +1,40 @@
|
||||||
#include <stdio.h>
|
#include <libubox/uloop.h>
|
||||||
#include <libubox/ulog.h>
|
#include "log.h"
|
||||||
#include <libubus.h>
|
#include "wifi_clients.h"
|
||||||
#include "ubus_events.h"
|
#include "ubus_events.h"
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
|
verbose = 1;
|
||||||
|
client_probe_learning = 1;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
#ifdef MINI
|
#ifdef MINI
|
||||||
ULOG_NOTE("start wifictld (mini)\n");
|
log_error("start wifictld (mini)\n");
|
||||||
#else
|
#else
|
||||||
ULOG_NOTE("start wifictld (full)\n");
|
log_error("start wifictld (full)\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
uloop_init();
|
uloop_init();
|
||||||
|
|
||||||
//bind to loop
|
// define wifi clients memory
|
||||||
ret = wifictld_ubus_init();
|
ret = wifi_clients_init();
|
||||||
|
|
||||||
if (ret)
|
if (ret)
|
||||||
{
|
{
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
// bind to loop
|
||||||
|
ret = wifictld_ubus_init();
|
||||||
|
if (ret)
|
||||||
|
{
|
||||||
|
wifi_clients_close();
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
uloop_run();
|
uloop_run();
|
||||||
uloop_done();
|
uloop_done();
|
||||||
|
|
||||||
|
|
||||||
wifictld_ubus_close();
|
wifictld_ubus_close();
|
||||||
|
wifi_clients_close();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue