Merge pull request #5353 from vgaetera/fix-rule-src/dest-textvalue
[project/luci.git] / modules / luci-mod-network / htdocs / luci-static / resources / view / network / interfaces.js
1 'use strict';
2 'require view';
3 'require dom';
4 'require poll';
5 'require fs';
6 'require ui';
7 'require uci';
8 'require form';
9 'require network';
10 'require firewall';
11 'require tools.widgets as widgets';
12 'require tools.network as nettools';
13
14 var isReadonlyView = !L.hasViewPermission() || null;
15
16 function count_changes(section_id) {
17 var changes = ui.changes.changes, n = 0;
18
19 if (!L.isObject(changes))
20 return n;
21
22 if (Array.isArray(changes.network))
23 for (var i = 0; i < changes.network.length; i++)
24 n += (changes.network[i][1] == section_id);
25
26 if (Array.isArray(changes.dhcp))
27 for (var i = 0; i < changes.dhcp.length; i++)
28 n += (changes.dhcp[i][1] == section_id);
29
30 return n;
31 }
32
33 function render_iface(dev, alias) {
34 var type = dev ? dev.getType() : 'ethernet',
35 up = dev ? dev.isUp() : false;
36
37 return E('span', { class: 'cbi-tooltip-container' }, [
38 E('img', { 'class' : 'middle', 'src': L.resource('icons/%s%s.png').format(
39 alias ? 'alias' : type,
40 up ? '' : '_disabled') }),
41 E('span', { 'class': 'cbi-tooltip ifacebadge large' }, [
42 E('img', { 'src': L.resource('icons/%s%s.png').format(
43 type, up ? '' : '_disabled') }),
44 L.itemlist(E('span', { 'class': 'left' }), [
45 _('Type'), dev ? dev.getTypeI18n() : null,
46 _('Device'), dev ? dev.getName() : _('Not present'),
47 _('Connected'), up ? _('yes') : _('no'),
48 _('MAC'), dev ? dev.getMAC() : null,
49 _('RX'), dev ? '%.2mB (%d %s)'.format(dev.getRXBytes(), dev.getRXPackets(), _('Pkts.')) : null,
50 _('TX'), dev ? '%.2mB (%d %s)'.format(dev.getTXBytes(), dev.getTXPackets(), _('Pkts.')) : null
51 ])
52 ])
53 ]);
54 }
55
56 function render_status(node, ifc, with_device) {
57 var desc = null, c = [];
58
59 if (ifc.isDynamic())
60 desc = _('Virtual dynamic interface');
61 else if (ifc.isAlias())
62 desc = _('Alias Interface');
63 else if (!uci.get('network', ifc.getName()))
64 return L.itemlist(node, [
65 null, E('em', _('Interface is marked for deletion'))
66 ]);
67
68 var i18n = ifc.getI18n();
69 if (i18n)
70 desc = desc ? '%s (%s)'.format(desc, i18n) : i18n;
71
72 var changecount = with_device ? 0 : count_changes(ifc.getName()),
73 ipaddrs = changecount ? [] : ifc.getIPAddrs(),
74 ip6addrs = changecount ? [] : ifc.getIP6Addrs(),
75 errors = ifc.getErrors(),
76 maindev = ifc.getL3Device() || ifc.getDevice(),
77 macaddr = maindev ? maindev.getMAC() : null;
78
79 return L.itemlist(node, [
80 _('Protocol'), with_device ? null : (desc || '?'),
81 _('Device'), with_device ? (maindev ? maindev.getShortName() : E('em', _('Not present'))) : null,
82 _('Uptime'), (!changecount && ifc.isUp()) ? '%t'.format(ifc.getUptime()) : null,
83 _('MAC'), (!changecount && !ifc.isDynamic() && !ifc.isAlias() && macaddr) ? macaddr : null,
84 _('RX'), (!changecount && !ifc.isDynamic() && !ifc.isAlias() && maindev) ? '%.2mB (%d %s)'.format(maindev.getRXBytes(), maindev.getRXPackets(), _('Pkts.')) : null,
85 _('TX'), (!changecount && !ifc.isDynamic() && !ifc.isAlias() && maindev) ? '%.2mB (%d %s)'.format(maindev.getTXBytes(), maindev.getTXPackets(), _('Pkts.')) : null,
86 _('IPv4'), ipaddrs[0],
87 _('IPv4'), ipaddrs[1],
88 _('IPv4'), ipaddrs[2],
89 _('IPv4'), ipaddrs[3],
90 _('IPv4'), ipaddrs[4],
91 _('IPv6'), ip6addrs[0],
92 _('IPv6'), ip6addrs[1],
93 _('IPv6'), ip6addrs[2],
94 _('IPv6'), ip6addrs[3],
95 _('IPv6'), ip6addrs[4],
96 _('IPv6'), ip6addrs[5],
97 _('IPv6'), ip6addrs[6],
98 _('IPv6'), ip6addrs[7],
99 _('IPv6'), ip6addrs[8],
100 _('IPv6'), ip6addrs[9],
101 _('IPv6-PD'), changecount ? null : ifc.getIP6Prefix(),
102 _('Information'), with_device ? null : (ifc.get('auto') != '0' ? null : _('Not started on boot')),
103 _('Error'), errors ? errors[0] : null,
104 _('Error'), errors ? errors[1] : null,
105 _('Error'), errors ? errors[2] : null,
106 _('Error'), errors ? errors[3] : null,
107 _('Error'), errors ? errors[4] : null,
108 null, changecount ? E('a', {
109 href: '#',
110 click: L.bind(ui.changes.displayChanges, ui.changes)
111 }, _('Interface has %d pending changes').format(changecount)) : null
112 ]);
113 }
114
115 function render_modal_status(node, ifc) {
116 var dev = ifc ? (ifc.getDevice() || ifc.getL3Device() || ifc.getL3Device()) : null;
117
118 dom.content(node, [
119 E('img', {
120 'src': L.resource('icons/%s%s.png').format(dev ? dev.getType() : 'ethernet', (dev && dev.isUp()) ? '' : '_disabled'),
121 'title': dev ? dev.getTypeI18n() : _('Not present')
122 }),
123 ifc ? render_status(E('span'), ifc, true) : E('em', _('Interface not present or not connected yet.'))
124 ]);
125
126 return node;
127 }
128
129 function render_ifacebox_status(node, ifc) {
130 var dev = ifc.getL3Device() || ifc.getDevice(),
131 subdevs = dev ? dev.getPorts() : null,
132 c = [ render_iface(dev, ifc.isAlias()) ];
133
134 if (subdevs && subdevs.length) {
135 var sifs = [ ' (' ];
136
137 for (var j = 0; j < subdevs.length; j++)
138 sifs.push(render_iface(subdevs[j]));
139
140 sifs.push(')');
141
142 c.push(E('span', {}, sifs));
143 }
144
145 c.push(E('br'));
146 c.push(E('small', {}, ifc.isAlias() ? _('Alias of "%s"').format(ifc.isAlias())
147 : (dev ? dev.getName() : E('em', _('Not present')))));
148
149 dom.content(node, c);
150
151 return firewall.getZoneByNetwork(ifc.getName()).then(L.bind(function(zone) {
152 this.style.backgroundColor = zone ? zone.getColor() : '#EEEEEE';
153 this.title = zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned');
154 }, node.previousElementSibling));
155 }
156
157 function iface_updown(up, id, ev, force) {
158 var row = document.querySelector('.cbi-section-table-row[data-sid="%s"]'.format(id)),
159 dsc = row.querySelector('[data-name="_ifacestat"] > div'),
160 btns = row.querySelectorAll('.cbi-section-actions .reconnect, .cbi-section-actions .down');
161
162 btns[+!up].blur();
163 btns[+!up].classList.add('spinning');
164
165 btns[0].disabled = true;
166 btns[1].disabled = true;
167
168 if (!up) {
169 L.resolveDefault(fs.exec_direct('/usr/libexec/luci-peeraddr')).then(function(res) {
170 var info = null; try { info = JSON.parse(res); } catch(e) {}
171
172 if (L.isObject(info) &&
173 Array.isArray(info.inbound_interfaces) &&
174 info.inbound_interfaces.filter(function(i) { return i == id })[0]) {
175
176 ui.showModal(_('Confirm disconnect'), [
177 E('p', _('You appear to be currently connected to the device via the "%h" interface. Do you really want to shut down the interface?').format(id)),
178 E('div', { 'class': 'right' }, [
179 E('button', {
180 'class': 'cbi-button cbi-button-neutral',
181 'click': function(ev) {
182 btns[1].classList.remove('spinning');
183 btns[1].disabled = false;
184 btns[0].disabled = false;
185
186 ui.hideModal();
187 }
188 }, _('Cancel')),
189 ' ',
190 E('button', {
191 'class': 'cbi-button cbi-button-negative important',
192 'click': function(ev) {
193 dsc.setAttribute('disconnect', '');
194 dom.content(dsc, E('em', _('Interface is shutting down...')));
195
196 ui.hideModal();
197 }
198 }, _('Disconnect'))
199 ])
200 ]);
201 }
202 else {
203 dsc.setAttribute('disconnect', '');
204 dom.content(dsc, E('em', _('Interface is shutting down...')));
205 }
206 });
207 }
208 else {
209 dsc.setAttribute(up ? 'reconnect' : 'disconnect', force ? 'force' : '');
210 dom.content(dsc, E('em', up ? _('Interface is reconnecting...') : _('Interface is shutting down...')));
211 }
212 }
213
214 function get_netmask(s, use_cfgvalue) {
215 var readfn = use_cfgvalue ? 'cfgvalue' : 'formvalue',
216 addrs = L.toArray(s[readfn](s.section, 'ipaddr')),
217 mask = s[readfn](s.section, 'netmask'),
218 firstsubnet = mask ? addrs[0] + '/' + mask : addrs.filter(function(a) { return a.indexOf('/') > 0 })[0];
219
220 if (firstsubnet == null)
221 return null;
222
223 var subnetmask = firstsubnet.split('/')[1];
224
225 if (!isNaN(subnetmask))
226 subnetmask = network.prefixToMask(+subnetmask);
227
228 return subnetmask;
229 }
230
231 var cbiRichListValue = form.ListValue.extend({
232 renderWidget: function(section_id, option_index, cfgvalue) {
233 var choices = this.transformChoices();
234 var widget = new ui.Dropdown((cfgvalue != null) ? cfgvalue : this.default, choices, {
235 id: this.cbid(section_id),
236 sort: this.keylist,
237 optional: true,
238 select_placeholder: this.select_placeholder || this.placeholder,
239 custom_placeholder: this.custom_placeholder || this.placeholder,
240 validate: L.bind(this.validate, this, section_id),
241 disabled: (this.readonly != null) ? this.readonly : this.map.readonly
242 });
243
244 return widget.render();
245 },
246
247 value: function(value, title, description) {
248 if (description) {
249 form.ListValue.prototype.value.call(this, value, E([], [
250 E('span', { 'class': 'hide-open' }, [ title ]),
251 E('div', { 'class': 'hide-close', 'style': 'min-width:25vw' }, [
252 E('strong', [ title ]),
253 E('br'),
254 E('span', { 'style': 'white-space:normal' }, description)
255 ])
256 ]));
257 }
258 else {
259 form.ListValue.prototype.value.call(this, value, title);
260 }
261 }
262 });
263
264 return view.extend({
265 poll_status: function(map, networks) {
266 var resolveZone = null;
267
268 for (var i = 0; i < networks.length; i++) {
269 var ifc = networks[i],
270 row = map.querySelector('.cbi-section-table-row[data-sid="%s"]'.format(ifc.getName()));
271
272 if (row == null)
273 continue;
274
275 var dsc = row.querySelector('[data-name="_ifacestat"] > div'),
276 box = row.querySelector('[data-name="_ifacebox"] .ifacebox-body'),
277 btn1 = row.querySelector('.cbi-section-actions .reconnect'),
278 btn2 = row.querySelector('.cbi-section-actions .down'),
279 stat = document.querySelector('[id="%s-ifc-status"]'.format(ifc.getName())),
280 resolveZone = render_ifacebox_status(box, ifc),
281 disabled = ifc ? !ifc.isUp() : true,
282 dynamic = ifc ? ifc.isDynamic() : false;
283
284 if (dsc.hasAttribute('reconnect')) {
285 dom.content(dsc, E('em', _('Interface is starting...')));
286 }
287 else if (dsc.hasAttribute('disconnect')) {
288 dom.content(dsc, E('em', _('Interface is stopping...')));
289 }
290 else if (ifc.getProtocol() || uci.get('network', ifc.getName()) == null) {
291 render_status(dsc, ifc, false);
292 }
293 else if (!ifc.getProtocol()) {
294 var e = map.querySelector('[id="cbi-network-%s"] .cbi-button-edit'.format(ifc.getName()));
295 if (e) e.disabled = true;
296
297 var link = L.url('admin/system/opkg') + '?query=luci-proto';
298 dom.content(dsc, [
299 E('em', _('Unsupported protocol type.')), E('br'),
300 E('a', { href: link }, _('Install protocol extensions...'))
301 ]);
302 }
303 else {
304 dom.content(dsc, E('em', _('Interface not present or not connected yet.')));
305 }
306
307 if (stat) {
308 var dev = ifc.getDevice();
309 dom.content(stat, [
310 E('img', {
311 'src': L.resource('icons/%s%s.png').format(dev ? dev.getType() : 'ethernet', (dev && dev.isUp()) ? '' : '_disabled'),
312 'title': dev ? dev.getTypeI18n() : _('Not present')
313 }),
314 render_status(E('span'), ifc, true)
315 ]);
316 }
317
318 btn1.disabled = isReadonlyView || btn1.classList.contains('spinning') || btn2.classList.contains('spinning') || dynamic;
319 btn2.disabled = isReadonlyView || btn1.classList.contains('spinning') || btn2.classList.contains('spinning') || dynamic || disabled;
320 }
321
322 document.querySelectorAll('.port-status-device[data-device]').forEach(function(node) {
323 nettools.updateDevBadge(node, network.instantiateDevice(node.getAttribute('data-device')));
324 });
325
326 document.querySelectorAll('.port-status-link[data-device]').forEach(function(node) {
327 nettools.updatePortStatus(node, network.instantiateDevice(node.getAttribute('data-device')));
328 });
329
330 return Promise.all([ resolveZone, network.flushCache() ]);
331 },
332
333 load: function() {
334 return Promise.all([
335 network.getDSLModemType(),
336 network.getDevices(),
337 fs.lines('/etc/iproute2/rt_tables'),
338 L.resolveDefault(fs.read('/usr/lib/opkg/info/netifd.control')),
339 uci.changes()
340 ]);
341 },
342
343 interfaceBridgeWithIfnameSections: function() {
344 return uci.sections('network', 'interface').filter(function(ns) {
345 return ns.type == 'bridge' && !ns.ports && ns.ifname;
346 });
347 },
348
349 deviceWithIfnameSections: function() {
350 return uci.sections('network', 'device').filter(function(ns) {
351 return ns.type == 'bridge' && !ns.ports && ns.ifname;
352 });
353 },
354
355 interfaceWithIfnameSections: function() {
356 return uci.sections('network', 'interface').filter(function(ns) {
357 return !ns.device && ns.ifname;
358 });
359 },
360
361 handleBridgeMigration: function(ev) {
362 var tasks = [];
363
364 this.interfaceBridgeWithIfnameSections().forEach(function(ns) {
365 var device_name = 'br-' + ns['.name'];
366
367 tasks.push(uci.callAdd('network', 'device', null, {
368 'name': device_name,
369 'type': 'bridge',
370 'ports': L.toArray(ns.ifname),
371 'mtu': ns.mtu,
372 'macaddr': ns.macaddr,
373 'igmp_snooping': ns.igmp_snooping
374 }));
375
376 tasks.push(uci.callSet('network', ns['.name'], {
377 'type': '',
378 'ifname': '',
379 'mtu': '',
380 'macaddr': '',
381 'igmp_snooping': '',
382 'device': device_name
383 }));
384 });
385
386 return Promise.all(tasks)
387 .then(L.bind(ui.changes.init, ui.changes))
388 .then(L.bind(ui.changes.apply, ui.changes));
389 },
390
391 renderBridgeMigration: function() {
392 ui.showModal(_('Network bridge configuration migration'), [
393 E('p', _('The existing network configuration needs to be changed for LuCI to function properly.')),
394 E('p', _('Upon pressing "Continue", bridges configuration will be updated and the network will be restarted to apply the updated configuration.')),
395 E('div', { 'class': 'right' },
396 E('button', {
397 'class': 'btn cbi-button-action important',
398 'click': ui.createHandlerFn(this, 'handleBridgeMigration')
399 }, _('Continue')))
400 ]);
401 },
402
403 handleIfnameMigration: function(ev) {
404 var tasks = [];
405
406 this.deviceWithIfnameSections().forEach(function(ds) {
407 tasks.push(uci.callSet('network', ds['.name'], {
408 'ifname': '',
409 'ports': L.toArray(ds.ifname)
410 }));
411 });
412
413 this.interfaceWithIfnameSections().forEach(function(ns) {
414 tasks.push(uci.callSet('network', ns['.name'], {
415 'ifname': '',
416 'device': ns.ifname
417 }));
418 });
419
420 return Promise.all(tasks)
421 .then(L.bind(ui.changes.init, ui.changes))
422 .then(L.bind(ui.changes.apply, ui.changes));
423 },
424
425 renderIfnameMigration: function() {
426 ui.showModal(_('Network ifname configuration migration'), [
427 E('p', _('The existing network configuration needs to be changed for LuCI to function properly.')),
428 E('p', _('Upon pressing "Continue", ifname options will get renamed and the network will be restarted to apply the updated configuration.')),
429 E('div', { 'class': 'right' },
430 E('button', {
431 'class': 'btn cbi-button-action important',
432 'click': ui.createHandlerFn(this, 'handleIfnameMigration')
433 }, _('Continue')))
434 ]);
435 },
436
437 render: function(data) {
438 var netifdVersion = (data[3] || '').match(/Version: ([^\n]+)/);
439
440 if (netifdVersion && netifdVersion[1] >= "2021-05-26") {
441 if (this.interfaceBridgeWithIfnameSections().length)
442 return this.renderBridgeMigration();
443 else if (this.deviceWithIfnameSections().length || this.interfaceWithIfnameSections().length)
444 return this.renderIfnameMigration();
445 }
446
447 var dslModemType = data[0],
448 netDevs = data[1],
449 m, s, o;
450
451 var rtTables = data[2].map(function(l) {
452 var m = l.trim().match(/^(\d+)\s+(\S+)$/);
453 return m ? [ +m[1], m[2] ] : null;
454 }).filter(function(e) {
455 return e && e[0] > 0;
456 });
457
458 m = new form.Map('network');
459 m.tabbed = true;
460 m.chain('dhcp');
461
462 s = m.section(form.GridSection, 'interface', _('Interfaces'));
463 s.anonymous = true;
464 s.addremove = true;
465 s.addbtntitle = _('Add new interface...');
466
467 s.load = function() {
468 return Promise.all([
469 network.getNetworks(),
470 firewall.getZones()
471 ]).then(L.bind(function(data) {
472 this.networks = data[0];
473 this.zones = data[1];
474 }, this));
475 };
476
477 s.tab('general', _('General Settings'));
478 s.tab('advanced', _('Advanced Settings'));
479 s.tab('physical', _('Physical Settings'));
480 s.tab('brport', _('Bridge port specific options'));
481 s.tab('bridgevlan', _('Bridge VLAN filtering'));
482 s.tab('firewall', _('Firewall Settings'));
483 s.tab('dhcp', _('DHCP Server'));
484
485 s.cfgsections = function() {
486 return this.networks.map(function(n) { return n.getName() })
487 .filter(function(n) { return n != 'loopback' });
488 };
489
490 s.modaltitle = function(section_id) {
491 return _('Interfaces') + ' » ' + section_id.toUpperCase();
492 };
493
494 s.renderRowActions = function(section_id) {
495 var tdEl = this.super('renderRowActions', [ section_id, _('Edit') ]),
496 net = this.networks.filter(function(n) { return n.getName() == section_id })[0],
497 disabled = net ? !net.isUp() : true,
498 dynamic = net ? net.isDynamic() : false;
499
500 dom.content(tdEl.lastChild, [
501 E('button', {
502 'class': 'cbi-button cbi-button-neutral reconnect',
503 'click': iface_updown.bind(this, true, section_id),
504 'title': _('Reconnect this interface'),
505 'disabled': dynamic ? 'disabled' : null
506 }, _('Restart')),
507 E('button', {
508 'class': 'cbi-button cbi-button-neutral down',
509 'click': iface_updown.bind(this, false, section_id),
510 'title': _('Shutdown this interface'),
511 'disabled': (dynamic || disabled) ? 'disabled' : null
512 }, _('Stop')),
513 tdEl.lastChild.firstChild,
514 tdEl.lastChild.lastChild
515 ]);
516
517 if (!dynamic && net && !uci.get('network', net.getName())) {
518 tdEl.lastChild.childNodes[0].disabled = true;
519 tdEl.lastChild.childNodes[2].disabled = true;
520 tdEl.lastChild.childNodes[3].disabled = true;
521 }
522
523 return tdEl;
524 };
525
526 s.addModalOptions = function(s) {
527 var protoval = uci.get('network', s.section, 'proto'),
528 protoclass = protoval ? network.getProtocol(protoval) : null,
529 o, proto_select, proto_switch, type, stp, igmp, ss, so;
530
531 if (!protoval)
532 return;
533
534 return network.getNetwork(s.section).then(L.bind(function(ifc) {
535 var protocols = network.getProtocols();
536
537 protocols.sort(function(a, b) {
538 return a.getProtocol() > b.getProtocol();
539 });
540
541 o = s.taboption('general', form.DummyValue, '_ifacestat_modal', _('Status'));
542 o.modalonly = true;
543 o.cfgvalue = L.bind(function(section_id) {
544 var net = this.networks.filter(function(n) { return n.getName() == section_id })[0];
545
546 return render_modal_status(E('div', {
547 'id': '%s-ifc-status'.format(section_id),
548 'class': 'ifacebadge large'
549 }), net);
550 }, this);
551 o.write = function() {};
552
553
554 proto_select = s.taboption('general', form.ListValue, 'proto', _('Protocol'));
555 proto_select.modalonly = true;
556
557 proto_switch = s.taboption('general', form.Button, '_switch_proto');
558 proto_switch.modalonly = true;
559 proto_switch.title = _('Really switch protocol?');
560 proto_switch.inputtitle = _('Switch protocol');
561 proto_switch.inputstyle = 'apply';
562 proto_switch.onclick = L.bind(function(ev) {
563 s.map.save()
564 .then(L.bind(m.load, m))
565 .then(L.bind(m.render, m))
566 .then(L.bind(this.renderMoreOptionsModal, this, s.section));
567 }, this);
568
569 o = s.taboption('general', widgets.DeviceSelect, '_net_device', _('Device'));
570 o.ucioption = 'device';
571 o.nobridges = false;
572 o.optional = false;
573 o.network = ifc.getName();
574
575 o = s.taboption('general', form.Flag, 'auto', _('Bring up on boot'));
576 o.modalonly = true;
577 o.default = o.enabled;
578
579 if (L.hasSystemFeature('firewall')) {
580 o = s.taboption('firewall', widgets.ZoneSelect, '_zone', _('Create / Assign firewall-zone'), _('Choose the firewall zone you want to assign to this interface. Select <em>unspecified</em> to remove the interface from the associated zone or fill out the <em>custom</em> field to define a new zone and attach the interface to it.'));
581 o.network = ifc.getName();
582 o.optional = true;
583
584 o.cfgvalue = function(section_id) {
585 return firewall.getZoneByNetwork(ifc.getName()).then(function(zone) {
586 return (zone != null ? zone.getName() : null);
587 });
588 };
589
590 o.write = o.remove = function(section_id, value) {
591 return Promise.all([
592 firewall.getZoneByNetwork(ifc.getName()),
593 (value != null) ? firewall.getZone(value) : null
594 ]).then(function(data) {
595 var old_zone = data[0],
596 new_zone = data[1];
597
598 if (old_zone == null && new_zone == null && (value == null || value == ''))
599 return;
600
601 if (old_zone != null && new_zone != null && old_zone.getName() == new_zone.getName())
602 return;
603
604 if (old_zone != null)
605 old_zone.deleteNetwork(ifc.getName());
606
607 if (new_zone != null)
608 new_zone.addNetwork(ifc.getName());
609 else if (value != null)
610 return firewall.addZone(value).then(function(new_zone) {
611 new_zone.addNetwork(ifc.getName());
612 });
613 });
614 };
615 }
616
617 for (var i = 0; i < protocols.length; i++) {
618 proto_select.value(protocols[i].getProtocol(), protocols[i].getI18n());
619
620 if (protocols[i].getProtocol() != uci.get('network', s.section, 'proto'))
621 proto_switch.depends('proto', protocols[i].getProtocol());
622 }
623
624 if (L.hasSystemFeature('dnsmasq') || L.hasSystemFeature('odhcpd')) {
625 o = s.taboption('dhcp', form.SectionValue, '_dhcp', form.TypedSection, 'dhcp');
626
627 ss = o.subsection;
628 ss.uciconfig = 'dhcp';
629 ss.addremove = false;
630 ss.anonymous = true;
631
632 ss.tab('general', _('General Setup'));
633 ss.tab('advanced', _('Advanced Settings'));
634 ss.tab('ipv6', _('IPv6 Settings'));
635 ss.tab('ipv6-ra', _('IPv6 RA Settings'));
636
637 ss.filter = function(section_id) {
638 return (uci.get('dhcp', section_id, 'interface') == ifc.getName());
639 };
640
641 ss.renderSectionPlaceholder = function() {
642 return E('div', { 'class': 'cbi-section-create' }, [
643 E('p', _('No DHCP Server configured for this interface') + ' &#160; '),
644 E('button', {
645 'class': 'cbi-button cbi-button-add',
646 'title': _('Setup DHCP Server'),
647 'click': ui.createHandlerFn(this, function(section_id, ev) {
648 this.map.save(function() {
649 uci.add('dhcp', 'dhcp', section_id);
650 uci.set('dhcp', section_id, 'interface', section_id);
651
652 if (protoval == 'static') {
653 uci.set('dhcp', section_id, 'start', 100);
654 uci.set('dhcp', section_id, 'limit', 150);
655 uci.set('dhcp', section_id, 'leasetime', '12h');
656 }
657 else {
658 uci.set('dhcp', section_id, 'ignore', 1);
659 }
660 });
661 }, ifc.getName())
662 }, _('Setup DHCP Server'))
663 ]);
664 };
665
666 ss.taboption('general', form.Flag, 'ignore', _('Ignore interface'), _('Disable <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr> for this interface.'));
667
668 if (protoval == 'static') {
669 so = ss.taboption('general', form.Value, 'start', _('Start'), _('Lowest leased address as offset from the network address.'));
670 so.optional = true;
671 so.datatype = 'or(uinteger,ip4addr("nomask"))';
672 so.default = '100';
673
674 so = ss.taboption('general', form.Value, 'limit', _('Limit'), _('Maximum number of leased addresses.'));
675 so.optional = true;
676 so.datatype = 'uinteger';
677 so.default = '150';
678
679 so = ss.taboption('general', form.Value, 'leasetime', _('Lease time'), _('Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>).'));
680 so.optional = true;
681 so.default = '12h';
682
683 so = ss.taboption('advanced', form.Flag, 'dynamicdhcp', _('Dynamic <abbr title="Dynamic Host Configuration Protocol">DHCP</abbr>'), _('Dynamically allocate DHCP addresses for clients. If disabled, only clients having static leases will be served.'));
684 so.default = so.enabled;
685
686 ss.taboption('advanced', form.Flag, 'force', _('Force'), _('Force DHCP on this network even if another server is detected.'));
687
688 // XXX: is this actually useful?
689 //ss.taboption('advanced', form.Value, 'name', _('Name'), _('Define a name for this network.'));
690
691 so = ss.taboption('advanced', form.Value, 'netmask', _('<abbr title="Internet Protocol Version 4">IPv4</abbr>-Netmask'), _('Override the netmask sent to clients. Normally it is calculated from the subnet that is served.'));
692 so.optional = true;
693 so.datatype = 'ip4addr';
694
695 so.render = function(option_index, section_id, in_table) {
696 this.placeholder = get_netmask(s, true);
697 return form.Value.prototype.render.apply(this, [ option_index, section_id, in_table ]);
698 };
699
700 so.validate = function(section_id, value) {
701 var uielem = this.getUIElement(section_id);
702 if (uielem)
703 uielem.setPlaceholder(get_netmask(s, false));
704 return form.Value.prototype.validate.apply(this, [ section_id, value ]);
705 };
706
707 ss.taboption('advanced', form.DynamicList, 'dhcp_option', _('DHCP-Options'), _('Define additional DHCP options, for example "<code>6,192.168.2.1,192.168.2.2</code>" which advertises different DNS servers to clients.'));
708 }
709
710
711 var has_other_master = uci.sections('dhcp', 'dhcp').filter(function(s) {
712 return (s.interface != ifc.getName() && s.master == '1');
713 })[0];
714
715 so = ss.taboption('ipv6', form.Flag , 'master', _('Designated master'));
716 so.readonly = has_other_master ? true : false;
717 so.description = has_other_master
718 ? _('Interface "%h" is already marked as designated master.').format(has_other_master.interface || has_other_master['.name'])
719 : _('Set this interface as master for RA and DHCPv6 relaying as well as NDP proxying.')
720 ;
721
722 so.validate = function(section_id, value) {
723 var hybrid_downstream_desc = _('Operate in <em>relay mode</em> if a designated master interface is configured and active, otherwise fall back to <em>server mode</em>.'),
724 ndp_downstream_desc = _('Operate in <em>relay mode</em> if a designated master interface is configured and active, otherwise disable <abbr title="Neighbour Discovery Protocol">NDP</abbr> proxying.'),
725 hybrid_master_desc = _('Operate in <em>relay mode</em> if an upstream IPv6 prefix is present, otherwise disable service.'),
726 checked = this.formvalue(section_id),
727 dhcpv6 = this.section.getOption('dhcpv6').getUIElement(section_id),
728 ndp = this.section.getOption('ndp').getUIElement(section_id),
729 ra = this.section.getOption('ra').getUIElement(section_id);
730
731 if (checked == '1' || protoval != 'static') {
732 dhcpv6.node.querySelector('li[data-value="server"]').setAttribute('unselectable', '');
733
734 if (dhcpv6.getValue() == 'server')
735 dhcpv6.setValue('hybrid');
736
737 ra.node.querySelector('li[data-value="server"]').setAttribute('unselectable', '');
738
739 if (ra.getValue() == 'server')
740 ra.setValue('hybrid');
741 }
742
743 if (checked == '1') {
744 dhcpv6.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = hybrid_master_desc;
745 ra.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = hybrid_master_desc;
746 ndp.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = hybrid_master_desc;
747 }
748 else {
749 if (protoval == 'static') {
750 dhcpv6.node.querySelector('li[data-value="server"]').removeAttribute('unselectable');
751 ra.node.querySelector('li[data-value="server"]').removeAttribute('unselectable');
752 }
753
754 dhcpv6.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = hybrid_downstream_desc;
755 ra.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = hybrid_downstream_desc;
756 ndp.node.querySelector('li[data-value="hybrid"] > div > span').innerHTML = ndp_downstream_desc ;
757 }
758
759 return true;
760 };
761
762
763 so = ss.taboption('ipv6', cbiRichListValue, 'ra', _('<abbr title="Router Advertisement">RA</abbr>-Service'),
764 _('Configures the operation mode of the <abbr title="Router Advertisement">RA</abbr> service on this interface.'));
765 so.value('', _('disabled'),
766 _('Do not send any <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr> messages on this interface.'));
767 so.value('server', _('server mode'),
768 _('Send <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr> messages advertising this device as IPv6 router.'));
769 so.value('relay', _('relay mode'),
770 _('Forward <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr> messages received on the designated master interface to downstream interfaces.'));
771 so.value('hybrid', _('hybrid mode'), ' ');
772
773
774 so = ss.taboption('ipv6-ra', cbiRichListValue, 'ra_default', _('Default router'),
775 _('Configures the default router advertisement in <abbr title="Router Advertisement">RA</abbr> messages.'));
776 so.value('', _('automatic'),
777 _('Announce this device as default router if a local IPv6 default route is present.'));
778 so.value('1', _('on available prefix'),
779 _('Announce this device as default router if a public IPv6 prefix is available, regardless of local default route availability.'));
780 so.value('2', _('forced'),
781 _('Announce this device as default router regardless of whether a prefix or default route is present.'));
782 so.depends('ra', 'server');
783 so.depends({ ra: 'hybrid', master: '0' });
784
785 so = ss.taboption('ipv6-ra', form.Flag, 'ra_slaac', _('Enable <abbr title="Stateless Address Auto Config">SLAAC</abbr>'),
786 _('Set the autonomous address-configuration flag in the prefix information options of sent <abbr title="Router Advertisement">RA</abbr> messages. When enabled, clients will perform stateless IPv6 address autoconfiguration.'));
787 so.default = so.enabled;
788 so.depends('ra', 'server');
789 so.depends({ ra: 'hybrid', master: '0' });
790
791 so = ss.taboption('ipv6-ra', cbiRichListValue, 'ra_flags', _('<abbr title="Router Advertisement">RA</abbr> Flags'),
792 _('Specifies the flags sent in <abbr title="Router Advertisement">RA</abbr> messages, for example to instruct clients to request further information via stateful DHCPv6.'));
793 so.value('managed-config', _('managed config (M)'),
794 _('The <em>Managed address configuration</em> (M) flag indicates that IPv6 addresses are available via DHCPv6.'));
795 so.value('other-config', _('other config (O)'),
796 _('The <em>Other configuration</em> (O) flag indicates that other information, such as DNS servers, is available via DHCPv6.'));
797 so.value('home-agent', _('mobile home agent (H)'),
798 _('The <em>Mobile IPv6 Home Agent</em> (H) flag indicates that the device is also acting as Mobile IPv6 home agent on this link.'));
799 so.multiple = true;
800 so.select_placeholder = _('none');
801 so.depends('ra', 'server');
802 so.depends({ ra: 'hybrid', master: '0' });
803 so.cfgvalue = function(section_id) {
804 var flags = L.toArray(uci.get('dhcp', section_id, 'ra_flags'));
805 return flags.length ? flags : [ 'other-config' ];
806 };
807 so.remove = function(section_id) {
808 uci.set('dhcp', section_id, 'ra_flags', [ 'none' ]);
809 };
810
811 so = ss.taboption('ipv6-ra', form.Value, 'ra_maxinterval', _('Max <abbr title="Router Advertisement">RA</abbr> interval'), _('Maximum time allowed between sending unsolicited <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr>. Default is 600 seconds.'));
812 so.optional = true;
813 so.datatype = 'uinteger';
814 so.placeholder = '600';
815 so.depends('ra', 'server');
816 so.depends({ ra: 'hybrid', master: '0' });
817
818 so = ss.taboption('ipv6-ra', form.Value, 'ra_mininterval', _('Min <abbr title="Router Advertisement">RA</abbr> interval'), _('Minimum time allowed between sending unsolicited <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr>. Default is 200 seconds.'));
819 so.optional = true;
820 so.datatype = 'uinteger';
821 so.placeholder = '200';
822 so.depends('ra', 'server');
823 so.depends({ ra: 'hybrid', master: '0' });
824
825 so = ss.taboption('ipv6-ra', form.Value, 'ra_lifetime', _('<abbr title="Router Advertisement">RA</abbr> Lifetime'), _('Router Lifetime published in <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr> messages. Maximum is 9000 seconds.'));
826 so.optional = true;
827 so.datatype = 'range(0, 9000)';
828 so.placeholder = '1800';
829 so.depends('ra', 'server');
830 so.depends({ ra: 'hybrid', master: '0' });
831
832 so = ss.taboption('ipv6-ra', form.Value, 'ra_mtu', _('<abbr title="Router Advertisement">RA</abbr> MTU'), _('The <abbr title="Maximum Transmission Unit">MTU</abbr> to be published in <abbr title="Router Advertisement, ICMPv6 Type 134">RA</abbr> messages. Minimum is 1280 bytes.'));
833 so.optional = true;
834 so.datatype = 'range(1280, 65535)';
835 so.depends('ra', 'server');
836 so.depends({ ra: 'hybrid', master: '0' });
837 so.load = function(section_id) {
838 var dev = ifc.getL3Device();
839
840 if (dev) {
841 var path = "/proc/sys/net/ipv6/conf/%s/mtu".format(dev.getName());
842
843 return L.resolveDefault(fs.read(path), dev.getMTU()).then(L.bind(function(data) {
844 this.placeholder = data;
845 }, this));
846 }
847 };
848
849 so = ss.taboption('ipv6-ra', form.Value, 'ra_hoplimit', _('<abbr title="Router Advertisement">RA</abbr> Hop Limit'), _('The maximum hops to be published in <abbr title="Router Advertisement">RA</abbr> messages. Maximum is 255 hops.'));
850 so.optional = true;
851 so.datatype = 'range(0, 255)';
852 so.depends('ra', 'server');
853 so.depends({ ra: 'hybrid', master: '0' });
854 so.load = function(section_id) {
855 var dev = ifc.getL3Device();
856
857 if (dev) {
858 var path = "/proc/sys/net/ipv6/conf/%s/hop_limit".format(dev.getName());
859
860 return L.resolveDefault(fs.read(path), 64).then(L.bind(function(data) {
861 this.placeholder = data;
862 }, this));
863 }
864 };
865
866
867 so = ss.taboption('ipv6', cbiRichListValue, 'dhcpv6', _('DHCPv6-Service'),
868 _('Configures the operation mode of the DHCPv6 service on this interface.'));
869 so.value('', _('disabled'),
870 _('Do not offer DHCPv6 service on this interface.'));
871 so.value('server', _('server mode'),
872 _('Provide a DHCPv6 server on this interface and reply to DHCPv6 solicitations and requests.'));
873 so.value('relay', _('relay mode'),
874 _('Forward DHCPv6 messages between the designated master interface and downstream interfaces.'));
875 so.value('hybrid', _('hybrid mode'), ' ');
876
877
878 so = ss.taboption('ipv6', form.DynamicList, 'dns', _('Announced IPv6 DNS servers'),
879 _('Specifies a fixed list of IPv6 DNS server addresses to announce via DHCPv6. If left unspecified, the device will announce itself as IPv6 DNS server unless the <em>Local IPv6 DNS server</em> option is disabled.'));
880 so.datatype = 'ip6addr("nomask")'; /* restrict to IPv6 only for now since dnsmasq (DHCPv4) does not honour this option */
881 so.depends('dhcpv6', 'server');
882 so.depends({ dhcpv6: 'hybrid', master: '0' });
883
884 so = ss.taboption('ipv6', form.Flag, 'dns_service', _('Local IPv6 DNS server'),
885 _('Announce this device as IPv6 DNS server.'));
886 so.default = so.enabled;
887 so.depends({ dhcpv6: 'server', dns: /^$/ });
888 so.depends({ dhcpv6: 'hybrid', dns: /^$/, master: '0' });
889
890 so = ss.taboption('ipv6', form.DynamicList, 'domain', _('Announced DNS domains'),
891 _('Specifies a fixed list of DNS search domains to announce via DHCPv6. If left unspecified, the local device DNS search domain will be announced.'));
892 so.datatype = 'hostname';
893 so.depends('dhcpv6', 'server');
894 so.depends({ dhcpv6: 'hybrid', master: '0' });
895
896
897 so = ss.taboption('ipv6', cbiRichListValue, 'ndp', _('<abbr title="Neighbour Discovery Protocol">NDP</abbr>-Proxy'),
898 _('Configures the operation mode of the NDP proxy service on this interface.'));
899 so.value('', _('disabled'),
900 _('Do not proxy any <abbr title="Neighbour Discovery Protocol">NDP</abbr> packets.'));
901 so.value('relay', _('relay mode'),
902 _('Forward <abbr title="Neighbour Discovery Protocol">NDP</abbr> <abbr title="Neighbour Solicitation, Type 135">NS</abbr> and <abbr title="Neighbour Advertisement, Type 136">NA</abbr> messages between the designated master interface and downstream interfaces.'));
903 so.value('hybrid', _('hybrid mode'), ' ');
904
905
906 so = ss.taboption('ipv6', form.Flag, 'ndproxy_routing', _('Learn routes'), _('Setup routes for proxied IPv6 neighbours.'));
907 so.default = so.enabled;
908 so.depends('ndp', 'relay');
909 so.depends('ndp', 'hybrid');
910
911 so = ss.taboption('ipv6', form.Flag, 'ndproxy_slave', _('NDP-Proxy slave'), _('Set interface as NDP-Proxy external slave. Default is off.'));
912 so.depends({ ndp: 'relay', master: '0' });
913 so.depends({ ndp: 'hybrid', master: '0' });
914 }
915
916 ifc.renderFormOptions(s);
917
918 // Common interface options
919 o = nettools.replaceOption(s, 'advanced', form.Flag, 'defaultroute', _('Use default gateway'), _('If unchecked, no default route is configured'));
920 o.default = o.enabled;
921
922 if (protoval != 'static') {
923 o = nettools.replaceOption(s, 'advanced', form.Flag, 'peerdns', _('Use DNS servers advertised by peer'), _('If unchecked, the advertised DNS server addresses are ignored'));
924 o.default = o.enabled;
925 }
926
927 o = nettools.replaceOption(s, 'advanced', form.DynamicList, 'dns', _('Use custom DNS servers'));
928 if (protoval != 'static')
929 o.depends('peerdns', '0');
930 o.datatype = 'ipaddr';
931
932 o = nettools.replaceOption(s, 'advanced', form.DynamicList, 'dns_search', _('DNS search domains'));
933 if (protoval != 'static')
934 o.depends('peerdns', '0');
935 o.datatype = 'hostname';
936
937 o = nettools.replaceOption(s, 'advanced', form.Value, 'dns_metric', _('DNS weight'), _('The DNS server entries in the local resolv.conf are primarily sorted by the weight specified here'));
938 o.datatype = 'uinteger';
939 o.placeholder = '0';
940
941 o = nettools.replaceOption(s, 'advanced', form.Value, 'metric', _('Use gateway metric'));
942 o.datatype = 'uinteger';
943 o.placeholder = '0';
944
945 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip4table', _('Override IPv4 routing table'));
946 o.datatype = 'or(uinteger, string)';
947 for (var i = 0; i < rtTables.length; i++)
948 o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][1], rtTables[i][0]));
949
950 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6table', _('Override IPv6 routing table'));
951 o.datatype = 'or(uinteger, string)';
952 for (var i = 0; i < rtTables.length; i++)
953 o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][1], rtTables[i][0]));
954
955 if (protoval == 'dhcpv6') {
956 o = nettools.replaceOption(s, 'advanced', form.Flag, 'sourcefilter', _('IPv6 source routing'), _('Automatically handle multiple uplink interfaces using source-based policy routing.'));
957 o.default = o.enabled;
958 }
959
960 o = nettools.replaceOption(s, 'advanced', form.Flag, 'delegate', _('Delegate IPv6 prefixes'), _('Enable downstream delegation of IPv6 prefixes available on this interface'));
961 o.default = o.enabled;
962
963 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6assign', _('IPv6 assignment length'), _('Assign a part of given length of every public IPv6-prefix to this interface'));
964 o.value('', _('disabled'));
965 o.value('64');
966 o.datatype = 'max(128)';
967
968 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6hint', _('IPv6 assignment hint'), _('Assign prefix parts using this hexadecimal subprefix ID for this interface.'));
969 o.placeholder = '0';
970 o.validate = function(section_id, value) {
971 if (value == null || value == '')
972 return true;
973
974 var n = parseInt(value, 16);
975
976 if (!/^(0x)?[0-9a-fA-F]+$/.test(value) || isNaN(n) || n >= 0xffffffff)
977 return _('Expecting a hexadecimal assignment hint');
978
979 return true;
980 };
981 for (var i = 33; i <= 64; i++)
982 o.depends('ip6assign', String(i));
983
984
985 o = nettools.replaceOption(s, 'advanced', form.DynamicList, 'ip6class', _('IPv6 prefix filter'), _('If set, downstream subnets are only allocated from the given IPv6 prefix classes.'));
986 o.value('local', 'local (%s)'.format(_('Local ULA')));
987
988 var prefixClasses = {};
989
990 this.networks.forEach(function(net) {
991 var prefixes = net._ubus('ipv6-prefix');
992 if (Array.isArray(prefixes)) {
993 prefixes.forEach(function(pfx) {
994 if (L.isObject(pfx) && typeof(pfx['class']) == 'string') {
995 prefixClasses[pfx['class']] = prefixClasses[pfx['class']] || {};
996 prefixClasses[pfx['class']][net.getName()] = true;
997 }
998 });
999 }
1000 });
1001
1002 Object.keys(prefixClasses).sort().forEach(function(c) {
1003 var networks = Object.keys(prefixClasses[c]).sort().join(', ');
1004 o.value(c, (c != networks) ? '%s (%s)'.format(c, networks) : c);
1005 });
1006
1007
1008 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6ifaceid', _('IPv6 suffix'), _("Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or '::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') for the interface."));
1009 o.datatype = 'ip6hostid';
1010 o.placeholder = '::1';
1011
1012 o = nettools.replaceOption(s, 'advanced', form.Value, 'ip6weight', _('IPv6 preference'), _('When delegating prefixes to multiple downstreams, interfaces with a higher preference value are considered first when allocating subnets.'));
1013 o.datatype = 'uinteger';
1014 o.placeholder = '0';
1015
1016 for (var i = 0; i < s.children.length; i++) {
1017 o = s.children[i];
1018
1019 switch (o.option) {
1020 case 'proto':
1021 case 'auto':
1022 case '_dhcp':
1023 case '_zone':
1024 case '_switch_proto':
1025 case '_ifacestat_modal':
1026 continue;
1027
1028 case 'igmp_snooping':
1029 case 'stp':
1030 case 'type':
1031 case '_net_device':
1032 var deps = [];
1033 for (var j = 0; j < protocols.length; j++) {
1034 if (!protocols[j].isVirtual()) {
1035 if (o.deps.length)
1036 for (var k = 0; k < o.deps.length; k++)
1037 deps.push(Object.assign({ proto: protocols[j].getProtocol() }, o.deps[k]));
1038 else
1039 deps.push({ proto: protocols[j].getProtocol() });
1040 }
1041 }
1042 o.deps = deps;
1043 break;
1044
1045 default:
1046 if (o.deps.length)
1047 for (var j = 0; j < o.deps.length; j++)
1048 o.deps[j].proto = protoval;
1049 else
1050 o.depends('proto', protoval);
1051 }
1052 }
1053
1054 this.activeSection = s.section;
1055 }, this));
1056 };
1057
1058 s.handleModalCancel = function(/* ... */) {
1059 var type = uci.get('network', this.activeSection || this.addedSection, 'type'),
1060 device = (type == 'bridge') ? 'br-%s'.format(this.activeSection || this.addedSection) : null;
1061
1062 uci.sections('network', 'bridge-vlan', function(bvs) {
1063 if (device != null && bvs.device == device)
1064 uci.remove('network', bvs['.name']);
1065 });
1066
1067 return form.GridSection.prototype.handleModalCancel.apply(this, arguments);
1068 };
1069
1070 s.handleAdd = function(ev) {
1071 var m2 = new form.Map('network'),
1072 s2 = m2.section(form.NamedSection, '_new_'),
1073 protocols = network.getProtocols(),
1074 proto, name, device;
1075
1076 protocols.sort(function(a, b) {
1077 return a.getProtocol() > b.getProtocol();
1078 });
1079
1080 s2.render = function() {
1081 return Promise.all([
1082 {},
1083 this.renderUCISection('_new_')
1084 ]).then(this.renderContents.bind(this));
1085 };
1086
1087 name = s2.option(form.Value, 'name', _('Name'));
1088 name.rmempty = false;
1089 name.datatype = 'uciname';
1090 name.placeholder = _('New interface name…');
1091 name.validate = function(section_id, value) {
1092 if (uci.get('network', value) != null)
1093 return _('The interface name is already used');
1094
1095 var pr = network.getProtocol(proto.formvalue(section_id), value),
1096 ifname = pr.isVirtual() ? '%s-%s'.format(pr.getProtocol(), value) : 'br-%s'.format(value);
1097
1098 if (value.length > 15)
1099 return _('The interface name is too long');
1100
1101 return true;
1102 };
1103
1104 proto = s2.option(form.ListValue, 'proto', _('Protocol'));
1105 proto.validate = name.validate;
1106
1107 device = s2.option(widgets.DeviceSelect, 'device', _('Device'));
1108 device.noaliases = false;
1109 device.optional = false;
1110
1111 for (var i = 0; i < protocols.length; i++) {
1112 proto.value(protocols[i].getProtocol(), protocols[i].getI18n());
1113
1114 if (!protocols[i].isVirtual())
1115 device.depends('proto', protocols[i].getProtocol());
1116 }
1117
1118 m2.render().then(L.bind(function(nodes) {
1119 ui.showModal(_('Add new interface...'), [
1120 nodes,
1121 E('div', { 'class': 'right' }, [
1122 E('button', {
1123 'class': 'btn',
1124 'click': ui.hideModal
1125 }, _('Cancel')), ' ',
1126 E('button', {
1127 'class': 'cbi-button cbi-button-positive important',
1128 'click': ui.createHandlerFn(this, function(ev) {
1129 var nameval = name.isValid('_new_') ? name.formvalue('_new_') : null,
1130 protoval = proto.isValid('_new_') ? proto.formvalue('_new_') : null,
1131 protoclass = protoval ? network.getProtocol(protoval, nameval) : null;
1132
1133 if (nameval == null || protoval == null || nameval == '' || protoval == '')
1134 return;
1135
1136 return protoclass.isCreateable(nameval).then(function(checkval) {
1137 if (checkval != null) {
1138 ui.addNotification(null,
1139 E('p', _('New interface for "%s" can not be created: %s').format(protoclass.getI18n(), checkval)));
1140 ui.hideModal();
1141 return;
1142 }
1143
1144 return m.save(function() {
1145 var section_id = uci.add('network', 'interface', nameval);
1146
1147 protoclass.set('proto', protoval);
1148 protoclass.addDevice(device.formvalue('_new_'));
1149
1150 m.children[0].addedSection = section_id;
1151 }).then(L.bind(m.children[0].renderMoreOptionsModal, m.children[0], nameval));
1152 });
1153 })
1154 }, _('Create interface'))
1155 ])
1156 ], 'cbi-modal');
1157
1158 nodes.querySelector('[id="%s"] input[type="text"]'.format(name.cbid('_new_'))).focus();
1159 }, this));
1160 };
1161
1162 s.handleRemove = function(section_id, ev) {
1163 return network.deleteNetwork(section_id).then(L.bind(function(section_id, ev) {
1164 return form.GridSection.prototype.handleRemove.apply(this, [section_id, ev]);
1165 }, this, section_id, ev));
1166 };
1167
1168 o = s.option(form.DummyValue, '_ifacebox');
1169 o.modalonly = false;
1170 o.textvalue = function(section_id) {
1171 var net = this.section.networks.filter(function(n) { return n.getName() == section_id })[0],
1172 zone = net ? this.section.zones.filter(function(z) { return !!z.getNetworks().filter(function(n) { return n == section_id })[0] })[0] : null;
1173
1174 if (!net)
1175 return;
1176
1177 var node = E('div', { 'class': 'ifacebox' }, [
1178 E('div', {
1179 'class': 'ifacebox-head',
1180 'style': 'background-color:%s'.format(zone ? zone.getColor() : '#EEEEEE'),
1181 'title': zone ? _('Part of zone %q').format(zone.getName()) : _('No zone assigned')
1182 }, E('strong', net.getName().toUpperCase())),
1183 E('div', {
1184 'class': 'ifacebox-body',
1185 'id': '%s-ifc-devices'.format(section_id),
1186 'data-network': section_id
1187 }, [
1188 E('img', {
1189 'src': L.resource('icons/ethernet_disabled.png'),
1190 'style': 'width:16px; height:16px'
1191 }),
1192 E('br'), E('small', '?')
1193 ])
1194 ]);
1195
1196 render_ifacebox_status(node.childNodes[1], net);
1197
1198 return node;
1199 };
1200
1201 o = s.option(form.DummyValue, '_ifacestat');
1202 o.modalonly = false;
1203 o.textvalue = function(section_id) {
1204 var net = this.section.networks.filter(function(n) { return n.getName() == section_id })[0];
1205
1206 if (!net)
1207 return;
1208
1209 var node = E('div', { 'id': '%s-ifc-description'.format(section_id) });
1210
1211 render_status(node, net, false);
1212
1213 return node;
1214 };
1215
1216 o = s.taboption('advanced', form.Flag, 'delegate', _('Use builtin IPv6-management'));
1217 o.modalonly = true;
1218 o.default = o.enabled;
1219
1220 o = s.taboption('advanced', form.Flag, 'force_link', _('Force link'), _('Set interface properties regardless of the link carrier (If set, carrier sense events do not invoke hotplug handlers).'));
1221 o.modalonly = true;
1222 o.defaults = {
1223 '1': [{ proto: 'static' }],
1224 '0': []
1225 };
1226
1227
1228 // Device configuration
1229 s = m.section(form.GridSection, 'device', _('Devices'));
1230 s.addremove = true;
1231 s.anonymous = true;
1232 s.addbtntitle = _('Add device configuration…');
1233
1234 s.cfgsections = function() {
1235 var sections = uci.sections('network', 'device'),
1236 section_ids = sections.sort(function(a, b) { return a.name > b.name }).map(function(s) { return s['.name'] });
1237
1238 for (var i = 0; i < netDevs.length; i++) {
1239 if (sections.filter(function(s) { return s.name == netDevs[i].getName() }).length)
1240 continue;
1241
1242 if (netDevs[i].getType() == 'wifi' && !netDevs[i].isUp())
1243 continue;
1244
1245 /* Unless http://lists.openwrt.org/pipermail/openwrt-devel/2020-July/030397.html is implemented,
1246 we cannot properly redefine bridges as devices, so filter them away for now... */
1247
1248 var m = netDevs[i].isBridge() ? netDevs[i].getName().match(/^br-([A-Za-z0-9_]+)$/) : null,
1249 s = m ? uci.get('network', m[1]) : null;
1250
1251 if (s && s['.type'] == 'interface' && s.type == 'bridge')
1252 continue;
1253
1254 section_ids.push('dev:%s'.format(netDevs[i].getName()));
1255 }
1256
1257 return section_ids;
1258 };
1259
1260 s.renderMoreOptionsModal = function(section_id, ev) {
1261 var m = section_id.match(/^dev:(.+)$/);
1262
1263 if (m) {
1264 var devtype = getDevType(section_id);
1265
1266 section_id = uci.add('network', 'device');
1267
1268 uci.set('network', section_id, 'name', m[1]);
1269 uci.set('network', section_id, 'type', (devtype != 'ethernet') ? devtype : null);
1270
1271 this.addedSection = section_id;
1272 }
1273
1274 return this.super('renderMoreOptionsModal', [section_id, ev]);
1275 };
1276
1277 s.renderRowActions = function(section_id) {
1278 var trEl = this.super('renderRowActions', [ section_id, _('Configure…') ]),
1279 deleteBtn = trEl.querySelector('button:last-child');
1280
1281 deleteBtn.firstChild.data = _('Unconfigure');
1282 deleteBtn.setAttribute('title', _('Remove related device settings from the configuration'));
1283 deleteBtn.disabled = section_id.match(/^dev:/) ? true : null;
1284
1285 return trEl;
1286 };
1287
1288 s.modaltitle = function(section_id) {
1289 var m = section_id.match(/^dev:(.+)$/),
1290 name = m ? m[1] : uci.get('network', section_id, 'name');
1291
1292 return name ? '%s: %q'.format(getDevTypeDesc(section_id), name) : _('Add device configuration');
1293 };
1294
1295 s.addModalOptions = function(s) {
1296 var isNew = (uci.get('network', s.section, 'name') == null),
1297 dev = getDevice(s.section);
1298
1299 nettools.addDeviceOptions(s, dev, isNew);
1300 };
1301
1302 s.handleModalCancel = function(map /*, ... */) {
1303 var name = uci.get('network', this.addedSection, 'name')
1304
1305 uci.sections('network', 'bridge-vlan', function(bvs) {
1306 if (name != null && bvs.device == name)
1307 uci.remove('network', bvs['.name']);
1308 });
1309
1310 if (map.addedVLANs)
1311 for (var i = 0; i < map.addedVLANs.length; i++)
1312 uci.remove('network', map.addedVLANs[i]);
1313
1314 return form.GridSection.prototype.handleModalCancel.apply(this, arguments);
1315 };
1316
1317 function getDevice(section_id) {
1318 var m = section_id.match(/^dev:(.+)$/),
1319 name = m ? m[1] : uci.get('network', section_id, 'name');
1320
1321 return netDevs.filter(function(d) { return d.getName() == name })[0];
1322 }
1323
1324 function getDevType(section_id) {
1325 var dev = getDevice(section_id),
1326 cfg = uci.get('network', section_id),
1327 type = cfg ? (uci.get('network', section_id, 'type') || 'ethernet') : (dev ? dev.getType() : '');
1328
1329 switch (type) {
1330 case '':
1331 return null;
1332
1333 case 'vlan':
1334 case '8021q':
1335 return '8021q';
1336
1337 case '8021ad':
1338 return '8021ad';
1339
1340 case 'bridge':
1341 return 'bridge';
1342
1343 case 'tunnel':
1344 return 'tunnel';
1345
1346 case 'macvlan':
1347 return 'macvlan';
1348
1349 case 'veth':
1350 return 'veth';
1351
1352 case 'wifi':
1353 case 'alias':
1354 case 'switch':
1355 case 'ethernet':
1356 default:
1357 return 'ethernet';
1358 }
1359 }
1360
1361 function getDevTypeDesc(section_id) {
1362 switch (getDevType(section_id) || '') {
1363 case '':
1364 return E('em', [ _('Device not present') ]);
1365
1366 case '8021q':
1367 return _('VLAN (802.1q)');
1368
1369 case '8021ad':
1370 return _('VLAN (802.1ad)');
1371
1372 case 'bridge':
1373 return _('Bridge device');
1374
1375 case 'tunnel':
1376 return _('Tunnel device');
1377
1378 case 'macvlan':
1379 return _('MAC VLAN');
1380
1381 case 'veth':
1382 return _('Virtual Ethernet');
1383
1384 default:
1385 return _('Network device');
1386 }
1387 }
1388
1389 o = s.option(form.DummyValue, 'name', _('Device'));
1390 o.modalonly = false;
1391 o.textvalue = function(section_id) {
1392 var dev = getDevice(section_id),
1393 ext = section_id.match(/^dev:/),
1394 icon = render_iface(dev);
1395
1396 if (ext)
1397 icon.querySelector('img').style.opacity = '.5';
1398
1399 return E('span', { 'class': 'ifacebadge' }, [
1400 icon,
1401 E('span', { 'style': ext ? 'opacity:.5' : null }, [
1402 dev ? dev.getName() : (uci.get('network', section_id, 'name') || '?')
1403 ])
1404 ]);
1405 };
1406
1407 o = s.option(form.DummyValue, 'type', _('Type'));
1408 o.textvalue = getDevTypeDesc;
1409 o.modalonly = false;
1410
1411 o = s.option(form.DummyValue, 'macaddr', _('MAC Address'));
1412 o.modalonly = false;
1413 o.textvalue = function(section_id) {
1414 var dev = getDevice(section_id),
1415 val = uci.get('network', section_id, 'macaddr'),
1416 mac = dev ? dev.getMAC() : null;
1417
1418 return val ? E('strong', {
1419 'data-tooltip': _('The value is overridden by configuration. Original: %s').format(mac || _('unknown'))
1420 }, [ val.toUpperCase() ]) : (mac || '-');
1421 };
1422
1423 o = s.option(form.DummyValue, 'mtu', _('MTU'));
1424 o.modalonly = false;
1425 o.textvalue = function(section_id) {
1426 var dev = getDevice(section_id),
1427 val = uci.get('network', section_id, 'mtu'),
1428 mtu = dev ? dev.getMTU() : null;
1429
1430 return val ? E('strong', {
1431 'data-tooltip': _('The value is overridden by configuration. Original: %s').format(mtu || _('unknown'))
1432 }, [ val ]) : (mtu || '-').toString();
1433 };
1434
1435 s = m.section(form.TypedSection, 'globals', _('Global network options'));
1436 s.addremove = false;
1437 s.anonymous = true;
1438
1439 o = s.option(form.Value, 'ula_prefix', _('IPv6 ULA-Prefix'), _('Unique Local Address - in the range <code>fc00::/7</code>. Typically only within the &#8216;local&#8217; half <code>fd00::/8</code>. ULA for IPv6 is analogous to IPv4 private network addressing. This prefix is randomly generated at first install.'));
1440 o.datatype = 'cidr6';
1441
1442 o = s.option(form.Flag, 'packet_steering', _('Packet Steering'), _('Enable packet steering across all CPUs. May help or hinder network speed.'));
1443 o.optional = true;
1444
1445
1446 if (dslModemType != null) {
1447 s = m.section(form.TypedSection, 'dsl', _('DSL'));
1448 s.anonymous = true;
1449
1450 o = s.option(form.ListValue, 'annex', _('Annex'));
1451 o.value('a', _('Annex A + L + M (all)'));
1452 o.value('b', _('Annex B (all)'));
1453 o.value('j', _('Annex J (all)'));
1454 o.value('m', _('Annex M (all)'));
1455 o.value('bdmt', _('Annex B G.992.1'));
1456 o.value('b2', _('Annex B G.992.3'));
1457 o.value('b2p', _('Annex B G.992.5'));
1458 o.value('at1', _('ANSI T1.413'));
1459 o.value('admt', _('Annex A G.992.1'));
1460 o.value('alite', _('Annex A G.992.2'));
1461 o.value('a2', _('Annex A G.992.3'));
1462 o.value('a2p', _('Annex A G.992.5'));
1463 o.value('l', _('Annex L G.992.3 POTS 1'));
1464 o.value('m2', _('Annex M G.992.3'));
1465 o.value('m2p', _('Annex M G.992.5'));
1466
1467 o = s.option(form.ListValue, 'tone', _('Tone'));
1468 o.value('', _('auto'));
1469 o.value('a', _('A43C + J43 + A43'));
1470 o.value('av', _('A43C + J43 + A43 + V43'));
1471 o.value('b', _('B43 + B43C'));
1472 o.value('bv', _('B43 + B43C + V43'));
1473
1474 if (dslModemType == 'vdsl') {
1475 o = s.option(form.ListValue, 'xfer_mode', _('Encapsulation mode'));
1476 o.value('', _('auto'));
1477 o.value('atm', _('ATM (Asynchronous Transfer Mode)'));
1478 o.value('ptm', _('PTM/EFM (Packet Transfer Mode)'));
1479
1480 o = s.option(form.ListValue, 'line_mode', _('DSL line mode'));
1481 o.value('', _('auto'));
1482 o.value('adsl', _('ADSL'));
1483 o.value('vdsl', _('VDSL'));
1484
1485 o = s.option(form.ListValue, 'ds_snr_offset', _('Downstream SNR offset'));
1486 o.default = '0';
1487
1488 for (var i = -100; i <= 100; i += 5)
1489 o.value(i, _('%.1f dB').format(i / 10));
1490 }
1491
1492 s.option(form.Value, 'firmware', _('Firmware File'));
1493 }
1494
1495
1496 // Show ATM bridge section if we have the capabilities
1497 if (L.hasSystemFeature('br2684ctl')) {
1498 s = m.section(form.TypedSection, 'atm-bridge', _('ATM Bridges'), _('ATM bridges expose encapsulated ethernet in AAL5 connections as virtual Linux network interfaces which can be used in conjunction with DHCP or PPP to dial into the provider network.'));
1499
1500 s.addremove = true;
1501 s.anonymous = true;
1502 s.addbtntitle = _('Add ATM Bridge');
1503
1504 s.handleAdd = function(ev) {
1505 var sections = uci.sections('network', 'atm-bridge'),
1506 max_unit = -1;
1507
1508 for (var i = 0; i < sections.length; i++) {
1509 var unit = +sections[i].unit;
1510
1511 if (!isNaN(unit) && unit > max_unit)
1512 max_unit = unit;
1513 }
1514
1515 return this.map.save(function() {
1516 var sid = uci.add('network', 'atm-bridge');
1517
1518 uci.set('network', sid, 'unit', max_unit + 1);
1519 uci.set('network', sid, 'atmdev', 0);
1520 uci.set('network', sid, 'encaps', 'llc');
1521 uci.set('network', sid, 'payload', 'bridged');
1522 uci.set('network', sid, 'vci', 35);
1523 uci.set('network', sid, 'vpi', 8);
1524 });
1525 };
1526
1527 s.tab('general', _('General Setup'));
1528 s.tab('advanced', _('Advanced Settings'));
1529
1530 o = s.taboption('general', form.Value, 'vci', _('ATM Virtual Channel Identifier (VCI)'));
1531 s.taboption('general', form.Value, 'vpi', _('ATM Virtual Path Identifier (VPI)'));
1532
1533 o = s.taboption('general', form.ListValue, 'encaps', _('Encapsulation mode'));
1534 o.value('llc', _('LLC'));
1535 o.value('vc', _('VC-Mux'));
1536
1537 s.taboption('advanced', form.Value, 'atmdev', _('ATM device number'));
1538 s.taboption('advanced', form.Value, 'unit', _('Bridge unit number'));
1539
1540 o = s.taboption('advanced', form.ListValue, 'payload', _('Forwarding mode'));
1541 o.value('bridged', _('bridged'));
1542 o.value('routed', _('routed'));
1543 }
1544
1545
1546 return m.render().then(L.bind(function(m, nodes) {
1547 poll.add(L.bind(function() {
1548 var section_ids = m.children[0].cfgsections(),
1549 tasks = [];
1550
1551 for (var i = 0; i < section_ids.length; i++) {
1552 var row = nodes.querySelector('.cbi-section-table-row[data-sid="%s"]'.format(section_ids[i])),
1553 dsc = row.querySelector('[data-name="_ifacestat"] > div'),
1554 btn1 = row.querySelector('.cbi-section-actions .reconnect'),
1555 btn2 = row.querySelector('.cbi-section-actions .down');
1556
1557 if (dsc.getAttribute('reconnect') == '') {
1558 dsc.setAttribute('reconnect', '1');
1559 tasks.push(fs.exec('/sbin/ifup', [section_ids[i]]).catch(function(e) {
1560 ui.addNotification(null, E('p', e.message));
1561 }));
1562 }
1563 else if (dsc.getAttribute('disconnect') == '') {
1564 dsc.setAttribute('disconnect', '1');
1565 tasks.push(fs.exec('/sbin/ifdown', [section_ids[i]]).catch(function(e) {
1566 ui.addNotification(null, E('p', e.message));
1567 }));
1568 }
1569 else if (dsc.getAttribute('reconnect') == '1') {
1570 dsc.removeAttribute('reconnect');
1571 btn1.classList.remove('spinning');
1572 btn1.disabled = false;
1573 }
1574 else if (dsc.getAttribute('disconnect') == '1') {
1575 dsc.removeAttribute('disconnect');
1576 btn2.classList.remove('spinning');
1577 btn2.disabled = false;
1578 }
1579 }
1580
1581 return Promise.all(tasks)
1582 .then(L.bind(network.getNetworks, network))
1583 .then(L.bind(this.poll_status, this, nodes));
1584 }, this), 5);
1585
1586 return nodes;
1587 }, this, m));
1588 }
1589 });