Skip to content

Commit

Permalink
wifi-mesh-macfilter: added
Browse files Browse the repository at this point in the history
  • Loading branch information
kb-light committed Aug 30, 2015
1 parent dea803c commit 2f28ab1
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
40 changes: 40 additions & 0 deletions net/wifi-mesh-macfilter/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=wifi-mesh-macfilter
PKG_VERSION:=1
PKG_RELEASE:=1

PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)

include $(INCLUDE_DIR)/package.mk

define Package/wifi-block-station
SECTION:=net
CATEGORY:=NETWORK
TITLE:=WiFi - block/open 802.11s-mesh stations
DEPENDS:=+iw +uci
endef

define Package/wifi-mesh-macfilter/description
Setting plink_action [block|open], when 802.11s mesh-interface comes up.
Define filterpolicy in uci wireless.<wifi-iface>.macfilter=[disable|deny|allow].
Deny sets iw dev <device> station set <mac> plink_action block, and
allow sets iw dev <device> mesh_param mesh_auto_open_plink=0 and iw dev <device> station set <mac> plink_action open.
List MAC adresses (divided by spaces) in uci wireless.<wifi-iface>.maclist.
endef

define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef

define Build/Configure
endef

define Build/Compile
endef

define Package/wifi-mesh-macfilter/install
$(CP) ./files/* $(1)/
endef

$(eval $(call BuildPackage,wifi-mesh-macfilter))
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#!/bin/sh

local MODE
local POLICY
local IW_POLICY
local MAC
local MACLIST

[[ "$ACTION" != ifup ]] && exit 0;

. /lib/functions.sh
config_load "wireless"

config_get MODE $INTERFACE mode
[[ $MODE != mesh ]] && exit 0;

config_get POLICY $INTERFACE macfilter
case $POLICY in
deny) IW_POLICY="block";;
allow) IW_POLICY="open"; iw dev $DEVICE set mesh_param mesh_auto_open_plinks=0;;
*) exit 0;;
esac

config_get MACLIST $INTERFACE maclist
for MAC in $MACLIST; do
iw dev $DEVICE station set $MAC plink_action $IW_POLICY
done

0 comments on commit 2f28ab1

Please sign in to comment.