]> git.proxmox.com Git - pve-common.git/blame - src/PVE/JSONSchema.pm
JSONSchema::check_object_warn
[pve-common.git] / src / PVE / JSONSchema.pm
CommitLineData
e143e9d8
DM
1package PVE::JSONSchema;
2
e143e9d8 3use strict;
c36f332e 4use warnings;
e143e9d8
DM
5use Storable; # for dclone
6use Getopt::Long;
7use Devel::Cycle -quiet; # todo: remove?
e272bcb7 8use PVE::Tools qw(split_list $IPV6RE $IPV4RE);
e143e9d8
DM
9use PVE::Exception qw(raise);
10use HTTP::Status qw(:constants);
23b56245 11use Net::IP qw(:PROC);
e143e9d8
DM
12
13use base 'Exporter';
14
15our @EXPORT_OK = qw(
16register_standard_option
17get_standard_option
18);
19
20# Note: This class implements something similar to JSON schema, but it is not 100% complete.
21# see: http://tools.ietf.org/html/draft-zyp-json-schema-02
22# see: http://json-schema.org/
23
24# the code is similar to the javascript parser from http://code.google.com/p/jsonschema/
25
26my $standard_options = {};
27sub register_standard_option {
28 my ($name, $schema) = @_;
29
30 die "standard option '$name' already registered\n"
31 if $standard_options->{$name};
32
33 $standard_options->{$name} = $schema;
34}
35
36sub get_standard_option {
37 my ($name, $base) = @_;
38
39 my $std = $standard_options->{$name};
3432ae0c 40 die "no such standard option '$name'\n" if !$std;
e143e9d8
DM
41
42 my $res = $base || {};
43
44 foreach my $opt (keys %$std) {
c38ac70f 45 next if defined($res->{$opt});
e143e9d8
DM
46 $res->{$opt} = $std->{$opt};
47 }
48
49 return $res;
50};
51
52register_standard_option('pve-vmid', {
53 description => "The (unique) ID of the VM.",
54 type => 'integer', format => 'pve-vmid',
55 minimum => 1
56});
57
58register_standard_option('pve-node', {
59 description => "The cluster node name.",
60 type => 'string', format => 'pve-node',
61});
62
63register_standard_option('pve-node-list', {
64 description => "List of cluster node names.",
65 type => 'string', format => 'pve-node-list',
66});
67
68register_standard_option('pve-iface', {
69 description => "Network interface name.",
70 type => 'string', format => 'pve-iface',
71 minLength => 2, maxLength => 20,
72});
73
05e787c5
DM
74PVE::JSONSchema::register_standard_option('pve-storage-id', {
75 description => "The storage identifier.",
76 type => 'string', format => 'pve-storage-id',
77});
78
dc5eae7d
DM
79PVE::JSONSchema::register_standard_option('pve-config-digest', {
80 description => 'Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.',
81 type => 'string',
82 optional => 1,
83 maxLength => 40, # sha1 hex digest lenght is 40
84});
85
5851be88
WB
86PVE::JSONSchema::register_standard_option('extra-args', {
87 description => "Extra arguments as array",
88 type => 'array',
89 items => { type => 'string' },
90 optional => 1
91});
92
e143e9d8
DM
93my $format_list = {};
94
95sub register_format {
96 my ($format, $code) = @_;
97
98 die "JSON schema format '$format' already registered\n"
99 if $format_list->{$format};
100
101 $format_list->{$format} = $code;
102}
103
104# register some common type for pve
8ba7c72b
DM
105
106register_format('string', sub {}); # allow format => 'string-list'
107
e143e9d8
DM
108register_format('pve-configid', \&pve_verify_configid);
109sub pve_verify_configid {
110 my ($id, $noerr) = @_;
111
112 if ($id !~ m/^[a-z][a-z0-9_]+$/i) {
113 return undef if $noerr;
39ed3462 114 die "invalid configuration ID '$id'\n";
e143e9d8
DM
115 }
116 return $id;
117}
118
05e787c5
DM
119PVE::JSONSchema::register_format('pve-storage-id', \&parse_storage_id);
120sub parse_storage_id {
121 my ($storeid, $noerr) = @_;
122
123 if ($storeid !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
124 return undef if $noerr;
125 die "storage ID '$storeid' contains illegal characters\n";
126 }
127 return $storeid;
128}
129
130
e143e9d8
DM
131register_format('pve-vmid', \&pve_verify_vmid);
132sub pve_verify_vmid {
133 my ($vmid, $noerr) = @_;
134
135 if ($vmid !~ m/^[1-9][0-9]+$/) {
136 return undef if $noerr;
137 die "value does not look like a valid VM ID\n";
138 }
139 return $vmid;
140}
141
142register_format('pve-node', \&pve_verify_node_name);
143sub pve_verify_node_name {
144 my ($node, $noerr) = @_;
145
e6db55c0 146 if ($node !~ m/^([a-zA-Z0-9]([a-zA-Z0-9\-]*[a-zA-Z0-9])?)$/) {
e143e9d8
DM
147 return undef if $noerr;
148 die "value does not look like a valid node name\n";
149 }
150 return $node;
151}
152
153register_format('ipv4', \&pve_verify_ipv4);
154sub pve_verify_ipv4 {
155 my ($ipv4, $noerr) = @_;
156
ed5880ac
DM
157 if ($ipv4 !~ m/^(?:$IPV4RE)$/) {
158 return undef if $noerr;
159 die "value does not look like a valid IPv4 address\n";
e143e9d8
DM
160 }
161 return $ipv4;
162}
a13c6f08 163
ed5880ac 164register_format('ipv6', \&pve_verify_ipv6);
93276209 165sub pve_verify_ipv6 {
ed5880ac
DM
166 my ($ipv6, $noerr) = @_;
167
168 if ($ipv6 !~ m/^(?:$IPV6RE)$/) {
169 return undef if $noerr;
170 die "value does not look like a valid IPv6 address\n";
171 }
172 return $ipv6;
173}
174
175register_format('ip', \&pve_verify_ip);
176sub pve_verify_ip {
177 my ($ip, $noerr) = @_;
178
179 if ($ip !~ m/^(?:(?:$IPV4RE)|(?:$IPV6RE))$/) {
180 return undef if $noerr;
181 die "value does not look like a valid IP address\n";
182 }
183 return $ip;
184}
185
a13c6f08
DM
186my $ipv4_mask_hash = {
187 '128.0.0.0' => 1,
188 '192.0.0.0' => 2,
189 '224.0.0.0' => 3,
190 '240.0.0.0' => 4,
191 '248.0.0.0' => 5,
192 '252.0.0.0' => 6,
193 '254.0.0.0' => 7,
194 '255.0.0.0' => 8,
195 '255.128.0.0' => 9,
196 '255.192.0.0' => 10,
197 '255.224.0.0' => 11,
198 '255.240.0.0' => 12,
199 '255.248.0.0' => 13,
200 '255.252.0.0' => 14,
201 '255.254.0.0' => 15,
202 '255.255.0.0' => 16,
203 '255.255.128.0' => 17,
204 '255.255.192.0' => 18,
205 '255.255.224.0' => 19,
206 '255.255.240.0' => 20,
207 '255.255.248.0' => 21,
208 '255.255.252.0' => 22,
209 '255.255.254.0' => 23,
210 '255.255.255.0' => 24,
211 '255.255.255.128' => 25,
212 '255.255.255.192' => 26,
213 '255.255.255.224' => 27,
214 '255.255.255.240' => 28,
215 '255.255.255.248' => 29,
216 '255.255.255.252' => 30
217};
218
e143e9d8
DM
219register_format('ipv4mask', \&pve_verify_ipv4mask);
220sub pve_verify_ipv4mask {
221 my ($mask, $noerr) = @_;
222
a13c6f08 223 if (!defined($ipv4_mask_hash->{$mask})) {
e143e9d8
DM
224 return undef if $noerr;
225 die "value does not look like a valid IP netmask\n";
226 }
227 return $mask;
228}
229
e272bcb7
DM
230register_format('CIDR', \&pve_verify_cidr);
231sub pve_verify_cidr {
232 my ($cidr, $noerr) = @_;
233
234 if ($cidr =~ m!^(?:$IPV4RE)(?:/(\d+))$! && ($1 > 7) && ($1 < 32)) {
235 return $cidr;
236 } elsif ($cidr =~ m!^(?:$IPV6RE)(?:/(\d+))$! && ($1 > 7) && ($1 <= 120)) {
237 return $cidr;
238 }
239
240 return undef if $noerr;
241 die "value does not look like a valid CIDR network\n";
242}
243
e143e9d8
DM
244register_format('email', \&pve_verify_email);
245sub pve_verify_email {
246 my ($email, $noerr) = @_;
247
87cb0e60
EK
248 # we use same regex as in Utils.js
249 if ($email !~ /^(\w+)([\-+.][\w]+)*@(\w[\-\w]*\.){1,5}([A-Za-z]){2,63}$/) {
e143e9d8
DM
250 return undef if $noerr;
251 die "value does not look like a valid email address\n";
252 }
253 return $email;
254}
255
34ebb226
DM
256register_format('dns-name', \&pve_verify_dns_name);
257sub pve_verify_dns_name {
258 my ($name, $noerr) = @_;
259
ce33e978 260 my $namere = "([a-zA-Z0-9]([a-zA-Z0-9\-]*[a-zA-Z0-9])?)";
34ebb226
DM
261
262 if ($name !~ /^(${namere}\.)*${namere}$/) {
263 return undef if $noerr;
264 die "value does not look like a valid DNS name\n";
265 }
266 return $name;
267}
268
e143e9d8
DM
269# network interface name
270register_format('pve-iface', \&pve_verify_iface);
271sub pve_verify_iface {
272 my ($id, $noerr) = @_;
273
274 if ($id !~ m/^[a-z][a-z0-9_]{1,20}([:\.]\d+)?$/i) {
275 return undef if $noerr;
276 die "invalid network interface name '$id'\n";
277 }
278 return $id;
279}
280
d07b7084
WB
281# general addresses by name or IP
282register_format('address', \&pve_verify_address);
283sub pve_verify_address {
284 my ($addr, $noerr) = @_;
285
286 if (!(pve_verify_ip($addr, 1) ||
287 pve_verify_dns_name($addr, 1)))
288 {
289 return undef if $noerr;
290 die "value does not look like a valid address: $addr\n";
291 }
292 return $addr;
293}
294
f0a10afc
DM
295register_standard_option('spice-proxy', {
296 description => "SPICE proxy server. This can be used by the client to specify the proxy server. All nodes in a cluster runs 'spiceproxy', so it is up to the client to choose one. By default, we return the node where the VM is currently running. As resonable setting is to use same node you use to connect to the API (This is window.location.hostname for the JS GUI).",
d07b7084 297 type => 'string', format => 'address',
f0a10afc
DM
298});
299
300register_standard_option('remote-viewer-config', {
301 description => "Returned values can be directly passed to the 'remote-viewer' application.",
302 additionalProperties => 1,
303 properties => {
304 type => { type => 'string' },
305 password => { type => 'string' },
306 proxy => { type => 'string' },
307 host => { type => 'string' },
308 'tls-port' => { type => 'integer' },
309 },
310});
311
c70c3bbc 312register_format('pve-startup-order', \&pve_verify_startup_order);
b0edd8e6
DM
313sub pve_verify_startup_order {
314 my ($value, $noerr) = @_;
315
316 return $value if pve_parse_startup_order($value);
317
318 return undef if $noerr;
319
320 die "unable to parse startup options\n";
321}
322
323sub pve_parse_startup_order {
324 my ($value) = @_;
325
326 return undef if !$value;
327
328 my $res = {};
329
330 foreach my $p (split(/,/, $value)) {
331 next if $p =~ m/^\s*$/;
332
333 if ($p =~ m/^(order=)?(\d+)$/) {
334 $res->{order} = $2;
335 } elsif ($p =~ m/^up=(\d+)$/) {
336 $res->{up} = $1;
337 } elsif ($p =~ m/^down=(\d+)$/) {
338 $res->{down} = $1;
339 } else {
340 return undef;
341 }
342 }
343
344 return $res;
345}
346
347PVE::JSONSchema::register_standard_option('pve-startup-order', {
348 description => "Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.",
349 optional => 1,
350 type => 'string', format => 'pve-startup-order',
351 typetext => '[[order=]\d+] [,up=\d+] [,down=\d+] ',
352});
353
e143e9d8
DM
354sub check_format {
355 my ($format, $value) = @_;
356
357 return if $format eq 'regex';
358
23dc9401 359 if ($format =~ m/^(.*)-a?list$/) {
e143e9d8
DM
360
361 my $code = $format_list->{$1};
362
363 die "undefined format '$format'\n" if !$code;
364
365 # Note: we allow empty lists
366 foreach my $v (split_list($value)) {
367 &$code($v);
368 }
369
370 } elsif ($format =~ m/^(.*)-opt$/) {
371
372 my $code = $format_list->{$1};
373
374 die "undefined format '$format'\n" if !$code;
375
376 return if !$value; # allow empty string
377
378 &$code($value);
379
380 } else {
381
382 my $code = $format_list->{$format};
383
384 die "undefined format '$format'\n" if !$code;
385
386 &$code($value);
387 }
388}
389
390sub add_error {
391 my ($errors, $path, $msg) = @_;
392
393 $path = '_root' if !$path;
394
395 if ($errors->{$path}) {
396 $errors->{$path} = join ('\n', $errors->{$path}, $msg);
397 } else {
398 $errors->{$path} = $msg;
399 }
400}
401
402sub is_number {
403 my $value = shift;
404
405 # see 'man perlretut'
406 return $value =~ /^[+-]?(\d+\.\d+|\d+\.|\.\d+|\d+)([eE][+-]?\d+)?$/;
407}
408
409sub is_integer {
410 my $value = shift;
411
412 return $value =~ m/^[+-]?\d+$/;
413}
414
415sub check_type {
416 my ($path, $type, $value, $errors) = @_;
417
418 return 1 if !$type;
419
420 if (!defined($value)) {
421 return 1 if $type eq 'null';
422 die "internal error"
423 }
424
425 if (my $tt = ref($type)) {
426 if ($tt eq 'ARRAY') {
427 foreach my $t (@$type) {
428 my $tmperr = {};
429 check_type($path, $t, $value, $tmperr);
430 return 1 if !scalar(%$tmperr);
431 }
432 my $ttext = join ('|', @$type);
433 add_error($errors, $path, "type check ('$ttext') failed");
434 return undef;
435 } elsif ($tt eq 'HASH') {
436 my $tmperr = {};
437 check_prop($value, $type, $path, $tmperr);
438 return 1 if !scalar(%$tmperr);
439 add_error($errors, $path, "type check failed");
440 return undef;
441 } else {
442 die "internal error - got reference type '$tt'";
443 }
444
445 } else {
446
447 return 1 if $type eq 'any';
448
449 if ($type eq 'null') {
450 if (defined($value)) {
451 add_error($errors, $path, "type check ('$type') failed - value is not null");
452 return undef;
453 }
454 return 1;
455 }
456
457 my $vt = ref($value);
458
459 if ($type eq 'array') {
460 if (!$vt || $vt ne 'ARRAY') {
461 add_error($errors, $path, "type check ('$type') failed");
462 return undef;
463 }
464 return 1;
465 } elsif ($type eq 'object') {
466 if (!$vt || $vt ne 'HASH') {
467 add_error($errors, $path, "type check ('$type') failed");
468 return undef;
469 }
470 return 1;
471 } elsif ($type eq 'coderef') {
472 if (!$vt || $vt ne 'CODE') {
473 add_error($errors, $path, "type check ('$type') failed");
474 return undef;
475 }
476 return 1;
477 } else {
478 if ($vt) {
479 add_error($errors, $path, "type check ('$type') failed - got $vt");
480 return undef;
481 } else {
482 if ($type eq 'string') {
483 return 1; # nothing to check ?
484 } elsif ($type eq 'boolean') {
485 #if ($value =~ m/^(1|true|yes|on)$/i) {
486 if ($value eq '1') {
487 return 1;
488 #} elsif ($value =~ m/^(0|false|no|off)$/i) {
489 } elsif ($value eq '0') {
490 return 0;
491 } else {
492 add_error($errors, $path, "type check ('$type') failed - got '$value'");
493 return undef;
494 }
495 } elsif ($type eq 'integer') {
496 if (!is_integer($value)) {
497 add_error($errors, $path, "type check ('$type') failed - got '$value'");
498 return undef;
499 }
500 return 1;
501 } elsif ($type eq 'number') {
502 if (!is_number($value)) {
503 add_error($errors, $path, "type check ('$type') failed - got '$value'");
504 return undef;
505 }
506 return 1;
507 } else {
508 return 1; # no need to verify unknown types
509 }
510 }
511 }
512 }
513
514 return undef;
515}
516
517sub check_object {
518 my ($path, $schema, $value, $additional_properties, $errors) = @_;
519
520 # print "Check Object " . Dumper($value) . "\nSchema: " . Dumper($schema);
521
522 my $st = ref($schema);
523 if (!$st || $st ne 'HASH') {
524 add_error($errors, $path, "Invalid schema definition.");
525 return;
526 }
527
528 my $vt = ref($value);
529 if (!$vt || $vt ne 'HASH') {
530 add_error($errors, $path, "an object is required");
531 return;
532 }
533
534 foreach my $k (keys %$schema) {
535 check_prop($value->{$k}, $schema->{$k}, $path ? "$path.$k" : $k, $errors);
536 }
537
538 foreach my $k (keys %$value) {
539
540 my $newpath = $path ? "$path.$k" : $k;
541
542 if (my $subschema = $schema->{$k}) {
543 if (my $requires = $subschema->{requires}) {
544 if (ref($requires)) {
545 #print "TEST: " . Dumper($value) . "\n", Dumper($requires) ;
546 check_prop($value, $requires, $path, $errors);
547 } elsif (!defined($value->{$requires})) {
548 add_error($errors, $path ? "$path.$requires" : $requires,
549 "missing property - '$newpath' requiers this property");
550 }
551 }
552
553 next; # value is already checked above
554 }
555
556 if (defined ($additional_properties) && !$additional_properties) {
557 add_error($errors, $newpath, "property is not defined in schema " .
558 "and the schema does not allow additional properties");
559 next;
560 }
561 check_prop($value->{$k}, $additional_properties, $newpath, $errors)
562 if ref($additional_properties);
563 }
564}
565
86425a09
WB
566sub check_object_warn {
567 my ($path, $schema, $value, $additional_properties) = @_;
568 my $errors = {};
569 check_object($path, $schema, $value, $additional_properties, $errors);
570 if (scalar(%$errors)) {
571 foreach my $k (keys %$errors) {
572 warn "parse error: $k: $errors->{$k}\n";
573 }
574 return 0;
575 }
576 return 1;
577}
578
e143e9d8
DM
579sub check_prop {
580 my ($value, $schema, $path, $errors) = @_;
581
582 die "internal error - no schema" if !$schema;
583 die "internal error" if !$errors;
584
585 #print "check_prop $path\n" if $value;
586
587 my $st = ref($schema);
588 if (!$st || $st ne 'HASH') {
589 add_error($errors, $path, "Invalid schema definition.");
590 return;
591 }
592
593 # if it extends another schema, it must pass that schema as well
594 if($schema->{extends}) {
595 check_prop($value, $schema->{extends}, $path, $errors);
596 }
597
598 if (!defined ($value)) {
599 return if $schema->{type} && $schema->{type} eq 'null';
600 if (!$schema->{optional}) {
601 add_error($errors, $path, "property is missing and it is not optional");
602 }
603 return;
604 }
605
606 return if !check_type($path, $schema->{type}, $value, $errors);
607
608 if ($schema->{disallow}) {
609 my $tmperr = {};
610 if (check_type($path, $schema->{disallow}, $value, $tmperr)) {
611 add_error($errors, $path, "disallowed value was matched");
612 return;
613 }
614 }
615
616 if (my $vt = ref($value)) {
617
618 if ($vt eq 'ARRAY') {
619 if ($schema->{items}) {
620 my $it = ref($schema->{items});
621 if ($it && $it eq 'ARRAY') {
622 #die "implement me $path: $vt " . Dumper($schema) ."\n". Dumper($value);
623 die "not implemented";
624 } else {
625 my $ind = 0;
626 foreach my $el (@$value) {
627 check_prop($el, $schema->{items}, "${path}[$ind]", $errors);
628 $ind++;
629 }
630 }
631 }
632 return;
633 } elsif ($schema->{properties} || $schema->{additionalProperties}) {
634 check_object($path, defined($schema->{properties}) ? $schema->{properties} : {},
635 $value, $schema->{additionalProperties}, $errors);
636 return;
637 }
638
639 } else {
640
641 if (my $format = $schema->{format}) {
642 eval { check_format($format, $value); };
643 if ($@) {
644 add_error($errors, $path, "invalid format - $@");
645 return;
646 }
647 }
648
649 if (my $pattern = $schema->{pattern}) {
650 if ($value !~ m/^$pattern$/) {
651 add_error($errors, $path, "value does not match the regex pattern");
652 return;
653 }
654 }
655
656 if (defined (my $max = $schema->{maxLength})) {
657 if (length($value) > $max) {
658 add_error($errors, $path, "value may only be $max characters long");
659 return;
660 }
661 }
662
663 if (defined (my $min = $schema->{minLength})) {
664 if (length($value) < $min) {
665 add_error($errors, $path, "value must be at least $min characters long");
666 return;
667 }
668 }
669
670 if (is_number($value)) {
671 if (defined (my $max = $schema->{maximum})) {
672 if ($value > $max) {
673 add_error($errors, $path, "value must have a maximum value of $max");
674 return;
675 }
676 }
677
678 if (defined (my $min = $schema->{minimum})) {
679 if ($value < $min) {
680 add_error($errors, $path, "value must have a minimum value of $min");
681 return;
682 }
683 }
684 }
685
686 if (my $ea = $schema->{enum}) {
687
688 my $found;
689 foreach my $ev (@$ea) {
690 if ($ev eq $value) {
691 $found = 1;
692 last;
693 }
694 }
695 if (!$found) {
696 add_error($errors, $path, "value '$value' does not have a value in the enumeration '" .
697 join(", ", @$ea) . "'");
698 }
699 }
700 }
701}
702
703sub validate {
704 my ($instance, $schema, $errmsg) = @_;
705
706 my $errors = {};
707 $errmsg = "Parameter verification failed.\n" if !$errmsg;
708
709 # todo: cycle detection is only needed for debugging, I guess
710 # we can disable that in the final release
711 # todo: is there a better/faster way to detect cycles?
712 my $cycles = 0;
713 find_cycle($instance, sub { $cycles = 1 });
714 if ($cycles) {
715 add_error($errors, undef, "data structure contains recursive cycles");
716 } elsif ($schema) {
717 check_prop($instance, $schema, '', $errors);
718 }
719
720 if (scalar(%$errors)) {
721 raise $errmsg, code => HTTP_BAD_REQUEST, errors => $errors;
722 }
723
724 return 1;
725}
726
727my $schema_valid_types = ["string", "object", "coderef", "array", "boolean", "number", "integer", "null", "any"];
728my $default_schema_noref = {
729 description => "This is the JSON Schema for JSON Schemas.",
730 type => [ "object" ],
731 additionalProperties => 0,
732 properties => {
733 type => {
734 type => ["string", "array"],
735 description => "This is a type definition value. This can be a simple type, or a union type",
736 optional => 1,
737 default => "any",
738 items => {
739 type => "string",
740 enum => $schema_valid_types,
741 },
742 enum => $schema_valid_types,
743 },
744 optional => {
745 type => "boolean",
746 description => "This indicates that the instance property in the instance object is not required.",
747 optional => 1,
748 default => 0
749 },
750 properties => {
751 type => "object",
752 description => "This is a definition for the properties of an object value",
753 optional => 1,
754 default => {},
755 },
756 items => {
757 type => "object",
758 description => "When the value is an array, this indicates the schema to use to validate each item in an array",
759 optional => 1,
760 default => {},
761 },
762 additionalProperties => {
763 type => [ "boolean", "object"],
764 description => "This provides a default property definition for all properties that are not explicitly defined in an object type definition.",
765 optional => 1,
766 default => {},
767 },
768 minimum => {
769 type => "number",
770 optional => 1,
771 description => "This indicates the minimum value for the instance property when the type of the instance value is a number.",
772 },
773 maximum => {
774 type => "number",
775 optional => 1,
776 description => "This indicates the maximum value for the instance property when the type of the instance value is a number.",
777 },
778 minLength => {
779 type => "integer",
780 description => "When the instance value is a string, this indicates minimum length of the string",
781 optional => 1,
782 minimum => 0,
783 default => 0,
784 },
785 maxLength => {
786 type => "integer",
787 description => "When the instance value is a string, this indicates maximum length of the string.",
788 optional => 1,
789 },
790 typetext => {
791 type => "string",
792 optional => 1,
793 description => "A text representation of the type (used to generate documentation).",
794 },
795 pattern => {
796 type => "string",
797 format => "regex",
798 description => "When the instance value is a string, this provides a regular expression that a instance string value should match in order to be valid.",
799 optional => 1,
800 default => ".*",
801 },
802
803 enum => {
804 type => "array",
805 optional => 1,
806 description => "This provides an enumeration of possible values that are valid for the instance property.",
807 },
808 description => {
809 type => "string",
810 optional => 1,
811 description => "This provides a description of the purpose the instance property. The value can be a string or it can be an object with properties corresponding to various different instance languages (with an optional default property indicating the default description).",
812 },
d5d10f85
WB
813 format_description => {
814 type => "string",
815 optional => 1,
816 description => "This provides a shorter (usually just one word) description for a property used to generate descriptions for comma separated list property strings.",
817 },
e143e9d8
DM
818 title => {
819 type => "string",
820 optional => 1,
821 description => "This provides the title of the property",
822 },
823 requires => {
824 type => [ "string", "object" ],
825 optional => 1,
826 description => "indicates a required property or a schema that must be validated if this property is present",
827 },
828 format => {
829 type => "string",
830 optional => 1,
831 description => "This indicates what format the data is among some predefined formats which may include:\n\ndate - a string following the ISO format \naddress \nschema - a schema definition object \nperson \npage \nhtml - a string representing HTML",
832 },
833 default => {
834 type => "any",
835 optional => 1,
836 description => "This indicates the default for the instance property."
837 },
7829989f
DM
838 completion => {
839 type => 'coderef',
840 description => "Bash completion function. This function should return a list of possible values.",
841 optional => 1,
842 },
e143e9d8
DM
843 disallow => {
844 type => "object",
845 optional => 1,
846 description => "This attribute may take the same values as the \"type\" attribute, however if the instance matches the type or if this value is an array and the instance matches any type or schema in the array, than this instance is not valid.",
847 },
848 extends => {
849 type => "object",
850 optional => 1,
851 description => "This indicates the schema extends the given schema. All instances of this schema must be valid to by the extended schema also.",
852 default => {},
853 },
854 # this is from hyper schema
855 links => {
856 type => "array",
857 description => "This defines the link relations of the instance objects",
858 optional => 1,
859 items => {
860 type => "object",
861 properties => {
862 href => {
863 type => "string",
864 description => "This defines the target URL for the relation and can be parameterized using {propertyName} notation. It should be resolved as a URI-reference relative to the URI that was used to retrieve the instance document",
865 },
866 rel => {
867 type => "string",
868 description => "This is the name of the link relation",
869 optional => 1,
870 default => "full",
871 },
872 method => {
873 type => "string",
874 description => "For submission links, this defines the method that should be used to access the target resource",
875 optional => 1,
876 default => "GET",
877 },
878 },
879 },
880 },
881 }
882};
883
884my $default_schema = Storable::dclone($default_schema_noref);
885
886$default_schema->{properties}->{properties}->{additionalProperties} = $default_schema;
887$default_schema->{properties}->{additionalProperties}->{properties} = $default_schema->{properties};
888
889$default_schema->{properties}->{items}->{properties} = $default_schema->{properties};
890$default_schema->{properties}->{items}->{additionalProperties} = 0;
891
892$default_schema->{properties}->{disallow}->{properties} = $default_schema->{properties};
893$default_schema->{properties}->{disallow}->{additionalProperties} = 0;
894
895$default_schema->{properties}->{requires}->{properties} = $default_schema->{properties};
896$default_schema->{properties}->{requires}->{additionalProperties} = 0;
897
898$default_schema->{properties}->{extends}->{properties} = $default_schema->{properties};
899$default_schema->{properties}->{extends}->{additionalProperties} = 0;
900
901my $method_schema = {
902 type => "object",
903 additionalProperties => 0,
904 properties => {
905 description => {
906 description => "This a description of the method",
907 optional => 1,
908 },
909 name => {
910 type => 'string',
911 description => "This indicates the name of the function to call.",
912 optional => 1,
913 requires => {
914 additionalProperties => 1,
915 properties => {
916 name => {},
917 description => {},
918 code => {},
919 method => {},
920 parameters => {},
921 path => {},
922 parameters => {},
923 returns => {},
924 }
925 },
926 },
927 method => {
928 type => 'string',
929 description => "The HTTP method name.",
930 enum => [ 'GET', 'POST', 'PUT', 'DELETE' ],
931 optional => 1,
932 },
933 protected => {
934 type => 'boolean',
935 description => "Method needs special privileges - only pvedaemon can execute it",
936 optional => 1,
937 },
938 proxyto => {
939 type => 'string',
940 description => "A parameter name. If specified, all calls to this method are proxied to the host contained in that parameter.",
941 optional => 1,
942 },
943 permissions => {
944 type => 'object',
945 description => "Required access permissions. By default only 'root' is allowed to access this method.",
946 optional => 1,
947 additionalProperties => 0,
948 properties => {
b18d1722
DM
949 description => {
950 description => "Describe access permissions.",
951 optional => 1,
952 },
e143e9d8 953 user => {
b18d1722 954 description => "A simply way to allow access for 'all' authenticated users. Value 'world' is used to allow access without credentials.",
e143e9d8 955 type => 'string',
b18d1722 956 enum => ['all', 'world'],
e143e9d8
DM
957 optional => 1,
958 },
b18d1722
DM
959 check => {
960 description => "Array of permission checks (prefix notation).",
961 type => 'array',
962 optional => 1
963 },
e143e9d8
DM
964 },
965 },
966 match_name => {
967 description => "Used internally",
968 optional => 1,
969 },
970 match_re => {
971 description => "Used internally",
972 optional => 1,
973 },
974 path => {
975 type => 'string',
976 description => "path for URL matching (uri template)",
977 },
978 fragmentDelimiter => {
979 type => 'string',
980 description => "A ways to override the default fragment delimiter '/'. This onyl works on a whole sub-class. You can set this to the empty string to match the whole rest of the URI.",
981 optional => 1,
982 },
983 parameters => {
984 type => 'object',
985 description => "JSON Schema for parameters.",
986 optional => 1,
987 },
638edfd4
DM
988 formatter => {
989 type => 'object',
990 description => "Used to store page formatter information (set by PVE::RESTHandler->register_page_formatter).",
991 optional => 1,
992 },
e143e9d8
DM
993 returns => {
994 type => 'object',
995 description => "JSON Schema for return value.",
996 optional => 1,
997 },
998 code => {
999 type => 'coderef',
1000 description => "method implementaion (code reference)",
1001 optional => 1,
1002 },
1003 subclass => {
1004 type => 'string',
1005 description => "Delegate call to this class (perl class string).",
1006 optional => 1,
1007 requires => {
1008 additionalProperties => 0,
1009 properties => {
1010 subclass => {},
1011 path => {},
1012 match_name => {},
1013 match_re => {},
1014 fragmentDelimiter => { optional => 1 }
1015 }
1016 },
1017 },
1018 },
1019
1020};
1021
1022sub validate_schema {
1023 my ($schema) = @_;
1024
1025 my $errmsg = "internal error - unable to verify schema\n";
1026 validate($schema, $default_schema, $errmsg);
1027}
1028
1029sub validate_method_info {
1030 my $info = shift;
1031
1032 my $errmsg = "internal error - unable to verify method info\n";
1033 validate($info, $method_schema, $errmsg);
1034
1035 validate_schema($info->{parameters}) if $info->{parameters};
1036 validate_schema($info->{returns}) if $info->{returns};
1037}
1038
1039# run a self test on load
1040# make sure we can verify the default schema
1041validate_schema($default_schema_noref);
1042validate_schema($method_schema);
1043
1044# and now some utility methods (used by pve api)
1045sub method_get_child_link {
1046 my ($info) = @_;
1047
1048 return undef if !$info;
1049
1050 my $schema = $info->{returns};
1051 return undef if !$schema || !$schema->{type} || $schema->{type} ne 'array';
1052
1053 my $links = $schema->{links};
1054 return undef if !$links;
1055
1056 my $found;
1057 foreach my $lnk (@$links) {
1058 if ($lnk->{href} && $lnk->{rel} && ($lnk->{rel} eq 'child')) {
1059 $found = $lnk;
1060 last;
1061 }
1062 }
1063
1064 return $found;
1065}
1066
1067# a way to parse command line parameters, using a
1068# schema to configure Getopt::Long
1069sub get_options {
0ce82909 1070 my ($schema, $args, $arg_param, $fixed_param, $pwcallback) = @_;
e143e9d8
DM
1071
1072 if (!$schema || !$schema->{properties}) {
1073 raise("too many arguments\n", code => HTTP_BAD_REQUEST)
1074 if scalar(@$args) != 0;
1075 return {};
1076 }
1077
0ce82909
DM
1078 my $list_param;
1079 if ($arg_param && !ref($arg_param)) {
1080 my $pd = $schema->{properties}->{$arg_param};
1081 die "expected list format $pd->{format}"
1082 if !($pd && $pd->{format} && $pd->{format} =~ m/-list/);
1083 $list_param = $arg_param;
1084 }
1085
e143e9d8
DM
1086 my @getopt = ();
1087 foreach my $prop (keys %{$schema->{properties}}) {
1088 my $pd = $schema->{properties}->{$prop};
aab47b58 1089 next if $list_param && $prop eq $list_param;
0ce82909 1090 next if defined($fixed_param->{$prop});
e143e9d8
DM
1091
1092 if ($prop eq 'password' && $pwcallback) {
1093 # we do not accept plain password on input line, instead
1094 # we turn this into a boolean option and ask for password below
1095 # using $pwcallback() (for security reasons).
1096 push @getopt, "$prop";
1097 } elsif ($pd->{type} eq 'boolean') {
1098 push @getopt, "$prop:s";
1099 } else {
23dc9401 1100 if ($pd->{format} && $pd->{format} =~ m/-a?list/) {
8ba7c72b
DM
1101 push @getopt, "$prop=s@";
1102 } else {
1103 push @getopt, "$prop=s";
1104 }
e143e9d8
DM
1105 }
1106 }
1107
1068aeb3
WB
1108 Getopt::Long::Configure('prefix_pattern=(--|-)');
1109
e143e9d8
DM
1110 my $opts = {};
1111 raise("unable to parse option\n", code => HTTP_BAD_REQUEST)
1112 if !Getopt::Long::GetOptionsFromArray($args, $opts, @getopt);
1d21344c 1113
5851be88 1114 if (@$args) {
0ce82909
DM
1115 if ($list_param) {
1116 $opts->{$list_param} = $args;
1117 $args = [];
1118 } elsif (ref($arg_param)) {
5851be88
WB
1119 foreach my $arg_name (@$arg_param) {
1120 if ($opts->{'extra-args'}) {
1121 raise("internal error: extra-args must be the last argument\n", code => HTTP_BAD_REQUEST);
1122 }
1123 if ($arg_name eq 'extra-args') {
1124 $opts->{'extra-args'} = $args;
1125 $args = [];
1126 next;
1127 }
1128 raise("not enough arguments\n", code => HTTP_BAD_REQUEST) if !@$args;
1129 $opts->{$arg_name} = shift @$args;
0ce82909 1130 }
5851be88 1131 raise("too many arguments\n", code => HTTP_BAD_REQUEST) if @$args;
0ce82909
DM
1132 } else {
1133 raise("too many arguments\n", code => HTTP_BAD_REQUEST)
1134 if scalar(@$args) != 0;
1135 }
1d21344c
DM
1136 }
1137
e143e9d8
DM
1138 if (my $pd = $schema->{properties}->{password}) {
1139 if ($pd->{type} ne 'boolean' && $pwcallback) {
1140 if ($opts->{password} || !$pd->{optional}) {
1141 $opts->{password} = &$pwcallback();
1142 }
1143 }
1144 }
815b2aba
DM
1145
1146 $opts = PVE::Tools::decode_utf8_parameters($opts);
815b2aba 1147
e143e9d8
DM
1148 foreach my $p (keys %$opts) {
1149 if (my $pd = $schema->{properties}->{$p}) {
1150 if ($pd->{type} eq 'boolean') {
1151 if ($opts->{$p} eq '') {
1152 $opts->{$p} = 1;
1153 } elsif ($opts->{$p} =~ m/^(1|true|yes|on)$/i) {
1154 $opts->{$p} = 1;
1155 } elsif ($opts->{$p} =~ m/^(0|false|no|off)$/i) {
1156 $opts->{$p} = 0;
1157 } else {
1158 raise("unable to parse boolean option\n", code => HTTP_BAD_REQUEST);
1159 }
23dc9401 1160 } elsif ($pd->{format}) {
8ba7c72b 1161
23dc9401 1162 if ($pd->{format} =~ m/-list/) {
8ba7c72b 1163 # allow --vmid 100 --vmid 101 and --vmid 100,101
23dc9401 1164 # allow --dow mon --dow fri and --dow mon,fri
43479146 1165 $opts->{$p} = join(",", @{$opts->{$p}}) if ref($opts->{$p}) eq 'ARRAY';
23dc9401 1166 } elsif ($pd->{format} =~ m/-alist/) {
8ba7c72b
DM
1167 # we encode array as \0 separated strings
1168 # Note: CGI.pm also use this encoding
1169 if (scalar(@{$opts->{$p}}) != 1) {
1170 $opts->{$p} = join("\0", @{$opts->{$p}});
1171 } else {
1172 # st that split_list knows it is \0 terminated
1173 my $v = $opts->{$p}->[0];
1174 $opts->{$p} = "$v\0";
1175 }
1176 }
e143e9d8
DM
1177 }
1178 }
1179 }
1180
0ce82909
DM
1181 foreach my $p (keys %$fixed_param) {
1182 $opts->{$p} = $fixed_param->{$p};
e143e9d8
DM
1183 }
1184
1185 return $opts;
1186}
1187
1188# A way to parse configuration data by giving a json schema
1189sub parse_config {
1190 my ($schema, $filename, $raw) = @_;
1191
1192 # do fast check (avoid validate_schema($schema))
1193 die "got strange schema" if !$schema->{type} ||
1194 !$schema->{properties} || $schema->{type} ne 'object';
1195
1196 my $cfg = {};
1197
3c4d612a 1198 while ($raw =~ /^\s*(.+?)\s*$/gm) {
e143e9d8 1199 my $line = $1;
e143e9d8 1200
3c4d612a
WB
1201 next if $line =~ /^#/;
1202
1203 if ($line =~ m/^(\S+?):\s*(.*)$/) {
e143e9d8
DM
1204 my $key = $1;
1205 my $value = $2;
1206 if ($schema->{properties}->{$key} &&
1207 $schema->{properties}->{$key}->{type} eq 'boolean') {
1208
1209 $value = 1 if $value =~ m/^(1|on|yes|true)$/i;
1210 $value = 0 if $value =~ m/^(0|off|no|false)$/i;
1211 }
1212 $cfg->{$key} = $value;
1213 } else {
1214 warn "ignore config line: $line\n"
1215 }
1216 }
1217
1218 my $errors = {};
1219 check_prop($cfg, $schema, '', $errors);
1220
1221 foreach my $k (keys %$errors) {
1222 warn "parse error in '$filename' - '$k': $errors->{$k}\n";
1223 delete $cfg->{$k};
1224 }
1225
1226 return $cfg;
1227}
1228
1229# generate simple key/value file
1230sub dump_config {
1231 my ($schema, $filename, $cfg) = @_;
1232
1233 # do fast check (avoid validate_schema($schema))
1234 die "got strange schema" if !$schema->{type} ||
1235 !$schema->{properties} || $schema->{type} ne 'object';
1236
1237 validate($cfg, $schema, "validation error in '$filename'\n");
1238
1239 my $data = '';
1240
1241 foreach my $k (keys %$cfg) {
1242 $data .= "$k: $cfg->{$k}\n";
1243 }
1244
1245 return $data;
1246}
1247
d5d10f85
WB
1248sub generate_typetext {
1249 my ($schema) = @_;
1250 my $typetext = '';
1251 my (@optional, @required);
1252 foreach my $key (sort keys %$schema) {
1253 next if !$schema->{$key}->{format_description};
1254 if ($schema->{$key}->{optional}) {
1255 push @optional, $key;
1256 } else {
1257 push @required, $key;
1258 }
1259 }
1260 my ($pre, $post) = ('', '');
1261 foreach my $key (@required) {
1262 my $desc = $schema->{$key}->{format_description};
1263 $typetext .= "$pre$key=<$desc>$post";
1264 $pre = ', ';
1265 }
1266 $pre = ' [,' if $pre;
1267 foreach my $key (@optional) {
1268 my $desc = $schema->{$key}->{format_description};
1269 $typetext .= "$pre$key=<$desc>$post";
1270 $pre = ' [,';
1271 $post = ']';
1272 }
1273 return $typetext;
1274}
1275
e143e9d8 12761;