summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-network
diff options
context:
space:
mode:
authorDaniel Nilsson <dannil+github@protonmail.com>2024-09-21 19:38:49 +0200
committerPaul Donald <newtwen+github@gmail.com>2024-10-07 17:18:33 +0200
commit300961bb1ba7d71b50288b97c0fdeae0c71253e7 (patch)
treed127be9b5772f400c95a7e135d5735c354bf9ac6 /modules/luci-mod-network
parent723eb386340c8da681aa2c5fb60101690b3231fc (diff)
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>
Diffstat (limited to 'modules/luci-mod-network')
-rw-r--r--modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
index db3bb8eaff..112f9436ae 100644
--- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
+++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js
@@ -1237,7 +1237,10 @@ return view.extend({
};
proto = s2.option(form.ListValue, 'proto', _('Protocol'));
- proto.validate = name.validate;
+ proto.onchange = function(ev, section_id, value) {
+ var elem = name.getUIElement(section_id);
+ elem.triggerValidation();
+ };
device = s2.option(widgets.DeviceSelect, 'device', _('Device'));
device.noaliases = false;