summaryrefslogtreecommitdiffstats
path: root/modules/luci-mod-network/htdocs/luci-static/resources/tools/bridgevlan.js
blob: 011e26f412497ac1b7b83e932a4d5770f5f2519e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
/* Helper module for the bridge-vlan UCI model.
 *
 * Provides the read side (find/parse/enumerate bridge-vlan sections and their
 * port specs) and the write side (anti-stacking port-list writer plus an
 * out-of-band store for user-defined port/VLAN labels in /etc/config/luci).
 *
 * Used by the Switch/VLAN view (view/network/switch-vlan.js); kept separate
 * from the view so the UCI/port-spec primitives are reusable. */

'use strict';
'require uci';
'require network';
'require baseclass';

const MIN_VLAN_ID = 1;
const MAX_VLAN_ID = 4094;

const LUCI_LABEL_SECTION_TYPE = 'switchvlan';
const LUCI_PORT_LABELS_NAME = 'port_labels';
const LUCI_VLAN_LABELS_NAME = 'vlan_labels';

/* netifd defaults a bridge-vlan's "local" flag to true when the option is
 * absent (see config_init_vlan_entry() in netifd's config.c), so an unset
 * value must be read as local, not the other way around. Parse the UCI value
 * as a proper boolean and treat absence as true. */
function parseLocal(value) {
	if (value == null || value === '')
		return true;

	switch (String(value).toLowerCase()) {
	case '0':
	case 'false':
	case 'no':
	case 'off':
	case 'disabled':
		return false;
	default:
		return true;
	}
}

/* =============================================================================
 * Port spec parsing & formatting
 * ============================================================================= */

function parsePortSpec(spec) {
	const m = String(spec).match(/^([^:]+)(?::([ut*]*))?$/);

	if (!m)
		return null;

	const flags = m[2] || '';

	return {
		port: m[1],
		tagged: /t/.test(flags),
		untagged: /u/.test(flags) || flags === '',
		pvid: /\x2a/.test(flags) || flags === ''
	};
}

function formatPortSpec(port, role) {
	if (role === 'untagged' || role === 'native')
		return port;

	if (role === 'tagged')
		return '%s:t'.format(port);

	return null;
}

/* =============================================================================
 * Bridge selection & enumeration
 * ============================================================================= */

function getBridgeDeviceName(deviceSection) {
	if (!deviceSection)
		return null;

	return deviceSection.name || deviceSection['.name'] || null;
}

/* uci.get is mandatory here: the .ports field on a uci.sections() callback
 * argument is a snapshot and goes stale after uci.set/unset on this option. */
function getVlanSectionPorts(sectionId) {
	return L.toArray(uci.get('network', sectionId, 'ports'));
}

function isVlanFilteringEnabled(deviceSection) {
	if (!deviceSection)
		return false;

	if (deviceSection.type !== 'bridge')
		return false;

	if (deviceSection.vlan_filtering === '1')
		return true;

	const devname = getBridgeDeviceName(deviceSection);
	let has_vlans = false;

	uci.sections('network', 'bridge-vlan', function(bvs) {
		if (bvs.device == devname)
			has_vlans = true;
	});

	return has_vlans;
}

/* A bridge qualifies only when every member resolves to a physical
 * ethernet/DSA port. Bridges spanning wifi APs, tunnels, wireguard, VLAN
 * sub-interfaces or nested bridges are excluded on purpose — they're legal
 * vlan-aware bridges but the T/U-on-physical-ports UI doesn't apply. */
function findActiveBridge() {
	let match = null;

	uci.sections('network', 'device', s => {
		if (match || !isVlanFilteringEnabled(s))
			return;

		const ports = collectBridgePorts(s);

		if (!ports.length)
			return;

		const allSwitchworthy = ports.every(p => {
			const t = network.instantiateDevice(p).getType();
			return t === 'switch' || t === 'ethernet';
		});

		if (allSwitchworthy)
			match = s;
	});

	return match;
}

function collectBridgePorts(deviceSection) {
	const seen = {};
	const devname = getBridgeDeviceName(deviceSection);
	const section_id = deviceSection ? deviceSection['.name'] : null;

	if (!deviceSection)
		return [];

	L.toArray(uci.get('network', section_id, 'ports')).forEach(function(port) {
		seen[port] = true;
	});

	if (devname) {
		const br = network.instantiateDevice(devname);
		const brports = (br && typeof br.getPorts === 'function') ? br.getPorts() : null;

		if (brports) {
			brports.forEach(function(portdev) {
				const name = portdev ? portdev.getName() : null;

				if (name)
					seen[name] = true;
			});
		}

		uci.sections('network', 'bridge-vlan', function(bvs) {
			if (bvs.device != devname)
				return;

			getVlanSectionPorts(bvs['.name']).forEach(function(spec) {
				const m = String(spec).match(/^([^:]+)(?::[ut*]+)?$/);

				if (m)
					seen[m[1]] = true;
			});
		});
	}

	return Object.keys(seen).sort(L.naturalCompare);
}

function collectBridgeVlans(deviceSection) {
	const out = [];

	if (!deviceSection)
		return out;

	uci.sections('network', 'bridge-vlan', function(bvs) {
		if (bvs.device != getBridgeDeviceName(deviceSection))
			return;

		const vid = +bvs.vlan;

		if (!(vid >= MIN_VLAN_ID && vid <= MAX_VLAN_ID))
			return;

		out.push({
			section_id: bvs['.name'],
			vlan: vid,
			local: parseLocal(bvs.local),
			ports: getVlanSectionPorts(bvs['.name']).slice()
		});
	});

	out.sort(function(a, b) { return a.vlan - b.vlan; });

	return out;
}

/* =============================================================================
 * VLAN configuration validation
 * ============================================================================= */

function checkUnsupportedConfig(deviceSection) {
	const issues = [];

	if (!deviceSection)
		return issues;

	const portUntagged = {};

	uci.sections('network', 'bridge-vlan', function(bvs) {
		if (bvs.device != getBridgeDeviceName(deviceSection))
			return;

		const vid = +bvs.vlan;

		if (!(vid >= MIN_VLAN_ID && vid <= MAX_VLAN_ID)) {
			issues.push(_('VLAN ID %s is outside the valid range %d–%d.').format(
				bvs.vlan, MIN_VLAN_ID, MAX_VLAN_ID));
			return;
		}

		getVlanSectionPorts(bvs['.name']).forEach(function(spec) {
			const parsed = parsePortSpec(spec);

			if (!parsed) {
				issues.push(_('Port specification "%s" on VLAN %d cannot be parsed.').format(spec, vid));
				return;
			}

			/* Order matters: a spec carrying both the tagged and PVID flags
			 * (e.g. "lan1:t*") is reported as the PVID-with-tagged-egress
			 * case, not the tagged-and-untagged one. */
			if (parsed.tagged && parsed.pvid)
				issues.push(_('Port "%s" has the primary VLAN flag together with tagged egress on VLAN %d (PVID ≠ untagged VLAN).').format(parsed.port, vid));
			else if (parsed.tagged && parsed.untagged)
				issues.push(_('Port "%s" is both tagged and untagged on VLAN %d.').format(parsed.port, vid));
			else if (parsed.pvid && !parsed.tagged && !parsed.untagged)
				issues.push(_('Port "%s" is the primary VLAN on VLAN %d but has no untagged egress (PVID ≠ untagged VLAN).').format(parsed.port, vid));

			if (parsed.untagged) {
				if (portUntagged[parsed.port] != null && portUntagged[parsed.port] !== vid) {
					issues.push(_('Port "%s" is configured as untagged on more than one VLAN (%d and %d).').format(
						parsed.port, portUntagged[parsed.port], vid));
				}

				portUntagged[parsed.port] = vid;
			}
		});
	});

	return issues;
}

/* =============================================================================
 * Per-port state derivation (native + tagged VLANs for each member)
 * ============================================================================= */

function buildPortState(deviceSection, ports) {
	const state = {};

	ports.forEach(function(name) {
		state[name] = { name: name, native: null, tagged: [] };
	});

	if (!deviceSection)
		return state;

	uci.sections('network', 'bridge-vlan', function(bvs) {
		if (bvs.device != getBridgeDeviceName(deviceSection))
			return;

		const vid = +bvs.vlan;

		getVlanSectionPorts(bvs['.name']).forEach(function(spec) {
			const parsed = parsePortSpec(spec);

			if (!parsed || !state[parsed.port])
				return;

			if (parsed.untagged)
				state[parsed.port].native = vid;
			else if (parsed.tagged)
				state[parsed.port].tagged.push(vid);
		});
	});

	for (let name in state)
		state[name].tagged.sort(function(a, b) { return a - b; });

	return state;
}

/* =============================================================================
 * Port/VLAN label store (out-of-band, in /etc/config/luci)
 * ============================================================================= */

function labelOptionKey(name) {
	return String(name).replace(/[^A-Za-z0-9_]/g, '_');
}

function ensureLabelSections() {
	let port_sid = null, vlan_sid = null;

	uci.sections('luci', LUCI_LABEL_SECTION_TYPE, function(s) {
		if (s['.name'] === LUCI_PORT_LABELS_NAME)
			port_sid = s['.name'];
		else if (s['.name'] === LUCI_VLAN_LABELS_NAME)
			vlan_sid = s['.name'];
	});

	if (!port_sid)
		port_sid = uci.add('luci', LUCI_LABEL_SECTION_TYPE, LUCI_PORT_LABELS_NAME);

	if (!vlan_sid)
		vlan_sid = uci.add('luci', LUCI_LABEL_SECTION_TYPE, LUCI_VLAN_LABELS_NAME);

	return { port: port_sid, vlan: vlan_sid };
}

function readPortLabel(portName) {
	const value = uci.get('luci', LUCI_PORT_LABELS_NAME, labelOptionKey(portName));
	return value != null ? String(value) : '';
}

function readVlanLabel(vlanId) {
	const value = uci.get('luci', LUCI_VLAN_LABELS_NAME, labelOptionKey(vlanId));
	return value != null ? String(value) : '';
}

function writePortLabel(portName, label) {
	ensureLabelSections();

	const key = labelOptionKey(portName);

	if (label == null || label === '')
		uci.unset('luci', LUCI_PORT_LABELS_NAME, key);
	else
		uci.set('luci', LUCI_PORT_LABELS_NAME, key, label);
}

function writeVlanLabel(vlanId, label) {
	ensureLabelSections();

	const key = labelOptionKey(vlanId);

	if (label == null || label === '')
		uci.unset('luci', LUCI_VLAN_LABELS_NAME, key);
	else
		uci.set('luci', LUCI_VLAN_LABELS_NAME, key, label);
}

/* =============================================================================
 * Bridge-vlan ports writer (anti-stacking; bypasses LuCI's missing
 * "undo pending change" API by poking uci.state directly)
 * ============================================================================= */

function vlanPortsEqual(a, b) {
	const norm = list => L.toArray(list).slice().sort(L.naturalCompare);
	const sa = norm(a);
	const sb = norm(b);
	return sa.length === sb.length && sa.every((v, i) => v === sb[i]);
}

function getBaseVlanPorts(section_id) {
	if (uci.state.creates.network?.[section_id])
		return L.toArray(uci.state.creates.network[section_id].ports);
	return L.toArray(uci.state.values.network?.[section_id]?.ports);
}

function clearPendingVlanPorts(section_id) {
	const c = uci.state.changes.network;
	const d = uci.state.deletes.network;

	if (c?.[section_id]) {
		delete c[section_id].ports;
		if (!Object.keys(c[section_id]).length)
			delete c[section_id];
	}

	if (c && !Object.keys(c).length)
		delete uci.state.changes.network;

	if (d?.[section_id] && d[section_id] !== true) {
		delete d[section_id].ports;
		if (!Object.keys(d[section_id]).length)
			delete d[section_id];
	}

	if (d && !Object.keys(d).length)
		delete uci.state.deletes.network;
}

