* [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
@ 2018-06-21 9:12 Erik Kapfer
2018-07-02 12:26 ` ummeegge
0 siblings, 1 reply; 8+ messages in thread
From: Erik Kapfer @ 2018-06-21 9:12 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 842 bytes --]
This fixes #11772 .
If the X509 are deleted, the openvpnctrl output generates a bad header wrapper error from the CGI
which causes an internal server error. The redirection of the openvpnctrl output fixes this.
Signed-off-by: Erik Kapfer <erik.kapfer(a)ipfire.org>
---
html/cgi-bin/ovpnmain.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
index 4bc3473..5cd19a0 100644
--- a/html/cgi-bin/ovpnmain.cgi
+++ b/html/cgi-bin/ovpnmain.cgi
@@ -1181,7 +1181,7 @@ SETTINGS_ERROR:
delete $confighash{$cgiparams{'$key'}};
}
- system ("/usr/local/bin/openvpnctrl -drrd $name");
+ system ("/usr/local/bin/openvpnctrl -drrd $name &>/dev/null");
}
while ($file = glob("${General::swroot}/ovpn/ca/*")) {
unlink $file;
--
2.7.4
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-06-21 9:12 [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper Erik Kapfer
@ 2018-07-02 12:26 ` ummeegge
2018-07-03 9:52 ` Michael Tremer
0 siblings, 1 reply; 8+ messages in thread
From: ummeegge @ 2018-07-02 12:26 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1010 bytes --]
Hi,
just wanted to know if this fix will be applied ?
Best,
Erik
Am Donnerstag, den 21.06.2018, 11:12 +0200 schrieb Erik Kapfer:
> This fixes #11772 .
>
> If the X509 are deleted, the openvpnctrl output generates a bad
> header wrapper error from the CGI
> which causes an internal server error. The redirection of the
> openvpnctrl output fixes this.
>
> Signed-off-by: Erik Kapfer <erik.kapfer(a)ipfire.org>
> ---
> html/cgi-bin/ovpnmain.cgi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
> index 4bc3473..5cd19a0 100644
> --- a/html/cgi-bin/ovpnmain.cgi
> +++ b/html/cgi-bin/ovpnmain.cgi
> @@ -1181,7 +1181,7 @@ SETTINGS_ERROR:
> delete $confighash{$cgiparams{'$key'}};
> }
>
> - system ("/usr/local/bin/openvpnctrl -drrd $name");
> + system ("/usr/local/bin/openvpnctrl -drrd $name
> &>/dev/null");
> }
> while ($file = glob("${General::swroot}/ovpn/ca/*")) {
> unlink $file;
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-02 12:26 ` ummeegge
@ 2018-07-03 9:52 ` Michael Tremer
2018-07-03 12:18 ` ummeegge
0 siblings, 1 reply; 8+ messages in thread
From: Michael Tremer @ 2018-07-03 9:52 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1305 bytes --]
Yes, I just did.
I collected all the patches and merged all the package updates first and today I
merged all other smaller changes.
Best,
-Michael
On Mon, 2018-07-02 at 14:26 +0200, ummeegge wrote:
> Hi,
> just wanted to know if this fix will be applied ?
>
> Best,
>
> Erik
>
>
> Am Donnerstag, den 21.06.2018, 11:12 +0200 schrieb Erik Kapfer:
> > This fixes #11772 .
> >
> > If the X509 are deleted, the openvpnctrl output generates a bad
> > header wrapper error from the CGI
> > which causes an internal server error. The redirection of the
> > openvpnctrl output fixes this.
> >
> > Signed-off-by: Erik Kapfer <erik.kapfer(a)ipfire.org>
> > ---
> > html/cgi-bin/ovpnmain.cgi | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
> > index 4bc3473..5cd19a0 100644
> > --- a/html/cgi-bin/ovpnmain.cgi
> > +++ b/html/cgi-bin/ovpnmain.cgi
> > @@ -1181,7 +1181,7 @@ SETTINGS_ERROR:
> > delete $confighash{$cgiparams{'$key'}};
> > }
> >
> > - system ("/usr/local/bin/openvpnctrl -drrd $name");
> > + system ("/usr/local/bin/openvpnctrl -drrd $name
> > &>/dev/null");
> > }
> > while ($file = glob("${General::swroot}/ovpn/ca/*")) {
> > unlink $file;
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-03 9:52 ` Michael Tremer
@ 2018-07-03 12:18 ` ummeegge
2018-07-03 14:31 ` Michael Tremer
0 siblings, 1 reply; 8+ messages in thread
From: ummeegge @ 2018-07-03 12:18 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1150 bytes --]
Hi Michael,
thanks for merging. I have seen that you´d applied version 1 of this
patch
https://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff;f=html/cgi-bin/ovpnmain.cgi;h=c0c7cff6d87f6e18206129ab196172be61683a38;hp=5cd19a0f38f564c54e672814e0b5918134889b17;hb=15a3aa45cf27c61a581f892b5f3a3905335a12b0;hpb=8ae4010b312830bce82721325f0aeae524b2810a
but there´s a version 2 of it
https://patchwork.ipfire.org/patch/1842/
which we should in any case prefer.
This is my fault since i didn´t use the same commit name, just used the same message-id in the commit.
Sorry for that.
Best,
Erik
P.S. I do have some more OpenVPN patches (extensions no bugs), should i commit some more or should we wait until the next release ?
Am Dienstag, den 03.07.2018, 10:52 +0100 schrieb Michael Tremer:
> Yes, I just did.
>
> I collected all the patches and merged all the package updates first
> and today I
> merged all other smaller changes.
>
> Best,
> -Michael
>
> On Mon, 2018-07-02 at 14:26 +0200, ummeegge wrote:
> >
> > Hi,
> > just wanted to know if this fix will be applied ?
> >
> > Best,
> >
> > Erik
> >
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-03 12:18 ` ummeegge
@ 2018-07-03 14:31 ` Michael Tremer
2018-07-03 17:40 ` ummeegge
0 siblings, 1 reply; 8+ messages in thread
From: Michael Tremer @ 2018-07-03 14:31 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1486 bytes --]
Hi,
On Tue, 2018-07-03 at 14:18 +0200, ummeegge wrote:
> Hi Michael,
> thanks for merging. I have seen that you´d applied version 1 of this
> patch
> https://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff;f=html/cgi-bin/ovpnmain.cg
> i;h=c0c7cff6d87f6e18206129ab196172be61683a38;hp=5cd19a0f38f564c54e672814e0b591
> 8134889b17;hb=15a3aa45cf27c61a581f892b5f3a3905335a12b0;hpb=8ae4010b312830bce82
> 721325f0aeae524b2810a
>
> but there´s a version 2 of it
> https://patchwork.ipfire.org/patch/1842/
> which we should in any case prefer.
Oh sorry. If you can, please mark the v1 as such in Patchwork. I am not sure if
we can trigger this automatically via email.
> This is my fault since i didn´t use the same commit name, just used the same
> message-id in the commit.
>
> Sorry for that.
No problem.
>
> Best,
>
> Erik
>
> P.S. I do have some more OpenVPN patches (extensions no bugs), should i commit
> some more or should we wait until the next release ?
What are those?
Best,
-Michael
>
> Am Dienstag, den 03.07.2018, 10:52 +0100 schrieb Michael Tremer:
> > Yes, I just did.
> >
> > I collected all the patches and merged all the package updates first
> > and today I
> > merged all other smaller changes.
> >
> > Best,
> > -Michael
> >
> > On Mon, 2018-07-02 at 14:26 +0200, ummeegge wrote:
> > >
> > > Hi,
> > > just wanted to know if this fix will be applied ?
> > >
> > > Best,
> > >
> > > Erik
> > >
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-03 14:31 ` Michael Tremer
@ 2018-07-03 17:40 ` ummeegge
2018-07-04 13:59 ` Michael Tremer
0 siblings, 1 reply; 8+ messages in thread
From: ummeegge @ 2018-07-03 17:40 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1617 bytes --]
Hi Michael,
Am Dienstag, den 03.07.2018, 15:31 +0100 schrieb Michael Tremer:
> Hi,
>
> On Tue, 2018-07-03 at 14:18 +0200, ummeegge wrote:
> >
> > Hi Michael,
> > thanks for merging. I have seen that you´d applied version 1 of
> > this
> > patch
> > https://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff;f=html/cgi-bin/
> > ovpnmain.cg
> > i;h=c0c7cff6d87f6e18206129ab196172be61683a38;hp=5cd19a0f38f564c54e6
> > 72814e0b591
> > 8134889b17;hb=15a3aa45cf27c61a581f892b5f3a3905335a12b0;hpb=8ae4010b
> > 312830bce82
> > 721325f0aeae524b2810a
> >
> > but there´s a version 2 of it
> > https://patchwork.ipfire.org/patch/1842/
> > which we should in any case prefer.
> Oh sorry. If you can, please mark the v1 as such in Patchwork. I am
> not sure if
> we can trigger this automatically via email.
You mean to mark the first patch as v1 ? In that case i need to setup
the old patch again as a new one and send it as answer to the v2 patch.
> >
> > P.S. I do have some more OpenVPN patches (extensions no bugs),
> > should i commit
> > some more or should we wait until the next release ?
> What are those?
Wanted to finish the 2.4 OpenVPN project in the course which we did
discussed some time ago. So i thought about this order:
1) Automatic cipher negotiation for RWs only (checkbox in advanced
section)
2) tls-crypt for N2N only (checkbox in N2N main menu).
3) LZ4 compression possibility for N2N and RW (menu with possiblity for
none, lzo, lz4v2)
4) Clean up ovpnmain.cgi from mtu-discovery since there are some old
code blocks left.
There is more but to get the old list shorter for the first.
Best,
Erik
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-03 17:40 ` ummeegge
@ 2018-07-04 13:59 ` Michael Tremer
2018-07-04 22:59 ` ummeegge
0 siblings, 1 reply; 8+ messages in thread
From: Michael Tremer @ 2018-07-04 13:59 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 2209 bytes --]
On Tue, 2018-07-03 at 19:40 +0200, ummeegge wrote:
> Hi Michael,
>
> Am Dienstag, den 03.07.2018, 15:31 +0100 schrieb Michael Tremer:
> > Hi,
> >
> > On Tue, 2018-07-03 at 14:18 +0200, ummeegge wrote:
> > >
> > > Hi Michael,
> > > thanks for merging. I have seen that you´d applied version 1 of
> > > this
> > > patch
> > > https://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff;f=html/cgi-bin/
> > > ovpnmain.cg
> > > i;h=c0c7cff6d87f6e18206129ab196172be61683a38;hp=5cd19a0f38f564c54e6
> > > 72814e0b591
> > > 8134889b17;hb=15a3aa45cf27c61a581f892b5f3a3905335a12b0;hpb=8ae4010b
> > > 312830bce82
> > > 721325f0aeae524b2810a
> > >
> > > but there´s a version 2 of it
> > > https://patchwork.ipfire.org/patch/1842/
> > > which we should in any case prefer.
> >
> > Oh sorry. If you can, please mark the v1 as such in Patchwork. I am
> > not sure if
> > we can trigger this automatically via email.
>
> You mean to mark the first patch as v1 ? In that case i need to setup
> the old patch again as a new one and send it as answer to the v2 patch.
No, not as v1, but in Patchwork, when you log in manually, you can set a patch
as superseeded. It is a bit annoying to do this manually, but I do not know
about any better way.
> > >
> > > P.S. I do have some more OpenVPN patches (extensions no bugs),
> > > should i commit
> > > some more or should we wait until the next release ?
> >
> > What are those?
>
> Wanted to finish the 2.4 OpenVPN project in the course which we did
> discussed some time ago. So i thought about this order:
>
> 1) Automatic cipher negotiation for RWs only (checkbox in advanced
> section)
Isn't that something you would always want?
> 2) tls-crypt for N2N only (checkbox in N2N main menu).
> 3) LZ4 compression possibility for N2N and RW (menu with possiblity for
> none, lzo, lz4v2)
Yes, that should be a dropdown then instead of a checkbox.
> 4) Clean up ovpnmain.cgi from mtu-discovery since there are some old
> code blocks left.
Okay, cool.
> There is more but to get the old list shorter for the first.
I guess it is best to start with the cleanup and then send in the other things
one patch, or one patchset at a time.
Best,
-Michael
>
> Best,
>
> Erik
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper
2018-07-04 13:59 ` Michael Tremer
@ 2018-07-04 22:59 ` ummeegge
0 siblings, 0 replies; 8+ messages in thread
From: ummeegge @ 2018-07-04 22:59 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1851 bytes --]
Hi Michael,
Am Mittwoch, den 04.07.2018, 14:59 +0100 schrieb Michael Tremer:
> >
> > You mean to mark the first patch as v1 ? In that case i need to
> > setup
> > the old patch again as a new one and send it as answer to the v2
> > patch.
>
> No, not as v1, but in Patchwork, when you log in manually, you can
> set a patch
> as superseeded. It is a bit annoying to do this manually, but I do
> not know
> about any better way.
OK, new ways :-). But i do have currently no access with my
credentials.
>
> > > >
> > > > P.S. I do have some more OpenVPN patches (extensions no bugs),
> > > > should i commit
> > > > some more or should we wait until the next release ?
> > >
> > > What are those?
> >
> > Wanted to finish the 2.4 OpenVPN project in the course which we did
> > discussed some time ago. So i thought about this order:
> >
> > 1) Automatic cipher negotiation for RWs only (checkbox in advanced
> > section)
>
> Isn't that something you would always want?
Might be a good opportunity for people with lot´s of clients and old
configuration files but an updated OpenVPN client. No new config
transfer is needed in that case but AES-GCM can nevertheless be used,
if too old (< 2.3.x), the before configured algorithms will be used.
>
> > 2) tls-crypt for N2N only (checkbox in N2N main menu).
> > 3) LZ4 compression possibility for N2N and RW (menu with possiblity
> > for
> > none, lzo, lz4v2)
>
> Yes, that should be a dropdown then instead of a checkbox.
Done already.
>
> > 4) Clean up ovpnmain.cgi from mtu-discovery since there are some
> > old
> > code blocks left.
>
> Okay, cool.
>
> > There is more but to get the old list shorter for the first.
>
> I guess it is best to start with the cleanup and then send in the
> other things
> one patch, or one patchset at a time.
This is how we do it.
Best,
Erik
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2018-07-04 22:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-21 9:12 [PATCH] OpenVPN: Prevent internal server error cause of bad header wrapper Erik Kapfer
2018-07-02 12:26 ` ummeegge
2018-07-03 9:52 ` Michael Tremer
2018-07-03 12:18 ` ummeegge
2018-07-03 14:31 ` Michael Tremer
2018-07-03 17:40 ` ummeegge
2018-07-04 13:59 ` Michael Tremer
2018-07-04 22:59 ` ummeegge
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox