From mboxrd@z Thu Jan 1 00:00:00 1970 From: ummeegge To: development@lists.ipfire.org Subject: Re: [PATCH v2] OpenVPN: Introduce new AES-GCM cipher for N2N and RW Date: Wed, 14 Feb 2018 20:11:33 +0100 Message-ID: <1518635493.12017.9.camel@ipfire.org> In-Reply-To: <1518619253-22278-1-git-send-email-erik.kapfer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2937183079720740393==" List-Id: --===============2937183079720740393== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable As a version 3 idea, or might it be possibly a better idea to delete the '--auth *' directive in N= 2N.conf if AES-GCM has been chosen ?=C2=A0i think it might also be better to integrate '--tls-crypt' -->=C2=A0https://www.mail-archive.com/openvpn-devel(a)lists.sou= rceforge.net/msg12357.html=C2=A0 instead of '--tls-auth' to N2N connections which uses a static AES-256-CTR wh= ereby a HMAC can not be selected ? But also it might be time to delete SHA1 complete from Net-to-Net HMAC selection since this won=C2=B4t harm old connections but brings a little more security per default ? Sorry for the back and forth but the way is the goal :D . Some feedback might be nevertheless nice and important. Greetings, Erik Am Mittwoch, den 14.02.2018, 15:40 +0100 schrieb Erik Kapfer: > AES-GCM 128, 196 and 256 bit has been added to Net-to-Net and > Roadwarrior section. >=20 > Cipher menu description has been changed for N2N and RW since AES-GCM=20 > uses own authentication encryption (GMAC). > =C2=A0=C2=A0=C2=A0=C2=A0More information can be found in here https://tools= .ietf.org/html > /rfc5288 . > Added java script snipped to disable HMAC selection for N2N if AES- > GCM has been selected. > =C2=A0=C2=A0=C2=A0=C2=A0'auth *' line in N2N.conf won=C2=B4t be deleted eve= n if AES-GCM is > used so possible individual '--tls-auth' configurations won=C2=B4t broke. > =C2=A0=C2=A0=C2=A0=C2=A0'auth *' line in N2N.conf will also be ignored if A= ES-GCM is used > and no '--tls-auth' are configured. > Left HMAC selection menu for Roadwarriors as it was since the WUI do > provides '--tls-auth' which uses the configuered HMAC even AES-GCM > has been applied. >=20 > Signed-off-by: Erik Kapfer > --- > =C2=A0html/cgi-bin/ovpnmain.cgi | 32 ++++++++++++++++++++++++++++++-- > =C2=A01 file changed, 30 insertions(+), 2 deletions(-) >=20 > diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi > index 9f5e682..0a18ec7 100644 > --- a/html/cgi-bin/ovpnmain.cgi > +++ b/html/cgi-bin/ovpnmain.cgi > @@ -4543,6 +4543,9 @@ if ($cgiparams{'TYPE'} eq 'net') { > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0} > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$checked{'PMTU_DISCOVERY'}{$cgiparams{'PMTU_D= ISCOVERY'}} =3D > 'checked=3D\'checked\''; > =C2=A0 > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-256-GCM'} =3D ''; > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-192-GCM'} =3D ''; > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-128-GCM'} =3D ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-256-CBC'} =3D = ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-192-CBC'} =3D = ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-128-CBC'} =3D = ''; > @@ -4706,7 +4709,10 @@ if ($cgiparams{'TYPE'} eq 'net') { > =C2=A0 > =C2=A0 > =C2=A0 $Lang::tr{'cipher'} > - > + > + > + > =C2=A0 > =C2=A0 > =C2=A0 > @@ -4723,7 +4729,7 @@ if ($cgiparams{'TYPE'} eq 'net') { > =C2=A0 > =C2=A0 > =C2=A0 $Lang::tr{'ovpn ha'}: > - > =C2=A0 > =C2=A0 > =C2=A0 > @@ -4737,6 +4743,22 @@ if ($cgiparams{'TYPE'} eq 'net') { > =C2=A0END > =C2=A0; > =C2=A0 } > + > +#### JAVA SCRIPT #### > +# Validate N2N cipher. If GCM is used, disable HMAC menu > +print< + > +END > + > =C2=A0#jumper > =C2=A0 print "$Lang::tr{'remark > title'}"; > =C2=A0 print " value=3D'$cgiparams{'REMARK'}' size=3D'55' maxlength=3D'50' > />"; > @@ -5108,6 +5130,9 @@ END > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DPROTOCOL'}{'tcp'} =3D ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DPROTOCOL'}{$cgiparams{'DPROTOCOL'= }} =3D 'SELECTED'; > =C2=A0 > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-256-GCM'} =3D ''; > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-192-GCM'} =3D ''; > +=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'AES-128-GCM'} =3D ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-256-CBC'} =3D = ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-192-CBC'} =3D = ''; > =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0$selected{'DCIPHER'}{'CAMELLIA-128-CBC'} =3D = ''; > @@ -5204,6 +5229,9 @@ END > =C2=A0 > =C2=A0 nowrap=3D'nowrap'>$Lang::tr{'cipher'} > =C2=A0