Commit Graph

29 Commits

Author SHA1 Message Date
Fabrice Fontaine 9404f17af1 net/fastd: assign PKG_CPE_ID
https://nvd.nist.gov/products/cpe/search/results?keyword=cpe:2.3🅰️fastd_project:fastd

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
2024-01-29 16:01:26 -08:00
Matthias Schiffer ac897e05dd
fastd: update repository URL
I've changed my username to neocturne.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2023-09-20 21:01:01 +02:00
Rosen Penev 5ccd4d1c25 treewide: compile with tools/meson
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-09-17 22:06:52 -07:00
Matthias Schiffer 03ff71d5ba
fastd: make L2TP support a config option instead of a variant
We enable the option by default, but do not depend on the kernel modules
required for L2TP offloading to avoid wasting space when the feature is
not needed. To use offloading, kmod-l2tp-eth must be installed.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 17:24:14 +02:00
Matthias Schiffer 62742985d7
fastd: fix start of non-L2TP variant
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 14:56:14 +02:00
Matthias Schiffer 7b9c04f95b
fastd: add L2TP variant
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 13:26:26 +02:00
Matthias Schiffer c8ca43865d
fastd: update to v22
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 13:08:34 +02:00
Matthias Schiffer 916a657818
fastd: disable GMAC-based methods by default
The UMAC-based methods provide higher performance than GMAC and aren't
suspectible to timing attacks when implemented in software (which is
always the case on OpenWrt, as OpenSSL support is disabled). Disable
GMAC by default to save a few KiB.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 13:08:34 +02:00
Matthias Schiffer 45976ff31a
fastd: simplify Config.in
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2021-06-27 13:08:34 +02:00
Matthias Schiffer f20908cbad
fastd: update to v21
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2020-10-19 21:52:43 +02:00
Matthias Schiffer a916211b67
fastd: update to v20
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2020-10-10 19:02:24 +02:00
Matthias Schiffer 598d4baa02
fastd: update to v19
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2020-05-22 21:15:46 +02:00
Matthias Schiffer b7ff8b8087
fastd: fix init script for multiple VPN instances
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2019-09-04 22:49:12 +02:00
Matthias Schiffer 2f18821843
fastd: update URL and PKG_SOURCE_URL 2019-08-21 16:14:11 +02:00
David Bauer ed3c3e3c79 fastd: fix segmentation fault with musl >1.1.20
When compiled with musl >1.1.20, fastd will crash in case it can't
resolve a peers hostname. This is due to a changed implementation of
freeaddrinfo in musl 1.1.21 onwards.

This segfault is fixed by not calling freeaddrinfo in case the supplied
pointer is null.

Signed-off-by: David Bauer <mail@david-bauer.net>
2019-07-25 20:21:33 +02:00
Etienne Champetier 4006865ae8 treewide: run "make check FIXUP=1"
fix Makefile chmod (644)
replace MD5SUM with HASH
add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git

(PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now)

Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
2017-08-29 21:41:14 -07:00
Dominik Menke 8dd99f4f7f libuecc: use shared instead of static library
This patch prepares for another future package (ecdsautils),
which builds multiple binaries all linked to libuecc.

The changes are a direct copy of [1]. The original commit
message was:

> commit cb2ecbfdf0c478568a28aacb99d30fd6ee5c0dd1
> From: Matthias Schiffer <mschiffer@universe-factory.net>
> Date: Tue, 3 May 2016 21:33:34 +0200
> Subject: libuecc: use shared instead of static library
>
> Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>

[1]: cb2ecbfdf0/patches/packages/openwrt/0007-libuecc-use-shared-instead-of-static-library.patch

Signed-off-by: Dominik Menke <dom@digineo.de>
2016-12-14 10:47:51 +01:00
Matthias Schiffer 68cf2944b0 fastd: update to v18
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2016-03-29 00:29:43 +02:00
Matthias Schiffer c38ba76698 fastd: fix musl compatibility
Prefer linux/if_ether.h over netinet/if_ether.h if available since the
musl libc if_ether.h header does not allow mixing with kernel headers,
it will result in a struct ethhdr redefinition error.

Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-06-19 04:16:09 +02:00
Matthias Schiffer 07627d5c03 fastd: update to v17
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-01-29 07:10:11 +01:00
Matthias Schiffer 6cafaf4cf8 fastd: update configuration options
When updating fastd, some added and renamed CMake options had been forgotten, so
it was impossible to disable some feature to reduce its size.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2015-01-08 01:12:07 +01:00
Ian Leonard ac7cd4c6e6 misc: correct typo in Makefiles for PKG_LICENSE_FILES
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2014-11-24 23:43:37 -08:00
Matthias Schiffer a23e8f6bc1 fastd: update to v16
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-11-15 18:37:43 +01:00
Matthias Schiffer 619f2c1807 fastd: update to v15
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-11-12 03:17:35 +01:00
Matthias Schiffer 5ab3b37710 fastd: re-enable link-time optimization
The toolchain is fixed, so LTO can be enabled again.

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-10-21 02:55:30 +02:00
Matthias Schiffer 884c6f38e1 fastd: disable link-time optimization to fix build with current toolchain
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-10-08 23:11:33 +02:00
Matthias Schiffer 910d3a956c libuecc, fastd: add licensing information
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-08-09 04:58:58 +02:00
Matthias Schiffer baa93d58d5 fastd: update to v14
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
2014-06-30 23:49:21 +02:00
Matthias Schiffer 605d0884bc Add fastd, a very small VPN daemon 2014-06-12 15:12:38 +02:00