From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH] Fix for Bug #12050: Adding fixed leases with one 'add' click Date: Thu, 18 Apr 2019 10:50:41 +0100 Message-ID: <960C9950-EE01-4B2F-9AA4-4E888AD90B1B@ipfire.org> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3121796576638893730==" List-Id: --===============3121796576638893730== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi, > On 17 Apr 2019, at 22:49, Bernhard Bitsch wrote: >=20 > Hi, > some explanations from the author: >=20 >> Gesendet: Mittwoch, 17. April 2019 um 11:31 Uhr >> Von: "Michael Tremer" >> An: "Matthias Fischer" >> Cc: development(a)lists.ipfire.org, BeBiMa >> Betreff: Re: [PATCH] Fix for Bug #12050: Adding fixed leases with one 'add= ' click >>=20 >> Hi, >>=20 >> Thanks Matthias for helping out here. However, I do not get the patch. >>=20 >> There is no explanation about what it is meant to do. The intention alread= y is that the lease is added in the first place. >>=20 >=20 > The intention for the patch is to include new leases at the end with all fi= elds defined by the admin. > Up to now a new lease was added after an additional edit. Those comments *must* be in the code. Nobody goes through thousands of emails= on a mailing list to find out what is actually intended in the code. >=20 >>> On 16 Apr 2019, at 17:41, Matthias Fischer wrote: >>>=20 >>> Signed-off-by: BeBiMa >>> Reviewed-by: Matthias Fischer >>> --- >>> html/cgi-bin/dhcp.cgi | 12 ++++++++++++ >>> 1 file changed, 12 insertions(+) >>>=20 >>> diff --git a/html/cgi-bin/dhcp.cgi b/html/cgi-bin/dhcp.cgi >>> index 675d80012..ba5b54f84 100644 >>> --- a/html/cgi-bin/dhcp.cgi >>> +++ b/html/cgi-bin/dhcp.cgi >>> @@ -412,12 +412,16 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2'= ) { >>> } >>>=20 >>> my $key =3D 0; >>> + my $szc =3D scalar(@current2); >>> CHECK:foreach my $line (@current2) { >>> my @temp =3D split(/\,/,$line); >>> if($dhcpsettings{'KEY2'} ne $key) { >>> # same MAC is OK on different subnets. This test is not complete bec= ause >>> # if ip are not inside a known subnet, I don't warn. >>> # Also it may be needed to put duplicate fixed lease in their right = subnet definition.. >>> + if ((lc($dhcpsettings{'FIX_MAC'}) eq lc($temp[0])) &&(lc($dhcpsetti= ngs{'FIX_ADDR'}) eq lc($temp[1]))) { >>> + last CHECK; >>> + } >>=20 >> Why is this needed? >=20 > Check for existing lease. If is defined already we don't need to l= oop further. >=20 >>=20 >>> foreach my $itf (@ITFs) { >>> my $scoped =3D &General::IpInSubnet($dhcpsettings{'FIX_ADDR'}, >>> $netsettings{"${itf}_NETADDRESS"}, >>> @@ -442,11 +446,19 @@ if ($dhcpsettings{'ACTION'} eq $Lang::tr{'add'}.'2'= ) { >>> $dhcpsettings{'FIX_FILENAME'} =3D &Header::cleanhtml($dhcpsettings{'FIX_= FILENAME'}); >>> $dhcpsettings{'FIX_ROOTPATH'} =3D &Header::cleanhtml($dhcpsettings{'FIX_= ROOTPATH'}); >>> if ($dhcpsettings{'KEY2'} eq '') { #add or edit ? >>=20 >> This block here is not indented correctly. >>=20 >> I understand that the code is already very messy, but we should not make i= t worse either. >>=20 > How should indention be done? By spaces, tabs? How many colums define an in= dent? In the patch it looks like you wrapped the block into another if condition. S= o it has to be indented to make that obvious. > The original file (and many ohters!) have an mixture of tab/space. Should w= e patch that step by step ( tab=3D4 ) to increase readability. This is not about tabs or spaces. > No problem. But this will produce a great number of patches. I made these m= odifications local, but generated the diff with "different spacing isn't a di= fference" option. Please just use =E2=80=9Cgit diff=E2=80=9D. It has a variety of settings that= are just right. > This generated a short diff without real corrections only. >=20 >>> + if($key =3D=3D $szc) { #add >>> + @current2[$key] =3D "$dhcpsettings{'FIX_MAC'},$dhcpsettings{'FI= X_ADDR'},$dhcpsettings{'FIX_ENABLED'},$dhcpsettings{'FIX_NEXTADDR'},$dhcpsett= ings{'FIX_FILENAME'},$dhcpsettings{'FIX_ROOTPATH'},$dhcpsettings{'FIX_REMARK'= }\n"; >>> + # sort newly added/modified entry >>> + &sortcurrent2; >>=20 >> Are you sure we can sort here? >>=20 >> See: https://git.ipfire.org/?p=3Dipfire-2.x.git;a=3Dcommitdiff;h=3D31672dc= 8bdb223ebf425ff96be64318f2d68e0d7 >>=20 >=20 > Yes! Why not? Because of the commit I referred to. >=20 >>> + &General::log($Lang::tr{'fixed ip lease added'}); >>> + $dhcpsettings{'KEY2'} =3D ''; >>> + } else { #edit >>> unshift (@current2, "$dhcpsettings{'FIX_MAC'},$dhcpsettings{'FIX_ADD= R'},$dhcpsettings{'FIX_ENABLED'},$dhcpsettings{'FIX_NEXTADDR'},$dhcpsettings{= 'FIX_FILENAME'},$dhcpsettings{'FIX_ROOTPATH'},$dhcpsettings{'FIX_REMARK'}\n"); >>> &General::log($Lang::tr{'fixed ip lease added'}); >>>=20 >>> # Enter edit mode >>> $dhcpsettings{'KEY2'} =3D 0; >>> + } >>> } else { >>> @current2[$dhcpsettings{'KEY2'}] =3D "$dhcpsettings{'FIX_MAC'},$dhcp= settings{'FIX_ADDR'},$dhcpsettings{'FIX_ENABLED'},$dhcpsettings{'FIX_NEXTADDR= '},$dhcpsettings{'FIX_FILENAME'},$dhcpsettings{'FIX_ROOTPATH'},$dhcpsettings{= 'FIX_REMARK'}\n"; >>> $dhcpsettings{'KEY2'} =3D ''; # End edit mode >>> -- >>> 2.18.0 >>>=20 >>=20 >> -Michael >>=20 >>=20 >=20 > Again, my intention was a quick resolution for the behaviour mentioned in t= he forum post, which initiated my code review of dhcpi.cgi Okay, I will try to explain this one last time - not just only for you, but g= enerally: I am not interested in quick and dirty solutions. That is how you break thing= s. I am interested in well-documented, peer-reviewed and tested code. We are = creating some piece of high-quality software - or aim to do so at least - and= there is no space for quick and dirty. Please figure out how to set up a local Git repository, how to set up a branc= h, how to commit things and what rules there are to follow. Then find out on = how to submit a patchset to the mailing list - after it has been tested. It i= s all in the link that I sent you. This is not a competition about who can submit patches the fastest. > I found a couple of behaviours of this page, which are not obvious or strai= ght forward ( adding dynamic leases to static leases, for example, maybe thi= s is invoked now by my modification). What are those? Why are we not talking about those first and then come up wit= h fixes? The whole DHCP page is a mess. I am not sure if it can even be fixed= or of things won=E2=80=99t just become worse. > I am reviewing this piece of code at the moment and plan to suggest some m= odifications/corrections with formally legal patches. I hope this is ok for t= he core devs. As I said, please follow the process. It is there for a reason. This is not t= o make things difficult. In fact it makes things a lot easier in the long ter= m. -Michael >=20 > Regards, > Bernhard --===============3121796576638893730==--