Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Enable MSCHAPv2 with StrongSwan.
@ 2021-05-03 14:21 dstolfa
  2021-05-03 14:24 ` [PR PATCH] [Updated] " dstolfa
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: dstolfa @ 2021-05-03 14:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1666 bytes --]

There is a new pull request by dstolfa against master on the void-packages repository

https://github.com/dstolfa/void-packages master
https://github.com/void-linux/void-packages/pull/30642

Enable MSCHAPv2 with StrongSwan.
StrongSwan on Void currently has issues with EAP-MSCHAPv2 in different ways.

(1) eap-identity needs to be enabled in order for config files with `eap_identity=%any` and similar lines to work (you essentially end up with `EAP_NAK` when `EAP_IDENTITY` is requested);
(2) eap-mschapv2 requires `md4` to be enabled as a plugin
(3) eap-dynamic **might** be required on some setups, so this pull request enables it to avoid issues in the future.

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv6l-musl

I have **not tested** if it runs on any of the cross builds, I simply tested that it indeed does build.

A patch file from https://github.com/void-linux/void-packages/pull/30642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-30642.patch --]
[-- Type: text/x-diff, Size: 1692 bytes --]

From cb7af5a5adf5427c3a1f845b1496305e2fd4cfba Mon Sep 17 00:00:00 2001
From: Domagoj Stolfa <ds815@gmx.com>
Date: Mon, 3 May 2021 15:10:25 +0100
Subject: [PATCH] Enable MSCHAPv2 with StrongSwan.

According to the documentation [1], StrongSwan needs --enable-md4 for
eap-mschapv2 to work. Moreover, many EAP-MSCHAPv2 based VPNs require
--enable-eap-identity and --enable-eap-dynamic to correctly work. This
commit simply adds these flags in the StrongSwan `template` file.

https://wiki.strongswan.org/projects/strongswan/wiki/AutoConf
---
 srcpkgs/strongswan/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/strongswan/template b/srcpkgs/strongswan/template
index f0be1ff9bdc3..36abce68ea26 100644
--- a/srcpkgs/strongswan/template
+++ b/srcpkgs/strongswan/template
@@ -1,13 +1,12 @@
 # Template file for 'strongswan'
 pkgname=strongswan
 version=5.8.4
-revision=1
+revision=2
 build_style=gnu-configure
 # tpm support waits on libtss2
-configure_args="--disable-static --enable-blowfish --enable-curl
- --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-led
- --enable-ha --enable-dhcp --enable-mediation --enable-soup --disable-des
- --enable-chapoly --enable-nm"
+configure_args="--disable-static --enable-blowfish --enable-curl --enable-md4
+ --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-eap-identity --enable-eap-dynamic
+ --enable-led --enable-ha --enable-dhcp --enable-mediation --enable-soup --enable-chapoly --enable-nm"
 hostmakedepends="pkg-config flex bison python"
 makedepends="gmp-devel libsoup-devel libldns-devel unbound-devel libcurl-devel NetworkManager-devel"
 depends="iproute2 sqlite"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] Enable MSCHAPv2 with StrongSwan.
  2021-05-03 14:21 [PR PATCH] Enable MSCHAPv2 with StrongSwan dstolfa
@ 2021-05-03 14:24 ` dstolfa
  2021-05-03 14:39 ` dstolfa
  2021-05-03 15:23 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: dstolfa @ 2021-05-03 14:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1671 bytes --]

There is an updated pull request by dstolfa against master on the void-packages repository

https://github.com/dstolfa/void-packages master
https://github.com/void-linux/void-packages/pull/30642

Enable MSCHAPv2 with StrongSwan.
StrongSwan on Void currently has issues with EAP-MSCHAPv2 in different ways.

(1) eap-identity needs to be enabled in order for config files with `eap_identity=%any` and similar lines to work (you essentially end up with `EAP_NAK` when `EAP_IDENTITY` is requested);
(2) eap-mschapv2 requires `md4` to be enabled as a plugin
(3) eap-dynamic **might** be required on some setups, so this pull request enables it to avoid issues in the future.

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv6l-musl

I have **not tested** if it runs on any of the cross builds, I simply tested that it indeed does build.

A patch file from https://github.com/void-linux/void-packages/pull/30642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-30642.patch --]
[-- Type: text/x-diff, Size: 1379 bytes --]

From d7cb895d4566bfcd4446bfa51ebcd0e1f5c30b3f Mon Sep 17 00:00:00 2001
From: Domagoj Stolfa <ds815@gmx.com>
Date: Mon, 3 May 2021 15:10:25 +0100
Subject: [PATCH] strongswan: enable options that are required for MSCHAPv2.

---
 srcpkgs/strongswan/template | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/strongswan/template b/srcpkgs/strongswan/template
index f0be1ff9bdc3..36abce68ea26 100644
--- a/srcpkgs/strongswan/template
+++ b/srcpkgs/strongswan/template
@@ -1,13 +1,12 @@
 # Template file for 'strongswan'
 pkgname=strongswan
 version=5.8.4
-revision=1
+revision=2
 build_style=gnu-configure
 # tpm support waits on libtss2
-configure_args="--disable-static --enable-blowfish --enable-curl
- --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-led
- --enable-ha --enable-dhcp --enable-mediation --enable-soup --disable-des
- --enable-chapoly --enable-nm"
+configure_args="--disable-static --enable-blowfish --enable-curl --enable-md4
+ --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-eap-identity --enable-eap-dynamic
+ --enable-led --enable-ha --enable-dhcp --enable-mediation --enable-soup --enable-chapoly --enable-nm"
 hostmakedepends="pkg-config flex bison python"
 makedepends="gmp-devel libsoup-devel libldns-devel unbound-devel libcurl-devel NetworkManager-devel"
 depends="iproute2 sqlite"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Updated] Enable MSCHAPv2 with StrongSwan.
  2021-05-03 14:21 [PR PATCH] Enable MSCHAPv2 with StrongSwan dstolfa
  2021-05-03 14:24 ` [PR PATCH] [Updated] " dstolfa