/* Anti-stacking writer for bridge-vlan ports. Two non-obvious behaviours:
 *  1. If the new list equals the loaded baseline, the local pending change
 *     is *cleared* (poking uci.state directly via clearPendingVlanPorts —
 *     LuCI's uci module has no public "undo a pending change" API). Without
 *     this, toggling T then T leaves a phantom entry in "Unsaved Changes".
 *  2. An empty list calls uci.unset, not uci.set([]); OpenWrt UCI rejects
 *     empty list values on set. */
function setBridgeVlanPorts(section_id, ports) {
	const normalized = L.toArray(ports).slice().sort(L.naturalCompare);
	const base = getBaseVlanPorts(section_id);

	if (vlanPortsEqual(normalized, base)) {
		if (uci.state.creates.network?.[section_id]) {
			if (base.length)
				uci.set('network', section_id, 'ports', base.slice().sort(L.naturalCompare));
			else
				uci.unset('network', section_id, 'ports');
		}
		else {
			clearPendingVlanPorts(section_id);
		}
		return;
	}

	if (normalized.length)
		uci.set('network', section_id, 'ports', normalized);
	else
		uci.unset('network', section_id, 'ports');
}

/* =============================================================================
 * Label maintenance
 * ============================================================================= */

function pruneOrphanLabels(validPorts, validVlans) {
	const portKeys = {}, vlanKeys = {};

	validPorts.forEach(function(p) { portKeys[labelOptionKey(p)] = true; });
	validVlans.forEach(function(v) { vlanKeys[labelOptionKey(v)] = true; });

	const toRemove = [];

	uci.sections('luci', LUCI_LABEL_SECTION_TYPE, function(s) {
		const isPortSection = (s['.name'] === LUCI_PORT_LABELS_NAME);
		const isVlanSection = (s['.name'] === LUCI_VLAN_LABELS_NAME);

		if (!isPortSection && !isVlanSection)
			return;

		const keys = isPortSection ? portKeys : vlanKeys;

		for (let opt in s) {
			if (opt.charAt(0) === '.')
				continue;

			if (!keys[opt])
				toRemove.push({ section: s['.name'], option: opt });
		}
	});

	toRemove.forEach(function(entry) {
		uci.unset('luci', entry.section, entry.option);
	});

	return toRemove.length;
}

return baseclass.extend({
	MIN_VLAN_ID: MIN_VLAN_ID,
	MAX_VLAN_ID: MAX_VLAN_ID,
	LUCI_LABEL_SECTION_TYPE: LUCI_LABEL_SECTION_TYPE,
	LUCI_PORT_LABELS_NAME: LUCI_PORT_LABELS_NAME,
	LUCI_VLAN_LABELS_NAME: LUCI_VLAN_LABELS_NAME,

	parsePortSpec: parsePortSpec,
	formatPortSpec: formatPortSpec,
	parseLocal: parseLocal,
	isVlanFilteringEnabled: isVlanFilteringEnabled,
	findActiveBridge: findActiveBridge,
	collectBridgePorts: collectBridgePorts,
	collectBridgeVlans: collectBridgeVlans,
	checkUnsupportedConfig: checkUnsupportedConfig,
	buildPortState: buildPortState,
	labelOptionKey: labelOptionKey,
	ensureLabelSections: ensureLabelSections,
	readPortLabel: readPortLabel,
	readVlanLabel: readVlanLabel,
	writePortLabel: writePortLabel,
	writeVlanLabel: writeVlanLabel,
	pruneOrphanLabels: pruneOrphanLabels,
	vlanPortsEqual: vlanPortsEqual,
	setBridgeVlanPorts: setBridgeVlanPorts
});