luci-mod-network: split interface name and protocol validation
authorDaniel Nilsson <dannil+github@protonmail.com>
Sat, 21 Sep 2024 17:38:49 +0000 (19:38 +0200)
committerPaul Donald <newtwen+github@gmail.com>
Mon, 7 Oct 2024 16:07:32 +0000 (18:07 +0200)
commita6c22793ad02f43f17900c87dc216d70476cb767
tree356f062aab81a72d480ed9bbedc2c586b36d9136
parentb42f73fbd4d130fcf4f395b807ff69a4e7439652
luci-mod-network: split interface name and protocol validation

The previous implementation of binding the protocol validation to the
name validation caused problems when creating a new interface where an
already existing interface had the new one's protocol as its name, as the
protocol would be used when validating if an interface of that name already
existed.

Consider the following case:
1. Interface 'gre' with protocol PPPoE is created
2. Interface 'foo' with protocol GRE tunnel over IPv4 (which resolves to
   'gre') tries to be created

Creating interface 'foo' would error out during protocol validation as
'gre' would be passed to the name validation, which in turn would check if
an interface with name 'gre' already exists, which it does.

Instead of reusing the validation logic, simply trigger the name
validation manually as the protocol changes to properly pass the name of
the interface instead of the protocol. This also gives the benefit of
keeping all error states related to the name contained in the appropriate
UI element.

Fixes #7146

Tested-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Signed-off-by: Daniel Nilsson <dannil+github@protonmail.com>
(cherry picked from commit 300961bb1ba7d71b50288b97c0fdeae0c71253e7)
modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js