@ 2021-05-03 14:39 ` dstolfa
  2021-05-03 15:23 ` [PR PATCH] [Merged]: " ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: dstolfa @ 2021-05-03 14:39 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1671 bytes --]

There is an updated pull request by dstolfa against master on the void-packages repository

https://github.com/dstolfa/void-packages master
https://github.com/void-linux/void-packages/pull/30642

Enable MSCHAPv2 with StrongSwan.
StrongSwan on Void currently has issues with EAP-MSCHAPv2 in different ways.

(1) eap-identity needs to be enabled in order for config files with `eap_identity=%any` and similar lines to work (you essentially end up with `EAP_NAK` when `EAP_IDENTITY` is requested);
(2) eap-mschapv2 requires `md4` to be enabled as a plugin
(3) eap-dynamic **might** be required on some setups, so this pull request enables it to avoid issues in the future.

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv6l-musl

I have **not tested** if it runs on any of the cross builds, I simply tested that it indeed does build.

A patch file from https://github.com/void-linux/void-packages/pull/30642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-master-30642.patch --]
[-- Type: text/x-diff, Size: 1674 bytes --]

From ca19326884ce7d375a7d1fb20e5442e02100de36 Mon Sep 17 00:00:00 2001
From: Domagoj Stolfa <ds815@gmx.com>
Date: Mon, 3 May 2021 15:10:25 +0100
Subject: [PATCH] strongswan: enable options that are required for MSCHAPv2.

According to the documentation [1], StrongSwan needs --enable-md4 for
eap-mschapv2 to work. Moreover, many EAP-MSCHAPv2 based VPNs require
--enable-eap-identity and --enable-eap-dynamic to correctly work. This
commit simply adds these flags in the StrongSwan `template` file.

https://wiki.strongswan.org/projects/strongswan/wiki/AutoConf
---
 srcpkgs/strongswan/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/strongswan/template b/srcpkgs/strongswan/template
index f0be1ff9bdc3..e0e416ad5469 100644
--- a/srcpkgs/strongswan/template
+++ b/srcpkgs/strongswan/template
@@ -1,12 +1,12 @@
 # Template file for 'strongswan'
 pkgname=strongswan
 version=5.8.4
-revision=1
+revision=2
 build_style=gnu-configure
 # tpm support waits on libtss2
-configure_args="--disable-static --enable-blowfish --enable-curl
- --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-led
- --enable-ha --enable-dhcp --enable-mediation --enable-soup --disable-des
+configure_args="--disable-static --enable-blowfish --enable-curl --enable-md4
+ --enable-eap-radius --enable-eap-mschapv2 --enable-eap-md5 --enable-eap-identity --enable-eap-dynamic
+ --enable-led --enable-ha --enable-dhcp --enable-mediation --enable-soup --disable-des
  --enable-chapoly --enable-nm"
 hostmakedepends="pkg-config flex bison python"
 makedepends="gmp-devel libsoup-devel libldns-devel unbound-devel libcurl-devel NetworkManager-devel"

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: Enable MSCHAPv2 with StrongSwan.
  2021-05-03 14:21 [PR PATCH] Enable MSCHAPv2 with StrongSwan dstolfa
  2021-05-03 14:24 ` [PR PATCH] [Updated] " dstolfa
  2021-05-03 14:39 ` dstolfa
@ 2021-05-03 15:23 ` ericonr
  2 siblings, 0 replies; 4+ messages in thread
From: ericonr @ 2021-05-03 15:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1516 bytes --]

There's a merged pull request on the void-packages repository

Enable MSCHAPv2 with StrongSwan.
https://github.com/void-linux/void-packages/pull/30642

Description:
StrongSwan on Void currently has issues with EAP-MSCHAPv2 in different ways.

(1) eap-identity needs to be enabled in order for config files with `eap_identity=%any` and similar lines to work (you essentially end up with `EAP_NAK` when `EAP_IDENTITY` is requested);
(2) eap-mschapv2 requires `md4` to be enabled as a plugin
(3) eap-dynamic **might** be required on some setups, so this pull request enables it to avoid issues in the future.

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv6l-musl

I have **not tested** if it runs on any of the cross builds, I simply tested that it indeed does build.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-05-03 15:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-03 14:21 [PR PATCH] Enable MSCHAPv2 with StrongSwan dstolfa
2021-05-03 14:24 ` [PR PATCH] [Updated] " dstolfa
2021-05-03 14:39 ` dstolfa
2021-05-03 15:23 ` [PR PATCH] [Merged]: " ericonr

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).