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 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556
|
package instance
import (
"errors"
"fmt"
"strconv"
"strings"
"time"
scriptletLoad "github.com/lxc/incus/v6/internal/server/scriptlet/load"
"github.com/lxc/incus/v6/shared/api"
"github.com/lxc/incus/v6/shared/units"
"github.com/lxc/incus/v6/shared/validate"
)
// IsUserConfig returns true if the config key is a user configuration.
func IsUserConfig(key string) bool {
return strings.HasPrefix(key, "user.")
}
// ConfigVolatilePrefix indicates the prefix used for volatile config keys.
const ConfigVolatilePrefix = "volatile."
// HugePageSizeKeys is a list of known hugepage size configuration keys.
var HugePageSizeKeys = [...]string{"limits.hugepages.64KB", "limits.hugepages.1MB", "limits.hugepages.2MB", "limits.hugepages.1GB"}
// HugePageSizeSuffix contains the list of known hugepage size suffixes.
var HugePageSizeSuffix = [...]string{"64KB", "1MB", "2MB", "1GB"}
// InstanceConfigKeysAny is a map of config key to validator. (keys applying to containers AND virtual machines).
var InstanceConfigKeysAny = map[string]func(value string) error{
// gendoc:generate(entity=instance, group=boot, key=boot.autorestart)
// If set to `true` will attempt up to 10 restarts over a 1 minute period upon unexpected instance exit.
// ---
// type: bool
// liveupdate: no
// shortdesc: Whether to automatically restart an instance on unexpected exit
"boot.autorestart": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=boot, key=boot.autostart)
// If set to `false`, restore the last state.
// ---
// type: bool
// liveupdate: no
// shortdesc: Whether to always start the instance when the daemon starts
"boot.autostart": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=boot, key=boot.autostart.delay)
// The number of seconds to wait after the instance started before starting the next one.
// ---
// type: integer
// defaultdesc: 0
// liveupdate: no
// shortdesc: Delay after starting the instance
"boot.autostart.delay": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=boot, key=boot.autostart.priority)
// The instance with the highest value is started first.
// ---
// type: integer
// defaultdesc: 0
// liveupdate: no
// shortdesc: What order to start the instances in
"boot.autostart.priority": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=boot, key=boot.stop.priority)
// The instance with the highest value is shut down first.
// ---
// type: integer
// defaultdesc: 0
// liveupdate: no
// shortdesc: What order to shut down the instances in
"boot.stop.priority": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=boot, key=boot.host_shutdown_action)
// Action to take on host shut down
//
// Valid values are: `stop`, `force-stop` or `stateful-stop`
// ---
// type: string
// defaultdesc: stop
// liveupdate: yes
// shortdesc: What action to take on the instance when the host is shut down
"boot.host_shutdown_action": validate.Optional(validate.IsOneOf("stop", "force-stop", "stateful-stop")),
// gendoc:generate(entity=instance, group=boot, key=boot.host_shutdown_timeout)
// Number of seconds to wait for the instance to shut down before it is force-stopped.
// ---
// type: integer
// defaultdesc: 30
// liveupdate: yes
// shortdesc: How long to wait for the instance to shut down
"boot.host_shutdown_timeout": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=cloud-init, key=cloud-init.network-config)
// The content is used as seed value for `cloud-init`.
// ---
// type: string
// defaultdesc: `DHCP on eth0`
// liveupdate: no
// condition: If supported by image
// shortdesc: Network configuration for `cloud-init`
"cloud-init.network-config": validate.Optional(validate.IsYAML),
// gendoc:generate(entity=instance, group=cloud-init, key=cloud-init.user-data)
// The content is used as seed value for `cloud-init`.
// ---
// type: string
// defaultdesc: `#cloud-config`
// liveupdate: no
// condition: If supported by image
// shortdesc: User data for `cloud-init`
"cloud-init.user-data": validate.Optional(validate.IsCloudInitUserData),
// gendoc:generate(entity=instance, group=cloud-init, key=cloud-init.vendor-data)
// The content is used as seed value for `cloud-init`.
// ---
// type: string
// defaultdesc: `#cloud-config`
// liveupdate: no
// condition: If supported by image
// shortdesc: Vendor data for `cloud-init`
"cloud-init.vendor-data": validate.Optional(validate.IsCloudInitUserData),
// gendoc:generate(entity=instance, group=cloud-init, key=user.network-config)
//
// ---
// type: string
// defaultdesc: `DHCP on eth0`
// liveupdate: no
// condition: If supported by image
// shortdesc: Legacy version of `cloud-init.network-config`
// gendoc:generate(entity=instance, group=cloud-init, key=user.user-data)
//
// ---
// type: string
// defaultdesc: `#cloud-config`
// liveupdate: no
// condition: If supported by image
// shortdesc: Legacy version of `cloud-init.user-data`
// gendoc:generate(entity=instance, group=cloud-init, key=user.vendor-data)
//
// ---
// type: string
// defaultdesc: `#cloud-config`
// liveupdate: no
// condition: If supported by image
// shortdesc: Legacy version of `cloud-init.vendor-data`
// gendoc:generate(entity=instance, group=miscellaneous, key=cluster.evacuate)
// The `cluster.evacuate` provides control over how instances are handled when a cluster member is being
// evacuated.
//
// Available Modes:
// - `auto` *(default)*: The system will automatically decide the best evacuation method based on the
// instance's type and configured devices:
// + If any device is not suitable for migration, the instance will not be migrated (only stopped).
// + Live migration will be used only for virtual machines with the `migration.stateful` setting
// enabled and for which all its devices can be migrated as well.
// - `live-migrate`: Instances are live-migrated to another server. This means the instance remains running
// and operational during the migration process, ensuring minimal disruption.
// - `migrate`: In this mode, instances are migrated to another server in the cluster. The migration
// process will not be live, meaning there will be a brief downtime for the instance during the
// migration.
// - `stop`: Instances are not migrated. Instead, they are stopped on the current server.
// - `stateful-stop`: Instances are not migrated. Instead, they are stopped on the current server
// but with their runtime state (memory) stored on disk for resuming on restore.
// - `force-stop`: Instances are not migrated. Instead, they are forcefully stopped.
//
// See {ref}`cluster-evacuate` for more information.
// ---
// type: string
// defaultdesc: `auto`
// liveupdate: no
// shortdesc: What to do when evacuating the instance
"cluster.evacuate": validate.Optional(validate.IsOneOf("auto", "migrate", "live-migrate", "stop", "stateful-stop", "force-stop")),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.cpu)
// A number or a specific range of CPUs to expose to the instance.
//
// See {ref}`instance-options-limits-cpu` for more information.
// ---
// type: string
// defaultdesc: 1 (VMs)
// liveupdate: yes
// shortdesc: Which CPUs to expose to the instance
"limits.cpu": validate.Optional(validate.IsValidCPUSet),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.cpu.nodes)
// A comma-separated list of NUMA node IDs or ranges to place the instance CPUs on.
// Alternatively, the value `balanced` may be used to have Incus pick the least busy NUMA node on startup.
//
// See {ref}`instance-options-limits-cpu-container` for more information.
// ---
// type: string
// liveupdate: yes
// shortdesc: Which NUMA nodes to place the instance CPUs on
"limits.cpu.nodes": validate.Optional(validate.Or(validate.IsValidCPUSet, validate.IsOneOf("0", "balanced"))),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.disk.priority)
// Controls how much priority to give to the instance's I/O requests when under load.
//
// Specify an integer between 0 and 10.
// ---
// type: integer
// defaultdesc: `5` (medium)
// liveupdate: yes
// shortdesc: Priority of the instance's I/O requests
"limits.disk.priority": validate.Optional(validate.IsPriority),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory)
// Percentage of the host's memory or a fixed value in bytes.
// Various suffixes are supported.
//
// See {ref}`instances-limit-units` for details.
// ---
// type: string
// defaultdesc: `1GiB` (VMs)
// liveupdate: yes
// shortdesc: Usage limit for the host's memory
"limits.memory": func(value string) error {
if value == "" {
return nil
}
if strings.HasSuffix(value, "%") {
num, err := strconv.ParseInt(strings.TrimSuffix(value, "%"), 10, 64)
if err != nil {
return err
}
if num == 0 {
return errors.New("Memory limit can't be 0%")
}
return nil
}
num, err := units.ParseByteSizeString(value)
if err != nil {
return err
}
if num == 0 {
return errors.New("Memory limit can't be 0")
}
return nil
},
// gendoc:generate(entity=instance, group=migration, key=migration.stateful)
// Enabling this option prevents the use of some features that are incompatible with it.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// shortdesc: Whether to allow for stateful stop/start and snapshots
"migration.stateful": validate.Optional(validate.IsBool),
// Caller is responsible for full validation of any raw.* value.
// gendoc:generate(entity=instance, group=raw, key=raw.apparmor)
// The specified entries are appended to the generated profile.
// ---
// type: blob
// liveupdate: yes
// shortdesc: AppArmor profile entries
"raw.apparmor": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.idmap)
// For example: `both 1000 1000`
// ---
// type: blob
// liveupdate: no
// condition: unprivileged container
// shortdesc: Raw idmap configuration
"raw.idmap": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.guestapi)
// See {ref}`dev-incus` for more information.
// ---
// type: bool
// defaultdesc: `true`
// liveupdate: no
// shortdesc: Whether `/dev/incus` is present in the instance
"security.guestapi": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.protection.delete)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: yes
// shortdesc: Prevents the instance from being deleted
"security.protection.delete": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=snapshots, key=snapshots.schedule)
// Specify either a cron expression (`<minute> <hour> <dom> <month> <dow>`), a comma-and-space-separated list of schedule aliases (`@startup`, `@hourly`, `@daily`, `@midnight`, `@weekly`, `@monthly`, `@annually`, `@yearly`), or leave empty to disable automatic snapshots.
//
// Note that unlike most other configuration keys, this one must be comma-and-space-separated and not just comma-separated as cron expression can themselves contain commas.
//
// ---
// type: string
// defaultdesc: empty
// liveupdate: no
// shortdesc: Schedule for automatic instance snapshots
"snapshots.schedule": validate.Optional(validate.IsCron([]string{"@hourly", "@daily", "@midnight", "@weekly", "@monthly", "@annually", "@yearly", "@startup", "@never"})),
// gendoc:generate(entity=instance, group=snapshots, key=snapshots.schedule.stopped)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// shortdesc: Whether to automatically snapshot stopped instances
"snapshots.schedule.stopped": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=snapshots, key=snapshots.pattern)
// Specify a Pongo2 template string that represents the snapshot name.
// This template is used for scheduled snapshots and for unnamed snapshots.
//
// See {ref}`instance-options-snapshots-names` for more information.
// ---
// type: string
// defaultdesc: `snap%d`
// liveupdate: no
// shortdesc: Template for the snapshot name
"snapshots.pattern": validate.IsAny,
// gendoc:generate(entity=instance, group=snapshots, key=snapshots.expiry)
// Specify an expression like `1M 2H 3d 4w 5m 6y`.
// ---
// type: string
// liveupdate: no
// shortdesc: When snapshots are to be deleted
"snapshots.expiry": func(value string) error {
// Validate expression
_, err := GetExpiry(time.Time{}, value)
return err
},
// gendoc:generate(entity=instance, group=snapshots, key=snapshots.expiry.manual)
// Specify an expression like `1M 2H 3d 4w 5m 6y`.
// ---
// type: string
// liveupdate: no
// shortdesc: When snapshots are to be deleted (for those not created through scheduling)
"snapshots.expiry.manual": func(value string) error {
// Validate expression
_, err := GetExpiry(time.Time{}, value)
return err
},
// Volatile keys.
// gendoc:generate(entity=instance, group=volatile, key=volatile.apply_template)
// The template with the given name is triggered upon next startup.
// ---
// type: string
// shortdesc: Template hook
"volatile.apply_template": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.base_image)
// The hash of the image that the instance was created from (empty if the instance was not created from an image).
// ---
// type: string
// shortdesc: Hash of the base image
"volatile.base_image": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.cloud_init.instance-id)
//
// ---
// type: string
// shortdesc: `instance-id` (UUID) exposed to `cloud-init`
"volatile.cloud-init.instance-id": validate.Optional(validate.IsUUID),
// gendoc:generate(entity=instance, group=volatile, key=volatile.cluster.group)
// The cluster group(s) that the instance was restricted to at creation time.
// This is used during re-scheduling events like an evacuation to keep the instance within the requested set.
// ---
// type: string
// shortdesc: The original cluster group for the instance
"volatile.cluster.group": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.cpu.nodes)
// The NUMA node that was selected for the instance.
// ---
// type: string
// shortdesc: Instance NUMA node
"volatile.cpu.nodes": validate.Optional(validate.Or(validate.IsValidCPUSet, validate.IsOneOf("0", "balanced"))),
// gendoc:generate(entity=instance, group=volatile, key=volatile.evacuate.origin)
// The cluster member that the instance lived on before evacuation.
// ---
// type: string
// shortdesc: The origin of the evacuated instance
"volatile.evacuate.origin": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.last_state.power)
//
// ---
// type: string
// shortdesc: Instance state as of last host shutdown
"volatile.last_state.power": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.last_state.ready)
//
// ---
// type: string
// shortdesc: Instance marked itself as ready
"volatile.last_state.ready": validate.IsBool,
// gendoc:generate(entity=instance, group=volatile, key=volatile.rebalance.last_move)
//
// ---
// type: integer
// shortdesc: Timestamp of last move by automatic live-migration
"volatile.rebalance.last_move": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=volatile, key=volatile.uuid)
// The instance UUID is globally unique across all servers and projects.
// ---
// type: string
// shortdesc: Instance UUID
"volatile.uuid": validate.Optional(validate.IsUUID),
// gendoc:generate(entity=instance, group=volatile, key=volatile.uuid.generation)
// The instance generation UUID changes whenever the instance's place in time moves backwards.
// It is globally unique across all servers and projects.
// ---
// type: string
// shortdesc: Instance generation UUID
"volatile.uuid.generation": validate.Optional(validate.IsUUID),
}
// InstanceConfigKeysContainer is a map of config key to validator. (keys applying to containers only).
var InstanceConfigKeysContainer = map[string]func(value string) error{
// gendoc:generate(entity=instance, group=resource-limits, key=limits.cpu.allowance)
// To control how much of the CPU can be used, specify either a percentage (`50%`) for a soft limit
// or a chunk of time (`25ms/100ms`) for a hard limit.
//
// See {ref}`instance-options-limits-cpu-container` for more information.
// ---
// type: string
// defaultdesc: 100%
// liveupdate: yes
// condition: container
// shortdesc: How much of the CPU can be used
"limits.cpu.allowance": func(value string) error {
if value == "" {
return nil
}
if strings.HasSuffix(value, "%") {
// Percentage based allocation
_, err := strconv.Atoi(strings.TrimSuffix(value, "%"))
if err != nil {
return err
}
return nil
}
// Time based allocation
fields := strings.SplitN(value, "/", 2)
if len(fields) != 2 {
return fmt.Errorf("Invalid allowance: %s", value)
}
_, err := strconv.Atoi(strings.TrimSuffix(fields[0], "ms"))
if err != nil {
return err
}
_, err = strconv.Atoi(strings.TrimSuffix(fields[1], "ms"))
if err != nil {
return err
}
return nil
},
// gendoc:generate(entity=instance, group=resource-limits, key=limits.cpu.priority)
// When overcommitting resources, specify the CPU scheduling priority compared to other instances that share the same CPUs.
// Specify an integer between 0 and 10.
//
// See {ref}`instance-options-limits-cpu-container` for more information.
// ---
// type: integer
// defaultdesc: `10` (maximum)
// liveupdate: yes
// condition: container
// shortdesc: CPU scheduling priority compared to other instances
"limits.cpu.priority": validate.Optional(validate.IsPriority),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.hugepages.64KB)
// Fixed value (in bytes) to limit the number of 64 KB huge pages.
// Various suffixes are supported (see {ref}`instances-limit-units`).
//
// See {ref}`instance-options-limits-hugepages` for more information.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: Limit for the number of 64 KB huge pages
"limits.hugepages.64KB": validate.Optional(validate.IsSize),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.hugepages.1MB)
// Fixed value (in bytes) to limit the number of 1 MB huge pages.
// Various suffixes are supported (see {ref}`instances-limit-units`).
//
// See {ref}`instance-options-limits-hugepages` for more information.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: Limit for the number of 1 MB huge pages
"limits.hugepages.1MB": validate.Optional(validate.IsSize),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.hugepages.2MB)
// Fixed value (in bytes) to limit the number of 2 MB huge pages.
// Various suffixes are supported (see {ref}`instances-limit-units`).
//
// See {ref}`instance-options-limits-hugepages` for more information.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: Limit for the number of 2 MB huge pages
"limits.hugepages.2MB": validate.Optional(validate.IsSize),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.hugepages.1GB)
// Fixed value (in bytes) to limit the number of 1 GB huge pages.
// Various suffixes are supported (see {ref}`instances-limit-units`).
//
// See {ref}`instance-options-limits-hugepages` for more information.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: Limit for the number of 1 GB huge pages
"limits.hugepages.1GB": validate.Optional(validate.IsSize),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory.enforce)
// If the instance's memory limit is `hard`, the instance cannot exceed its limit.
// If it is `soft`, the instance can exceed its memory limit when extra host memory is available.
// ---
// type: string
// defaultdesc: `hard`
// liveupdate: yes
// condition: container
// shortdesc: Whether the memory limit is `hard` or `soft`
"limits.memory.enforce": validate.Optional(validate.IsOneOf("soft", "hard")),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory.swap)
// When set to `true` or `false`, it controls whether the container is likely to get some of
// its memory swapped by the kernel. Alternatively, it can be set to a bytes value which will
// then allow the container to make use of additional memory through swap.
// ---
// type: string
// defaultdesc: `true`
// liveupdate: yes
// condition: container
// shortdesc: Control swap usage by the instance
"limits.memory.swap": validate.Optional(validate.Or(validate.IsBool, validate.IsSize)),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory.swap.priority)
// Specify an integer between 0 and 10.
// The higher the value, the less likely the instance is to be swapped to disk.
// ---
// type: integer
// defaultdesc: `10` (maximum)
// liveupdate: yes
// condition: container
// shortdesc: Prevents the instance from being swapped to disk
"limits.memory.swap.priority": validate.Optional(validate.IsPriority),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.processes)
// If left empty, no limit is set.
// ---
// type: integer
// defaultdesc: empty
// liveupdate: yes
// condition: container
// shortdesc: Maximum number of processes that can run in the instance
"limits.processes": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=miscellaneous, key=linux.kernel_modules)
// Specify the kernel modules as a comma-separated list.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: Kernel modules to load before starting the instance
"linux.kernel_modules": validate.IsAny,
// gendoc:generate(entity=instance, group=migration, key=migration.incremental.memory)
// Using incremental memory transfer of the instance's memory can reduce downtime.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: yes
// condition: container
// shortdesc: Whether to use incremental memory transfer
"migration.incremental.memory": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=migration, key=migration.incremental.memory.iterations)
//
// ---
// type: integer
// defaultdesc: `10`
// liveupdate: yes
// condition: container
// shortdesc: Maximum number of transfer operations to go through before stopping the instance
"migration.incremental.memory.iterations": validate.Optional(validate.IsUint32),
// gendoc:generate(entity=instance, group=migration, key=migration.incremental.memory.goal)
//
// ---
// type: integer
// defaultdesc: `70`
// liveupdate: yes
// condition: container
// shortdesc: Percentage of memory to have in sync before stopping the instance
"migration.incremental.memory.goal": validate.Optional(validate.IsUint32),
// gendoc:generate(entity=instance, group=nvidia, key=nvidia.runtime)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to pass the host NVIDIA and CUDA runtime libraries into the instance
"nvidia.runtime": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=nvidia, key=nvidia.driver.capabilities)
// The specified driver capabilities are used to set `libnvidia-container NVIDIA_DRIVER_CAPABILITIES`.
// ---
// type: string
// defaultdesc: `compute,utility`
// liveupdate: no
// condition: container
// shortdesc: What driver capabilities the instance needs
"nvidia.driver.capabilities": validate.IsAny,
// gendoc:generate(entity=instance, group=nvidia, key=nvidia.require.cuda)
// The specified version expression is used to set `libnvidia-container NVIDIA_REQUIRE_CUDA`.
// ---
// type: string
// liveupdate: no
// condition: container
// shortdesc: Required CUDA version
"nvidia.require.cuda": validate.IsAny,
// gendoc:generate(entity=instance, group=nvidia, key=nvidia.require.driver)
// The specified version expression is used to set `libnvidia-container NVIDIA_REQUIRE_DRIVER`.
// ---
// type: string
// liveupdate: no
// condition: container
// shortdesc: Required driver version
"nvidia.require.driver": validate.IsAny,
// Caller is responsible for full validation of any raw.* value.
// gendoc:generate(entity=instance, group=raw, key=raw.lxc)
//
// ---
// type: blob
// liveupdate: no
// condition: container
// shortdesc: Raw LXC configuration to be appended to the generated one
"raw.lxc": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.seccomp)
//
// ---
// type: blob
// liveupdate: no
// condition: container
// shortdesc: Raw Seccomp configuration
"raw.seccomp": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.guestapi.images)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Controls the availability of the `/1.0/images` API over `guestapi`
"security.guestapi.images": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.idmap.base)
// Setting this option overrides auto-detection.
// ---
// type: integer
// liveupdate: no
// condition: unprivileged container
// shortdesc: The base host ID to use for the allocation
"security.idmap.base": validate.Optional(validate.IsUint32),
// gendoc:generate(entity=instance, group=security, key=security.idmap.isolated)
// If specified, the idmap used for this instance is unique among instances that have this option set.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: unprivileged container
// shortdesc: Whether to use a unique idmap for this instance
"security.idmap.isolated": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.idmap.size)
//
// ---
// type: integer
// liveupdate: no
// condition: unprivileged container
// shortdesc: The size of the idmap to use
"security.idmap.size": validate.Optional(validate.IsUint32),
// gendoc:generate(entity=instance, group=security, key=security.nesting)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: yes
// condition: container
// shortdesc: Whether to support running Incus (nested) inside the instance
"security.nesting": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.privileged)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to run the instance in privileged mode
"security.privileged": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.protection.shift)
// Set this option to `true` to prevent the instance's file system from being UID/GID shifted on startup.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: yes
// condition: container
// shortdesc: Whether to protect the file system from being UID/GID shifted
"security.protection.shift": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.allow)
// A `\n`-separated list of syscalls to allow.
// This list must be mutually exclusive with `security.syscalls.deny*`.
// ---
// type: string
// liveupdate: no
// condition: container
// shortdesc: List of syscalls to allow
"security.syscalls.allow": validate.IsAny,
// Legacy configuration keys (old names).
"security.syscalls.blacklist_default": validate.Optional(validate.IsBool),
"security.syscalls.blacklist_compat": validate.Optional(validate.IsBool),
"security.syscalls.blacklist": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.syscalls.deny_default)
//
// ---
// type: bool
// defaultdesc: `true`
// liveupdate: no
// condition: container
// shortdesc: Whether to enable the default syscall deny
"security.syscalls.deny_default": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.deny_compat)
// On `x86_64`, this option controls whether to block `compat_*` syscalls.
// On other architectures, the option is ignored.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to block `compat_*` syscalls (`x86_64` only)
"security.syscalls.deny_compat": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.deny)
// A `\n`-separated list of syscalls to deny.
// This list must be mutually exclusive with `security.syscalls.allow`.
// ---
// type: string
// liveupdate: no
// condition: container
// shortdesc: List of syscalls to deny
"security.syscalls.deny": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.bpf)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `bpf()` system call
"security.syscalls.intercept.bpf": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.bpf.devices)
// This option controls whether to allow BPF programs for the devices cgroup in the unified hierarchy to be loaded.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to allow BPF programs
"security.syscalls.intercept.bpf.devices": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.mknod)
// These system calls allow creation of a limited subset of char/block devices.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `mknod` and `mknodat` system calls
"security.syscalls.intercept.mknod": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.mount)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `mount` system call
"security.syscalls.intercept.mount": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.mount.allowed)
// Specify a comma-separated list of file systems that are safe to mount for processes inside the instance.
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: File systems that can be mounted
"security.syscalls.intercept.mount.allowed": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.mount.fuse)
// Specify the mounts of a given file system that should be redirected to their FUSE implementation (for example, `ext4=fuse2fs`).
// ---
// type: string
// liveupdate: yes
// condition: container
// shortdesc: File system that should be redirected to FUSE implementation
"security.syscalls.intercept.mount.fuse": validate.IsAny,
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.mount.shift)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: yes
// condition: container
// shortdesc: Whether to use idmapped mounts for syscall interception
"security.syscalls.intercept.mount.shift": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.sched_setscheduler)
// This system call allows increasing process priority.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `sched_setscheduler` system call
"security.syscalls.intercept.sched_setscheduler": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.setxattr)
// This system call allows setting a limited subset of restricted extended attributes.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `setxattr` system call
"security.syscalls.intercept.setxattr": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.syscalls.intercept.sysinfo)
// This system call can be used to get cgroup-based resource usage information.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: container
// shortdesc: Whether to handle the `sysinfo` system call
"security.syscalls.intercept.sysinfo": validate.Optional(validate.IsBool),
"security.syscalls.whitelist": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.last_state.idmap)
//
// ---
// type: string
// shortdesc: Serialized instance UID/GID map
"volatile.last_state.idmap": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.idmap.base)
//
// ---
// type: integer
// shortdesc: The first ID in the instance's primary idmap range
"volatile.idmap.base": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.idmap.current)
//
// ---
// type: string
// shortdesc: The idmap currently in use by the instance
"volatile.idmap.current": validate.IsAny,
// gendoc:generate(entity=instance, group=volatile, key=volatile.idmap.next)
//
// ---
// type: string
// shortdesc: The idmap to use the next time the instance starts
"volatile.idmap.next": validate.IsAny,
}
// InstanceConfigKeysVM is a map of config key to validator. (keys applying to VM only).
var InstanceConfigKeysVM = map[string]func(value string) error{
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory.hotplug)
// If this option is set to `false`, disable memory hotplug entirely.
// Alternatively, it can be set to a bytes value which will define an upper limit for hotplugged memory.
// The value must be greater than or equal to limits.memory.
// ---
// type: string
// defaultdesc: `true`
// liveupdate: yes
// condition: virtual machine
// shortdesc: Control upper limit for hotplugged memory or disable memory hotplug.
"limits.memory.hotplug": validate.Optional(validate.Or(validate.IsBool, validate.IsSize)),
// gendoc:generate(entity=instance, group=resource-limits, key=limits.memory.hugepages)
// If this option is set to `false`, regular system memory is used.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether to back the instance using huge pages
"limits.memory.hugepages": validate.Optional(validate.IsBool),
// Caller is responsible for full validation of any raw.* value.
// gendoc:generate(entity=instance, group=raw, key=raw.qemu)
//
// ---
// type: blob
// liveupdate: no
// condition: virtual machine
// shortdesc: Raw QEMU configuration to be appended to the generated command line
"raw.qemu": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.qemu.conf)
// See {ref}`instance-options-qemu` for more information.
// ---
// type: blob
// liveupdate: no
// condition: virtual machine
// shortdesc: Addition/override to the generated `qemu.conf` file
"raw.qemu.conf": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.qemu.qmp.early)
//
// ---
// type: blob
// liveupdate: no
// condition: virtual machine
// shortdesc: QMP commands to run before Incus QEMU initialization
"raw.qemu.qmp.early": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.qemu.qmp.post-start)
//
// ---
// type: blob
// liveupdate: no
// condition: virtual machine
// shortdesc: QMP commands to run after the VM has started
"raw.qemu.qmp.post-start": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.qemu.qmp.pre-start)
//
// ---
// type: blob
// liveupdate: no
// condition: virtual machine
// shortdesc: QMP commands to run after Incus QEMU initialization and before the VM has started
"raw.qemu.qmp.pre-start": validate.IsAny,
// gendoc:generate(entity=instance, group=raw, key=raw.qemu.scriptlet)
//
// ---
// type: string
// liveupdate: no
// condition: virtual machine
// shortdesc: QEMU scriptlet to run at early, pre-start and post-start stages
"raw.qemu.scriptlet": validate.Optional(scriptletLoad.QEMUValidate),
// gendoc:generate(entity=instance, group=security, key=security.agent.metrics)
//
// ---
// type: bool
// defaultdesc: `true`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether the `incus-agent` is queried for state information and metrics
"security.agent.metrics": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.csm)
// When enabling this option, set {config:option}`instance-security:security.secureboot` to `false`.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether to use a firmware that supports UEFI-incompatible operating systems
"security.csm": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.iommu)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether to enable virtual IOMMU, useful for device passthrough and nesting
"security.iommu": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.secureboot)
// When disabling this option, consider enabling {config:option}`instance-security:security.csm`.
// ---
// type: bool
// defaultdesc: `true`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether UEFI secure boot is enforced with the default Microsoft keys
"security.secureboot": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.sev)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether AMD SEV (Secure Encrypted Virtualization) is enabled for this VM
"security.sev": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.sev.policy.es)
//
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether AMD SEV-ES (SEV Encrypted State) is enabled for this VM
"security.sev.policy.es": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=security, key=security.sev.session.dh)
//
// ---
// type: string
// defaultdesc: `true`
// liveupdate: no
// condition: virtual machine
// shortdesc: The guest owner's `base64`-encoded Diffie-Hellman key
"security.sev.session.dh": validate.Optional(validate.IsAny),
// gendoc:generate(entity=instance, group=security, key=security.sev.session.data)
//
// ---
// type: string
// defaultdesc: `true`
// liveupdate: no
// condition: virtual machine
// shortdesc: The guest owner's `base64`-encoded session blob
"security.sev.session.data": validate.Optional(validate.IsAny),
// gendoc:generate(entity=instance, group=miscellaneous, key=agent.nic_config)
// For containers, the name and MTU of the default network interfaces is used for the instance devices.
// For virtual machines, set this option to `true` to set the name and MTU of the default network interfaces to be the same as the instance devices.
// ---
// type: bool
// defaultdesc: `false`
// liveupdate: no
// condition: virtual machine
// shortdesc: Whether to use the name and MTU of the default network interfaces
"agent.nic_config": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=volatile, key=volatile.apply_nvram)
//
// ---
// type: bool
// shortdesc: Whether to regenerate VM NVRAM the next time the instance starts
"volatile.apply_nvram": validate.Optional(validate.IsBool),
// gendoc:generate(entity=instance, group=volatile, key=volatile.vm.definition)
//
// ---
// type: string
// shortdesc: QEMU VM definition name (used for migration between versions)
"volatile.vm.definition": validate.Optional(validate.IsAny),
// gendoc:generate(entity=instance, group=volatile, key=volatile.vm.rtc_adjustment)
// Real Time Clock adjustment time to allow virtual machines to run on a different base than the host.
// ---
// type: int64
// shortdesc: Real Time Clock change adjustment
"volatile.vm.rtc_adjustment": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=volatile, key=volatile.vm.rtc_offset)
// Real Time Clock offset to allow virtual machines to run on a different base than the host.
// ---
// type: int64
// shortdesc: Real Time Clock change offset
"volatile.vm.rtc_offset": validate.Optional(validate.IsInt64),
// gendoc:generate(entity=instance, group=volatile, key=volatile.vsock_id)
//
// ---
// type: string
// shortdesc: Instance `vsock ID` used as of last start
"volatile.vsock_id": validate.Optional(validate.IsInt64),
}
// ConfigKeyChecker returns a function that will check whether or not
// a provide value is valid for the associate config key. Returns an
// error if the key is not known. The checker function only performs
// syntactic checking of the value, semantic and usage checking must
// be done by the caller. User defined keys are always considered to
// be valid, e.g. user.* and environment.* keys.
func ConfigKeyChecker(key string, instanceType api.InstanceType) (func(value string) error, error) {
f, ok := InstanceConfigKeysAny[key]
if ok {
return f, nil
}
if instanceType == api.InstanceTypeAny || instanceType == api.InstanceTypeContainer {
f, ok := InstanceConfigKeysContainer[key]
if ok {
return f, nil
}
}
if instanceType == api.InstanceTypeAny || instanceType == api.InstanceTypeVM {
f, ok := InstanceConfigKeysVM[key]
if ok {
return f, nil
}
}
if strings.HasPrefix(key, ConfigVolatilePrefix) {
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.apply_quota)
// The disk quota is applied the next time the instance starts.
// ---
// type: string
// shortdesc: Disk quota
if strings.HasSuffix(key, ".apply_quota") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.ceph_rbd)
//
// ---
// type: string
// shortdesc: RBD device path for Ceph disk devices
if strings.HasSuffix(key, ".ceph_rbd") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.host_name)
//
// ---
// type: string
// shortdesc: Network device name on the host
if strings.HasSuffix(key, ".host_name") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.hwaddr)
// The network device MAC address is used when no `hwaddr` property is set on the device itself.
// ---
// type: string
// shortdesc: Network device MAC address
if strings.HasSuffix(key, ".hwaddr") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.io.bus)
// The IO bus stores the actual IO bus being used, checked in case `io.bus=auto`.
// ---
// type: string
// shortdesc: IO bus in use
if strings.HasSuffix(key, ".io.bus") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.mig.uuid)
// The NVIDIA MIG instance UUID.
// ---
// type: string
// shortdesc: MIG instance UUID
if strings.HasSuffix(key, ".mig.uuid") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.name)
// The network interface name inside of the instance when no `name` property is set on the device itself.
// ---
// type: string
// shortdesc: Network interface name inside of the instance
if strings.HasSuffix(key, ".name") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.vgpu.uuid)
// The NVIDIA virtual GPU instance UUID.
// ---
// type: string
// shortdesc: virtual GPU instance UUID
if strings.HasSuffix(key, ".vgpu.uuid") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.created)
// Possible values are `true` or `false`.
// ---
// type: string
// shortdesc: Whether the network device physical device was created
if strings.HasSuffix(key, ".last_state.created") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.hwaddr)
// The original MAC that was used when moving a physical device into an instance.
// ---
// type: string
// shortdesc: Network device original MAC
if strings.HasSuffix(key, ".last_state.hwaddr") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.ip_addresses)
// Comma-separated list of the last used IP addresses of the network device.
// ---
// type: string
// shortdesc: Last used IP addresses
if strings.HasSuffix(key, ".last_state.ip_addresses") {
return validate.IsListOf(validate.IsNetworkAddress), nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.mtu)
// The original MTU that was used when moving a physical device into an instance.
// ---
// type: string
// shortdesc: Network device original MTU
if strings.HasSuffix(key, ".last_state.mtu") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.pci.driver)
// The original host driver for the PCI device.
// ---
// type: string
// shortdesc: PCI original host driver
if strings.HasSuffix(key, ".last_state.pci.driver") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.pci.parent)
// The parent host device used when allocating a PCI device to an instance.
// ---
// type: string
// shortdesc: PCI parent host device
if strings.HasSuffix(key, ".last_state.pci.parent") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.pci.slot.name)
// The parent host device PCI slot name.
// ---
// type: string
// shortdesc: PCI parent slot name
if strings.HasSuffix(key, ".last_state.pci.slot.name") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.usb.bus)
// The original USB bus address.
// ---
// type: string
// shortdesc: USB bus address
if strings.HasSuffix(key, ".last_state.usb.bus") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.usb.device)
// The original USB device identifier.
// ---
// type: string
// shortdesc: USB device identifier
if strings.HasSuffix(key, ".last_state.usb.device") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vdpa.name)
// The VDPA device name used when moving a VDPA device file descriptor into an instance.
// ---
// type: string
// shortdesc: VDPA device name
if strings.HasSuffix(key, ".last_state.vdpa.name") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vf.hwaddr)
// The original MAC used when moving a VF into an instance.
// ---
// type: string
// shortdesc: SR-IOV virtual function original MAC
if strings.HasSuffix(key, ".last_state.vf.hwaddr") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vf.id)
// The ID used when moving a VF into an instance.
// ---
// type: string
// shortdesc: SR-IOV virtual function ID
if strings.HasSuffix(key, ".last_state.vf.id") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vf.parent)
// The parent host device used when allocating a VF into an instance.
// ---
// type: string
// shortdesc: SR-IOV parent host device
if strings.HasSuffix(key, ".last_state.vf.parent") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vf.spoofcheck)
// The original spoof check setting used when moving a VF into an instance.
// ---
// type: string
// shortdesc: SR-IOV virtual function original spoof check setting
if strings.HasSuffix(key, ".last_state.vf.spoofcheck") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=volatile, key=volatile.<name>.last_state.vf.vlan)
// The original VLAN used when moving a VF into an instance.
// ---
// type: string
// shortdesc: SR-IOV virtual function original VLAN
if strings.HasSuffix(key, ".last_state.vf.vlan") {
return validate.IsAny, nil
}
}
// gendoc:generate(entity=instance, group=miscellaneous, key=environment.*)
// Extra environment variables to set on boot and during exec.
// ---
// type: string
// liveupdate: yes
// shortdesc: Free-form environment key/value
if strings.HasPrefix(key, "environment.") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=miscellaneous, key=user.*)
// User keys can be used in search.
// ---
// type: string
// liveupdate: yes
// shortdesc: Free-form user key/value storage
if strings.HasPrefix(key, "user.") {
return validate.IsAny, nil
}
if strings.HasPrefix(key, "image.") {
return validate.IsAny, nil
}
// gendoc:generate(entity=instance, group=miscellaneous, key=smbios11.*)
// `SMBIOS Type 11` configuration keys.
// ---
// type: string
// liveupdate: yes
// shortdesc: Free-form `SMBIOS Type 11` key/value
if strings.HasPrefix(key, "smbios11.") && instanceType == api.InstanceTypeAny || instanceType == api.InstanceTypeVM {
return validate.IsAny, nil
}
if strings.HasPrefix(key, "limits.kernel.") {
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.as)
//
// ---
// type: string
// resource: `RLIMIT_AS`
// shortdesc: Maximum size of the process's virtual memory
if strings.HasSuffix(key, ".as") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.core)
//
// ---
// type: string
// resource: `RLIMIT_CORE`
// shortdesc: Maximum size of the process's core dump file
if strings.HasSuffix(key, ".core") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.cpu)
//
// ---
// type: string
// resource: `RLIMIT_CPU`
// shortdesc: Limit in seconds on the amount of CPU time the process can consume
if strings.HasSuffix(key, ".cpu") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.data)
//
// ---
// type: string
// resource: `RLIMIT_DATA`
// shortdesc: Maximum size of the process's data segment
if strings.HasSuffix(key, ".data") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.fsize)
//
// ---
// type: string
// resource: `RLIMIT_FSIZE`
// shortdesc: Maximum size of files the process may create
if strings.HasSuffix(key, ".fsize") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.locks)
//
// ---
// type: string
// resource: `RLIMIT_LOCKS`
// shortdesc: Limit on the number of file locks that this process may establish
if strings.HasSuffix(key, ".locks") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.memlock)
//
// ---
// type: string
// resource: `RLIMIT_MEMLOCK`
// shortdesc: Limit on the number of bytes of memory that the process may lock in RAM
if strings.HasSuffix(key, ".memlock") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.nice)
//
// ---
// type: string
// resource: `RLIMIT_NICE`
// shortdesc: Maximum value to which the process's nice value can be raised
if strings.HasSuffix(key, ".nice") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.nofile)
//
// ---
// type: string
// resource: `RLIMIT_NOFILE`
// shortdesc: Maximum number of open files for the process
if strings.HasSuffix(key, ".nofile") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.nproc)
//
// ---
// type: string
// resource: `RLIMIT_NPROC`
// shortdesc: Maximum number of processes that can be created for the user of the calling process
if strings.HasSuffix(key, ".nproc") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.rtprio)
//
// ---
// type: string
// resource: `RLIMIT_RTPRIO`
// shortdesc: Maximum value on the real-time-priority that may be set for this process
if strings.HasSuffix(key, ".rtprio") {
return validate.IsAny, nil
}
// gendoc:generate(entity=kernel, group=limits, key=limits.kernel.sigpending)
//
// ---
// type: string
// resource: `RLIMIT_SIGPENDING`
// shortdesc: Limit on the number of bytes of memory that the process may lock in RAM
if strings.HasSuffix(key, ".sigpending") {
return validate.IsAny, nil
}
if len(key) > len("limits.kernel.") {
return validate.IsAny, nil
}
}
if (instanceType == api.InstanceTypeAny || instanceType == api.InstanceTypeContainer) &&
strings.HasPrefix(key, "linux.sysctl.") {
return validate.IsAny, nil
}
return nil, fmt.Errorf("Unknown configuration key: %s", key)
}
// InstanceIncludeWhenCopying is used to decide whether to include a config item or not when copying an instance.
// The remoteCopy argument indicates if the copy is remote (i.e between servers) as this affects the keys kept.
func InstanceIncludeWhenCopying(configKey string, remoteCopy bool) bool {
if configKey == "volatile.base_image" {
return true // Include volatile.base_image always as it can help optimize copies.
}
if configKey == "volatile.last_state.idmap" && !remoteCopy {
return true // Include volatile.last_state.idmap when doing local copy to avoid needless remapping.
}
if strings.HasPrefix(configKey, ConfigVolatilePrefix) {
return false // Exclude all other volatile keys.
}
return true // Keep all other keys.
}
|