luci-base: validation: disallow mutlicast MACs by default
[project/luci.git] / modules / luci-base / htdocs / luci-static / resources / validation.js
1 'use strict';
2 'require baseclass';
3
4 function bytelen(x) {
5 return new Blob([x]).size;
6 }
7
8 var Validator = baseclass.extend({
9 __name__: 'Validation',
10
11 __init__: function(field, type, optional, vfunc, validatorFactory) {
12 this.field = field;
13 this.optional = optional;
14 this.vfunc = vfunc;
15 this.vstack = validatorFactory.compile(type);
16 this.factory = validatorFactory;
17 },
18
19 assert: function(condition, message) {
20 if (!condition) {
21 this.field.classList.add('cbi-input-invalid');
22 this.error = message;
23 return false;
24 }
25
26 this.field.classList.remove('cbi-input-invalid');
27 this.error = null;
28 return true;
29 },
30
31 apply: function(name, value, args) {
32 var func;
33
34 if (typeof(name) === 'function')
35 func = name;
36 else if (typeof(this.factory.types[name]) === 'function')
37 func = this.factory.types[name];
38 else
39 return false;
40
41 if (value != null)
42 this.value = value;
43
44 return func.apply(this, args);
45 },
46
47 validate: function() {
48 /* element is detached */
49 if (!findParent(this.field, 'body') && !findParent(this.field, '[data-field]'))
50 return true;
51
52 this.field.classList.remove('cbi-input-invalid');
53 this.value = (this.field.value != null) ? this.field.value : '';
54 this.error = null;
55
56 var valid;
57
58 if (this.value.length === 0)
59 valid = this.assert(this.optional, _('non-empty value'));
60 else
61 valid = this.vstack[0].apply(this, this.vstack[1]);
62
63 if (valid !== true) {
64 this.field.setAttribute('data-tooltip', _('Expecting: %s').format(this.error));
65 this.field.setAttribute('data-tooltip-style', 'error');
66 this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
67 return false;
68 }
69
70 if (typeof(this.vfunc) == 'function')
71 valid = this.vfunc(this.value);
72
73 if (valid !== true) {
74 this.assert(false, valid);
75 this.field.setAttribute('data-tooltip', valid);
76 this.field.setAttribute('data-tooltip-style', 'error');
77 this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true }));
78 return false;
79 }
80
81 this.field.removeAttribute('data-tooltip');
82 this.field.removeAttribute('data-tooltip-style');
83 this.field.dispatchEvent(new CustomEvent('validation-success', { bubbles: true }));
84 return true;
85 },
86
87 });
88
89 var ValidatorFactory = baseclass.extend({
90 __name__: 'ValidatorFactory',
91
92 create: function(field, type, optional, vfunc) {
93 return new Validator(field, type, optional, vfunc, this);
94 },
95
96 compile: function(code) {
97 var pos = 0;
98 var esc = false;
99 var depth = 0;
100 var stack = [ ];
101
102 code += ',';
103
104 for (var i = 0; i < code.length; i++) {
105 if (esc) {
106 esc = false;
107 continue;
108 }
109
110 switch (code.charCodeAt(i))
111 {
112 case 92:
113 esc = true;
114 break;
115
116 case 40:
117 case 44:
118 if (depth <= 0) {
119 if (pos < i) {
120 var label = code.substring(pos, i);
121 label = label.replace(/\\(.)/g, '$1');
122 label = label.replace(/^[ \t]+/g, '');
123 label = label.replace(/[ \t]+$/g, '');
124
125 if (label && !isNaN(label)) {
126 stack.push(parseFloat(label));
127 }
128 else if (label.match(/^(['"]).*\1$/)) {
129 stack.push(label.replace(/^(['"])(.*)\1$/, '$2'));
130 }
131 else if (typeof this.types[label] == 'function') {
132 stack.push(this.types[label]);
133 stack.push(null);
134 }
135 else {
136 L.raise('SyntaxError', 'Unhandled token "%s"', label);
137 }
138 }
139
140 pos = i+1;
141 }
142
143 depth += (code.charCodeAt(i) == 40);
144 break;
145
146 case 41:
147 if (--depth <= 0) {
148 if (typeof stack[stack.length-2] != 'function')
149 L.raise('SyntaxError', 'Argument list follows non-function');
150
151 stack[stack.length-1] = this.compile(code.substring(pos, i));
152 pos = i+1;
153 }
154
155 break;
156 }
157 }
158
159 return stack;
160 },
161
162 parseInteger: function(x) {
163 return (/^-?\d+$/.test(x) ? +x : NaN);
164 },
165
166 parseDecimal: function(x) {
167 return (/^-?\d+(?:\.\d+)?$/.test(x) ? +x : NaN);
168 },
169
170 parseIPv4: function(x) {
171 if (!x.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/))
172 return null;
173
174 if (RegExp.$1 > 255 || RegExp.$2 > 255 || RegExp.$3 > 255 || RegExp.$4 > 255)
175 return null;
176
177 return [ +RegExp.$1, +RegExp.$2, +RegExp.$3, +RegExp.$4 ];
178 },
179
180 parseIPv6: function(x) {
181 if (x.match(/^([a-fA-F0-9:]+):(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/)) {
182 var v6 = RegExp.$1, v4 = this.parseIPv4(RegExp.$2);
183
184 if (!v4)
185 return null;
186
187 x = v6 + ':' + (v4[0] * 256 + v4[1]).toString(16)
188 + ':' + (v4[2] * 256 + v4[3]).toString(16);
189 }
190
191 if (!x.match(/^[a-fA-F0-9:]+$/))
192 return null;
193
194 var prefix_suffix = x.split(/::/);
195
196 if (prefix_suffix.length > 2)
197 return null;
198
199 var prefix = (prefix_suffix[0] || '0').split(/:/);
200 var suffix = prefix_suffix.length > 1 ? (prefix_suffix[1] || '0').split(/:/) : [];
201
202 if (suffix.length ? (prefix.length + suffix.length > 7)
203 : ((prefix_suffix.length < 2 && prefix.length < 8) || prefix.length > 8))
204 return null;
205
206 var i, word;
207 var words = [];
208
209 for (i = 0, word = parseInt(prefix[0], 16); i < prefix.length; word = parseInt(prefix[++i], 16))
210 if (prefix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
211 words.push(word);
212 else
213 return null;
214
215 for (i = 0; i < (8 - prefix.length - suffix.length); i++)
216 words.push(0);
217
218 for (i = 0, word = parseInt(suffix[0], 16); i < suffix.length; word = parseInt(suffix[++i], 16))
219 if (suffix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF)
220 words.push(word);
221 else
222 return null;
223
224 return words;
225 },
226
227 types: {
228 integer: function() {
229 return this.assert(!isNaN(this.factory.parseInteger(this.value)), _('valid integer value'));
230 },
231
232 uinteger: function() {
233 return this.assert(this.factory.parseInteger(this.value) >= 0, _('positive integer value'));
234 },
235
236 float: function() {
237 return this.assert(!isNaN(this.factory.parseDecimal(this.value)), _('valid decimal value'));
238 },
239
240 ufloat: function() {
241 return this.assert(this.factory.parseDecimal(this.value) >= 0, _('positive decimal value'));
242 },
243
244 ipaddr: function(nomask) {
245 return this.assert(this.apply('ip4addr', null, [nomask]) || this.apply('ip6addr', null, [nomask]),
246 nomask ? _('valid IP address') : _('valid IP address or prefix'));
247 },
248
249 ip4addr: function(nomask) {
250 var re = nomask ? /^(\d+\.\d+\.\d+\.\d+)$/ : /^(\d+\.\d+\.\d+\.\d+)(?:\/(\d+\.\d+\.\d+\.\d+)|\/(\d{1,2}))?$/,
251 m = this.value.match(re);
252
253 return this.assert(m && this.factory.parseIPv4(m[1]) && (m[2] ? this.factory.parseIPv4(m[2]) : (m[3] ? this.apply('ip4prefix', m[3]) : true)),
254 nomask ? _('valid IPv4 address') : _('valid IPv4 address or network'));
255 },
256
257 ip6addr: function(nomask) {
258 var re = nomask ? /^([0-9a-fA-F:.]+)$/ : /^([0-9a-fA-F:.]+)(?:\/(\d{1,3}))?$/,
259 m = this.value.match(re);
260
261 return this.assert(m && this.factory.parseIPv6(m[1]) && (m[2] ? this.apply('ip6prefix', m[2]) : true),
262 nomask ? _('valid IPv6 address') : _('valid IPv6 address or prefix'));
263 },
264
265 ip4prefix: function() {
266 return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 32,
267 _('valid IPv4 prefix value (0-32)'));
268 },
269
270 ip6prefix: function() {
271 return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 128,
272 _('valid IPv6 prefix value (0-128)'));
273 },
274
275 cidr: function(negative) {
276 return this.assert(this.apply('cidr4', null, [negative]) || this.apply('cidr6', null, [negative]),
277 _('valid IPv4 or IPv6 CIDR'));
278 },
279
280 cidr4: function(negative) {
281 var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(-)?(\d{1,2})$/);
282 return this.assert(m && this.factory.parseIPv4(m[1]) && (negative || !m[2]) && this.apply('ip4prefix', m[3]),
283 _('valid IPv4 CIDR'));
284 },
285
286 cidr6: function(negative) {
287 var m = this.value.match(/^([0-9a-fA-F:.]+)\/(-)?(\d{1,3})$/);
288 return this.assert(m && this.factory.parseIPv6(m[1]) && (negative || !m[2]) && this.apply('ip6prefix', m[3]),
289 _('valid IPv6 CIDR'));
290 },
291
292 ipnet4: function() {
293 var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/);
294 return this.assert(m && this.factory.parseIPv4(m[1]) && this.factory.parseIPv4(m[2]), _('IPv4 network in address/netmask notation'));
295 },
296
297 ipnet6: function() {
298 var m = this.value.match(/^([0-9a-fA-F:.]+)\/([0-9a-fA-F:.]+)$/);
299 return this.assert(m && this.factory.parseIPv6(m[1]) && this.factory.parseIPv6(m[2]), _('IPv6 network in address/netmask notation'));
300 },
301
302 ip6hostid: function() {
303 if (this.value == "eui64" || this.value == "random")
304 return true;
305
306 var v6 = this.factory.parseIPv6(this.value);
307 return this.assert(!(!v6 || v6[0] || v6[1] || v6[2] || v6[3]), _('valid IPv6 host id'));
308 },
309
310 ipmask: function(negative) {
311 return this.assert(this.apply('ipmask4', null, [negative]) || this.apply('ipmask6', null, [negative]),
312 _('valid network in address/netmask notation'));
313 },
314
315 ipmask4: function(negative) {
316 return this.assert(this.apply('cidr4', null, [negative]) || this.apply('ipnet4') || this.apply('ip4addr'),
317 _('valid IPv4 network'));
318 },
319
320 ipmask6: function(negative) {
321 return this.assert(this.apply('cidr6', null, [negative]) || this.apply('ipnet6') || this.apply('ip6addr'),
322 _('valid IPv6 network'));
323 },
324
325 port: function() {
326 var p = this.factory.parseInteger(this.value);
327 return this.assert(p >= 0 && p <= 65535, _('valid port value'));
328 },
329
330 portrange: function() {
331 if (this.value.match(/^(\d+)-(\d+)$/)) {
332 var p1 = +RegExp.$1;
333 var p2 = +RegExp.$2;
334 return this.assert(p1 <= p2 && p2 <= 65535,
335 _('valid port or port range (port1-port2)'));
336 }
337
338 return this.assert(this.apply('port'), _('valid port or port range (port1-port2)'));
339 },
340
341 macaddr: function(multicast) {
342 var m = this.value.match(/^([a-fA-F0-9]{2}):([a-fA-F0-9]{2}:){4}[a-fA-F0-9]{2}$/);
343 return this.assert(m != null && !(+m[1] & 1) == !multicast,
344 multicast ? _('valid multicast MAC address') : _('valid MAC address'));
345 },
346
347 host: function(ipv4only) {
348 return this.assert(this.apply('hostname') || this.apply(ipv4only == 1 ? 'ip4addr' : 'ipaddr', null, ['nomask']),
349 _('valid hostname or IP address'));
350 },
351
352 hostname: function(strict) {
353 if (this.value.length <= 253)
354 return this.assert(
355 (this.value.match(/^[a-zA-Z0-9_]+$/) != null ||
356 (this.value.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) &&
357 this.value.match(/[^0-9.]/))) &&
358 (!strict || !this.value.match(/^_/)),
359 _('valid hostname'));
360
361 return this.assert(false, _('valid hostname'));
362 },
363
364 network: function() {
365 return this.assert(this.apply('uciname') || this.apply('hostname') || this.apply('ip4addr') || this.apply('ip6addr'),
366 _('valid UCI identifier, hostname or IP address range'));
367 },
368
369 hostport: function(ipv4only) {
370 var hp = this.value.split(/:/);
371 return this.assert(hp.length == 2 && this.apply('host', hp[0], [ipv4only]) && this.apply('port', hp[1]),
372 _('valid host:port'));
373 },
374
375 ip4addrport: function() {
376 var hp = this.value.split(/:/);
377 return this.assert(hp.length == 2 && this.apply('ip4addr', hp[0], [true]) && this.apply('port', hp[1]),
378 _('valid IPv4 address:port'));
379 },
380
381 ipaddrport: function(bracket) {
382 var m4 = this.value.match(/^([^\[\]:]+):(\d+)$/),
383 m6 = this.value.match((bracket == 1) ? /^\[(.+)\]:(\d+)$/ : /^([^\[\]]+):(\d+)$/);
384
385 if (m4)
386 return this.assert(this.apply('ip4addr', m4[1], [true]) && this.apply('port', m4[2]),
387 _('valid address:port'));
388
389 return this.assert(m6 && this.apply('ip6addr', m6[1], [true]) && this.apply('port', m6[2]),
390 _('valid address:port'));
391 },
392
393 wpakey: function() {
394 var v = this.value;
395
396 if (v.length == 64)
397 return this.assert(v.match(/^[a-fA-F0-9]{64}$/), _('valid hexadecimal WPA key'));
398
399 return this.assert((v.length >= 8) && (v.length <= 63), _('key between 8 and 63 characters'));
400 },
401
402 wepkey: function() {
403 var v = this.value;
404
405 if (v.substr(0, 2) === 's:')
406 v = v.substr(2);
407
408 if ((v.length == 10) || (v.length == 26))
409 return this.assert(v.match(/^[a-fA-F0-9]{10,26}$/), _('valid hexadecimal WEP key'));
410
411 return this.assert((v.length === 5) || (v.length === 13), _('key with either 5 or 13 characters'));
412 },
413
414 uciname: function() {
415 return this.assert(this.value.match(/^[a-zA-Z0-9_]+$/), _('valid UCI identifier'));
416 },
417
418 range: function(min, max) {
419 var val = this.factory.parseDecimal(this.value);
420 return this.assert(val >= +min && val <= +max, _('value between %f and %f').format(min, max));
421 },
422
423 min: function(min) {
424 return this.assert(this.factory.parseDecimal(this.value) >= +min, _('value greater or equal to %f').format(min));
425 },
426
427 max: function(max) {
428 return this.assert(this.factory.parseDecimal(this.value) <= +max, _('value smaller or equal to %f').format(max));
429 },
430
431 length: function(len) {
432 return this.assert(bytelen(this.value) == +len,
433 _('value with %d characters').format(len));
434 },
435
436 rangelength: function(min, max) {
437 var len = bytelen(this.value);
438 return this.assert((len >= +min) && (len <= +max),
439 _('value between %d and %d characters').format(min, max));
440 },
441
442 minlength: function(min) {
443 return this.assert(bytelen(this.value) >= +min,
444 _('value with at least %d characters').format(min));
445 },
446
447 maxlength: function(max) {
448 return this.assert(bytelen(this.value) <= +max,
449 _('value with at most %d characters').format(max));
450 },
451
452 or: function() {
453 var errors = [];
454
455 for (var i = 0; i < arguments.length; i += 2) {
456 if (typeof arguments[i] != 'function') {
457 if (arguments[i] == this.value)
458 return this.assert(true);
459 errors.push('"%s"'.format(arguments[i]));
460 i--;
461 }
462 else if (arguments[i].apply(this, arguments[i+1])) {
463 return this.assert(true);
464 }
465 else {
466 errors.push(this.error);
467 }
468 }
469
470 var t = _('One of the following: %s');
471
472 return this.assert(false, t.format('\n - ' + errors.join('\n - ')));
473 },
474
475 and: function() {
476 for (var i = 0; i < arguments.length; i += 2) {
477 if (typeof arguments[i] != 'function') {
478 if (arguments[i] != this.value)
479 return this.assert(false, '"%s"'.format(arguments[i]));
480 i--;
481 }
482 else if (!arguments[i].apply(this, arguments[i+1])) {
483 return this.assert(false, this.error);
484 }
485 }
486
487 return this.assert(true);
488 },
489
490 neg: function() {
491 this.value = this.value.replace(/^[ \t]*![ \t]*/, '');
492
493 if (arguments[0].apply(this, arguments[1]))
494 return this.assert(true);
495
496 return this.assert(false, _('Potential negation of: %s').format(this.error));
497 },
498
499 list: function(subvalidator, subargs) {
500 this.field.setAttribute('data-is-list', 'true');
501
502 var tokens = this.value.match(/[^ \t]+/g);
503 for (var i = 0; i < tokens.length; i++)
504 if (!this.apply(subvalidator, tokens[i], subargs))
505 return this.assert(false, this.error);
506
507 return this.assert(true);
508 },
509
510 phonedigit: function() {
511 return this.assert(this.value.match(/^[0-9\*#!\.]+$/),
512 _('valid phone digit (0-9, "*", "#", "!" or ".")'));
513 },
514
515 timehhmmss: function() {
516 return this.assert(this.value.match(/^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$/),
517 _('valid time (HH:MM:SS)'));
518 },
519
520 dateyyyymmdd: function() {
521 if (this.value.match(/^(\d\d\d\d)-(\d\d)-(\d\d)/)) {
522 var year = +RegExp.$1,
523 month = +RegExp.$2,
524 day = +RegExp.$3,
525 days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
526
527 var is_leap_year = function(year) {
528 return ((!(year % 4) && (year % 100)) || !(year % 400));
529 }
530
531 var get_days_in_month = function(month, year) {
532 return (month === 2 && is_leap_year(year)) ? 29 : days_in_month[month - 1];
533 }
534
535 /* Firewall rules in the past don't make sense */
536 return this.assert(year >= 2015 && month && month <= 12 && day && day <= get_days_in_month(month, year),
537 _('valid date (YYYY-MM-DD)'));
538
539 }
540
541 return this.assert(false, _('valid date (YYYY-MM-DD)'));
542 },
543
544 unique: function(subvalidator, subargs) {
545 var ctx = this,
546 option = findParent(ctx.field, '[data-widget][data-name]'),
547 section = findParent(option, '.cbi-section'),
548 query = '[data-widget="%s"][data-name="%s"]'.format(option.getAttribute('data-widget'), option.getAttribute('data-name')),
549 unique = true;
550
551 section.querySelectorAll(query).forEach(function(sibling) {
552 if (sibling === option)
553 return;
554
555 var input = sibling.querySelector('[data-type]'),
556 values = input ? (input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]) : null;
557
558 if (values !== null && values.indexOf(ctx.value) !== -1)
559 unique = false;
560 });
561
562 if (!unique)
563 return this.assert(false, _('unique value'));
564
565 if (typeof(subvalidator) === 'function')
566 return this.apply(subvalidator, null, subargs);
567
568 return this.assert(true);
569 },
570
571 hexstring: function() {
572 return this.assert(this.value.match(/^([a-f0-9][a-f0-9]|[A-F0-9][A-F0-9])+$/),
573 _('hexadecimal encoded value'));
574 },
575
576 string: function() {
577 return true;
578 }
579 }
580 });
581
582 return ValidatorFactory;