From 97c67abab07a57840f95d04fadbd13b3c0f5b328 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=81LI=20G=C3=A1bor=20J=C3=A1nos?= Date: Sat, 28 May 2022 12:44:37 +0200 Subject: Incorporate `hostapd`. The inclusion of `hostapd` [1] brings a lot of related changes because the build process have to extended to take the challenge. - Convert `wpa_passthru` to a more a generic services, called `uds_passthru` to deal with the control socket forwarding. It can also log the `socat` errors properly. - Make the `Makefile` more parametric therefore the virtual disk image can be customized better. - Default configurations are now moved fully to the guest's side. - Tweak the packages to be more flexible. - Document everything. [1] https://w1.fi/hostapd/ --- aports/hostapd/APKBUILD | 84 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 aports/hostapd/APKBUILD (limited to 'aports/hostapd/APKBUILD') diff --git a/aports/hostapd/APKBUILD b/aports/hostapd/APKBUILD new file mode 100644 index 0000000..60265f0 --- /dev/null +++ b/aports/hostapd/APKBUILD @@ -0,0 +1,84 @@ +# Maintainer: Gabor Pali +pkgname=hostapd +pkgver=2.10 +pkgrel=0 +pkgdesc="daemon for wireless software access points" +url="https://w1.fi/hostapd/" +arch="all" +license="BSD-3-Clause" +makedepends="openssl1.1-compat-dev libnl3-dev linux-headers" +subpackages= +source="https://w1.fi/releases/hostapd-$pkgver.tar.gz + $pkgname.initd + $pkgname.confd + " +options="!check" #no testsuite +builddir="$srcdir"/$pkgname-$pkgver/hostapd + +# secfixes: +# 2.10-r0: +# - CVE-2022-23303 +# - CVE-2022-23304 +# 2.9-r3: +# - CVE-2021-30004 +# 2.9-r2: +# - CVE-2020-12695 +# 2.9-r1: +# - CVE-2019-16275 +# 2.8-r0: +# - CVE-2019-11555 +# - CVE-2019-9496 +# 2.6-r2: +# - CVE-2017-13077 +# - CVE-2017-13078 +# - CVE-2017-13079 +# - CVE-2017-13080 +# - CVE-2017-13081 +# - CVE-2017-13082 +# - CVE-2017-13086 +# - CVE-2017-13087 +# - CVE-2017-13088 + +prepare() { + cd "$builddir" + sed -i -e "s:/etc/hostapd:/etc/hostapd/hostapd:g" \ + hostapd.conf + + # toolchain setup + sed \ + -e '/^#CONFIG_DRIVER_NL80211=y/s/^#//' \ + -e '/^#CONFIG_RADIUS_SERVER=y/s/^#//' \ + -e '/^#CONFIG_DRIVER_WIRED=y/s/^#//' \ + -e '/^#CONFIG_DRIVER_NONE=y/s/^#//' \ + -e '/^#CONFIG_IEEE80211N=y/s/^#//' \ + -e '/^#CONFIG_IEEE80211R=y/s/^#//' \ + -e '/^#CONFIG_IEEE80211AC=y/s/^#//' \ + -e '/^#CONFIG_FULL_DYNAMIC_VLAN=y/s/^#//' \ + -e '/^#CONFIG_LIBNL32=y/s/^#//' \ + -e '/^#CONFIG_ACS=y/s/^#//' \ + -e '/^#CONFIG_WEP=y/s/^#//' \ + defconfig >> .config + echo "CC ?= ${CC:-gcc}" >> .config + echo "CFLAGS += -I/usr/include/libnl3" >> .config + echo "LIBS += -L/usr/lib" >> .config +} + +build() { + cd "$builddir" + make +} + +package() { + cd "$builddir" + + install -Dm755 hostapd "$pkgdir"/usr/sbin/hostapd \ + && install -Dm755 "$srcdir"/hostapd.initd \ + "$pkgdir"/etc/init.d/hostapd \ + && install -Dm644 "$srcdir"/hostapd.confd \ + "$pkgdir"/etc/conf.d/hostapd +} +sha512sums=" +243baa82d621f859d2507d8d5beb0ebda15a75548a62451dc9bca42717dcc8607adac49b354919a41d8257d16d07ac7268203a79750db0cfb34b51f80ff1ce8f hostapd-2.10.tar.gz +b54b7c6aa17e5cb86a9b354a516eb2dbefb544df18471339c61d82776de447011a2ac290bea1e6c8beae4b6cebefafb8174683ea42fb773e9e8fe6c679f33ba3 hostapd.initd +0882263bbd7c0b05bf51f51d66e11a23a0b8ca7da2a3b8a30166d2c5f044c0c134e6bccb1d02c9e81819ca8fb0c0fb55c7121a08fe7233ccaa73ff8ab9a238fe hostapd.confd +" -- cgit v1.2.3