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
|
package instance
import (
"bytes"
"context"
"crypto/rand"
"database/sql"
"errors"
"fmt"
"math/big"
"net/http"
"os"
"path/filepath"
"slices"
"strconv"
"strings"
"time"
"github.com/flosch/pongo2"
"github.com/google/uuid"
incus "github.com/lxc/incus/v6/client"
"github.com/lxc/incus/v6/internal/instance"
"github.com/lxc/incus/v6/internal/migration"
"github.com/lxc/incus/v6/internal/server/backup"
"github.com/lxc/incus/v6/internal/server/db"
"github.com/lxc/incus/v6/internal/server/db/cluster"
deviceConfig "github.com/lxc/incus/v6/internal/server/device/config"
"github.com/lxc/incus/v6/internal/server/instance/drivers/qemudefault"
"github.com/lxc/incus/v6/internal/server/instance/instancetype"
"github.com/lxc/incus/v6/internal/server/instance/operationlock"
"github.com/lxc/incus/v6/internal/server/operations"
"github.com/lxc/incus/v6/internal/server/seccomp"
"github.com/lxc/incus/v6/internal/server/state"
storageDrivers "github.com/lxc/incus/v6/internal/server/storage/drivers"
"github.com/lxc/incus/v6/internal/server/sys"
localUtil "github.com/lxc/incus/v6/internal/server/util"
internalUtil "github.com/lxc/incus/v6/internal/util"
"github.com/lxc/incus/v6/internal/version"
"github.com/lxc/incus/v6/shared/api"
"github.com/lxc/incus/v6/shared/idmap"
"github.com/lxc/incus/v6/shared/logger"
"github.com/lxc/incus/v6/shared/osarch"
"github.com/lxc/incus/v6/shared/resources"
"github.com/lxc/incus/v6/shared/revert"
"github.com/lxc/incus/v6/shared/units"
"github.com/lxc/incus/v6/shared/util"
"github.com/lxc/incus/v6/shared/validate"
)
// ValidDevices is linked from instance/drivers.validDevices to validate device config.
var ValidDevices func(state *state.State, p api.Project, instanceType instancetype.Type, localDevices deviceConfig.Devices, expandedDevices deviceConfig.Devices) error
// Load is linked from instance/drivers.load to allow different instance types to be loaded.
var Load func(s *state.State, args db.InstanceArgs, p api.Project) (Instance, error)
// Create is linked from instance/drivers.create to allow difference instance types to be created.
// Returns a revert fail function that can be used to undo this function if a subsequent step fails.
var Create func(s *state.State, args db.InstanceArgs, p api.Project, op *operations.Operation) (Instance, revert.Hook, error)
func exclusiveConfigKeys(key1 string, key2 string, config map[string]string) (val string, ok bool, err error) {
if config[key1] != "" && config[key2] != "" {
return "", false, fmt.Errorf("Mutually exclusive keys %s and %s are set", key1, key2)
}
val, ok = config[key1]
if ok {
return
}
val, ok = config[key2]
if ok {
return
}
return "", false, nil
}
// ValidConfig validates an instance's config.
func ValidConfig(sysOS *sys.OS, config map[string]string, expanded bool, instanceType instancetype.Type) error {
if config == nil {
return nil
}
for k, v := range config {
if instanceType == instancetype.Any && !expanded && strings.HasPrefix(k, instance.ConfigVolatilePrefix) {
return errors.New("Volatile keys can only be set on instances")
}
if instanceType == instancetype.Any && !expanded && strings.HasPrefix(k, "image.") {
return errors.New("Image keys can only be set on instances")
}
err := validConfigKey(sysOS, k, v, instanceType)
if err != nil {
return err
}
}
_, rawSeccomp := config["raw.seccomp"]
_, isAllow, err := exclusiveConfigKeys("security.syscalls.allow", "security.syscalls.whitelist", config)
if err != nil {
return err
}
_, isDeny, err := exclusiveConfigKeys("security.syscalls.deny", "security.syscalls.blacklist", config)
if err != nil {
return err
}
val, _, err := exclusiveConfigKeys("security.syscalls.deny_default", "security.syscalls.blacklist_default", config)
if err != nil {
return err
}
isDenyDefault := util.IsTrue(val)
val, _, err = exclusiveConfigKeys("security.syscalls.deny_compat", "security.syscalls.blacklist_compat", config)
if err != nil {
return err
}
isDenyCompat := util.IsTrue(val)
if rawSeccomp && (isAllow || isDeny || isDenyDefault || isDenyCompat) {
return errors.New("raw.seccomp is mutually exclusive with security.syscalls*")
}
if isAllow && (isDeny || isDenyDefault || isDenyCompat) {
return errors.New("security.syscalls.allow is mutually exclusive with security.syscalls.deny*")
}
_, err = seccomp.SyscallInterceptMountFilter(config)
if err != nil {
return err
}
if instanceType == instancetype.Container && expanded && util.IsFalseOrEmpty(config["security.privileged"]) && sysOS.IdmapSet == nil {
return errors.New("No uid/gid allocation configured. In this mode, only privileged containers are supported")
}
if util.IsTrue(config["security.privileged"]) && util.IsTrue(config["nvidia.runtime"]) {
return errors.New("nvidia.runtime is incompatible with privileged containers")
}
return nil
}
func validConfigKey(os *sys.OS, key string, value string, instanceType instancetype.Type) error {
f, err := instance.ConfigKeyChecker(key, instanceType.ToAPI())
if err != nil {
return err
}
if err = f(value); err != nil {
return err
}
if strings.HasPrefix(key, "limits.kernel.") && instanceType == instancetype.VM {
return fmt.Errorf("%s isn't supported for VMs", key)
}
if key == "raw.lxc" {
return lxcValidConfig(value)
}
if key == "security.syscalls.deny_compat" || key == "security.syscalls.blacklist_compat" {
for _, arch := range os.Architectures {
if arch == osarch.ARCH_64BIT_INTEL_X86 ||
arch == osarch.ARCH_64BIT_ARMV8_LITTLE_ENDIAN ||
arch == osarch.ARCH_64BIT_POWERPC_BIG_ENDIAN {
return nil
}
}
return fmt.Errorf("%s isn't supported on this architecture", key)
}
return nil
}
func lxcParseRawLXC(line string) (string, string, error) {
// Ignore empty lines
if len(line) == 0 {
return "", "", nil
}
// Skip space {"\t", " "}
line = strings.TrimLeft(line, "\t ")
// Ignore comments
if strings.HasPrefix(line, "#") {
return "", "", nil
}
// Ensure the format is valid
membs := strings.SplitN(line, "=", 2)
if len(membs) != 2 {
return "", "", fmt.Errorf("Invalid raw.lxc line: %s", line)
}
key := strings.ToLower(strings.Trim(membs[0], " \t"))
val := strings.Trim(membs[1], " \t")
return key, val, nil
}
func lxcValidConfig(rawLxc string) error {
for _, line := range strings.Split(rawLxc, "\n") {
key, _, err := lxcParseRawLXC(line)
if err != nil {
return err
}
if key == "" {
continue
}
// block some keys
if key == "lxc.logfile" || key == "lxc.log.file" {
return errors.New("Setting lxc.logfile is not allowed")
}
if key == "lxc.syslog" || key == "lxc.log.syslog" {
return errors.New("Setting lxc.log.syslog is not allowed")
}
if key == "lxc.ephemeral" {
return errors.New("Setting lxc.ephemeral is not allowed")
}
if strings.HasPrefix(key, "lxc.prlimit.") {
return fmt.Errorf(`Process limits should be set via ` +
`"limits.kernel.[limit name]" and not ` +
`directly via "lxc.prlimit.[limit name]"`)
}
}
return nil
}
// AllowedUnprivilegedOnlyMap checks that root user is not mapped into instance.
func AllowedUnprivilegedOnlyMap(rawIdmap string) error {
rawMaps, err := idmap.NewSetFromIncusIDMap(rawIdmap)
if err != nil {
return err
}
for _, ent := range rawMaps.Entries {
if ent.HostID == 0 {
return errors.New("Cannot map root user into container as the server was configured to only allow unprivileged containers")
}
}
return nil
}
// LoadByID loads an instance by ID.
func LoadByID(s *state.State, id int) (Instance, error) {
var project string
var name string
err := s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
var err error
// Get the DB record
project, name, err = tx.GetInstanceProjectAndName(ctx, id)
if err != nil {
return fmt.Errorf("Failed getting instance project and name: %w", err)
}
return nil
})
if err != nil {
return nil, err
}
return LoadByProjectAndName(s, project, name)
}
// LoadInstanceDatabaseObject loads a db.Instance object, accounting for snapshots.
func LoadInstanceDatabaseObject(ctx context.Context, tx *db.ClusterTx, project, name string) (*cluster.Instance, error) {
var container *cluster.Instance
var err error
if strings.Contains(name, instance.SnapshotDelimiter) {
parts := strings.SplitN(name, instance.SnapshotDelimiter, 2)
instanceName := parts[0]
snapshotName := parts[1]
instance, err := cluster.GetInstance(ctx, tx.Tx(), project, instanceName)
if err != nil {
return nil, fmt.Errorf("Failed to fetch instance %q in project %q: %w", name, project, err)
}
snapshot, err := cluster.GetInstanceSnapshot(ctx, tx.Tx(), project, instanceName, snapshotName)
if err != nil {
return nil, fmt.Errorf("Failed to fetch snapshot %q of instance %q in project %q: %w", snapshotName, instanceName, project, err)
}
c := snapshot.ToInstance(instance.Name, instance.Node, instance.Type, instance.Architecture)
container = &c
} else {
container, err = cluster.GetInstance(ctx, tx.Tx(), project, name)
if err != nil {
return nil, fmt.Errorf("Failed to fetch instance %q in project %q: %w", name, project, err)
}
}
return container, nil
}
// LoadByProjectAndName loads an instance by project and name.
func LoadByProjectAndName(s *state.State, projectName string, instanceName string) (Instance, error) {
// Get the DB record
var args db.InstanceArgs
var p *api.Project
err := s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
proj, err := cluster.GetProject(ctx, tx.Tx(), projectName)
if err != nil {
return err
}
p, err = proj.ToAPI(ctx, tx.Tx())
if err != nil {
return err
}
inst, err := LoadInstanceDatabaseObject(ctx, tx, projectName, instanceName)
if err != nil {
return err
}
instArgs, err := tx.InstancesToInstanceArgs(ctx, true, *inst)
if err != nil {
return err
}
args = instArgs[inst.ID]
return nil
})
if err != nil {
return nil, err
}
inst, err := Load(s, args, *p)
if err != nil {
return nil, fmt.Errorf("Failed to load instance: %w", err)
}
return inst, nil
}
// LoadNodeAll loads all instances on this server.
func LoadNodeAll(s *state.State, instanceType instancetype.Type) ([]Instance, error) {
var err error
var instances []Instance
filter := cluster.InstanceFilter{Type: instanceType.Filter()}
if s.ServerName != "" {
filter.Node = &s.ServerName
}
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
return tx.InstanceList(ctx, func(dbInst db.InstanceArgs, p api.Project) error {
inst, err := Load(s, dbInst, p)
if err != nil {
return fmt.Errorf("Failed loading instance %q in project %q: %w", dbInst.Name, dbInst.Project, err)
}
instances = append(instances, inst)
return nil
}, filter)
})
if err != nil {
return nil, err
}
return instances, nil
}
// LoadFromBackup loads from a mounted instance's backup file.
// If applyProfiles is false, then the profiles property will be cleared to prevent profile enrichment from DB.
// Then the expanded config and expanded devices from the backup file will be applied to the local config and
// local devices respectively. This is done to allow an expanded instance to be returned without needing the DB.
func LoadFromBackup(s *state.State, projectName string, instancePath string, applyProfiles bool) (Instance, error) {
var inst Instance
backupYamlPath := filepath.Join(instancePath, "backup.yaml")
backupConf, err := backup.ParseConfigYamlFile(backupYamlPath)
if err != nil {
return nil, fmt.Errorf("Failed parsing instance backup file from %q: %w", backupYamlPath, err)
}
instDBArgs, err := backup.ConfigToInstanceDBArgs(s, backupConf, projectName, applyProfiles)
if err != nil {
return nil, err
}
if !applyProfiles {
// Stop instance.Load() from expanding profile config from DB, and apply expanded config from
// backup file to local config. This way we can still see the devices even if DB not available.
instDBArgs.Config = backupConf.Container.ExpandedConfig
instDBArgs.Devices = deviceConfig.NewDevices(backupConf.Container.ExpandedDevices)
}
var p *api.Project
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
proj, err := cluster.GetProject(ctx, tx.Tx(), projectName)
if err != nil {
return err
}
p, err = proj.ToAPI(ctx, tx.Tx())
if err != nil {
return err
}
return nil
})
if err != nil {
return nil, err
}
inst, err = Load(s, *instDBArgs, *p)
if err != nil {
return nil, fmt.Errorf("Failed loading instance from backup file %q: %w", backupYamlPath, err)
}
return inst, nil
}
// DeviceNextInterfaceHWAddr generates a random MAC address.
func DeviceNextInterfaceHWAddr() (string, error) {
// Generate a new random MAC address using the usual prefix
ret := bytes.Buffer{}
for _, c := range "10:66:6a:xx:xx:xx" {
if c == 'x' {
c, err := rand.Int(rand.Reader, big.NewInt(16))
if err != nil {
return "", err
}
ret.WriteString(fmt.Sprintf("%x", c.Int64()))
} else {
ret.WriteString(string(c))
}
}
return ret.String(), nil
}
// BackupLoadByName load an instance backup from the database.
func BackupLoadByName(s *state.State, project, name string) (*backup.InstanceBackup, error) {
var args db.InstanceBackup
// Get the backup database record
err := s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
var err error
args, err = tx.GetInstanceBackup(ctx, project, name)
return err
})
if err != nil {
return nil, err
}
// Load the instance it belongs to
instance, err := LoadByID(s, args.InstanceID)
if err != nil {
return nil, err
}
return backup.NewInstanceBackup(s, instance, args.ID, name, args.CreationDate, args.ExpiryDate, args.InstanceOnly, args.OptimizedStorage), nil
}
// ResolveImage takes an instance source and returns a hash suitable for instance creation or download.
func ResolveImage(ctx context.Context, tx *db.ClusterTx, projectName string, source api.InstanceSource) (string, error) {
if source.Fingerprint != "" {
return source.Fingerprint, nil
}
if source.Alias != "" {
if source.Server != "" {
return source.Alias, nil
}
_, alias, err := tx.GetImageAlias(ctx, projectName, source.Alias, true)
if err != nil {
return "", err
}
return alias.Target, nil
}
if source.Properties != nil {
if source.Server != "" {
return "", errors.New("Property match is only supported for local images")
}
hashes, err := tx.GetImagesFingerprints(ctx, projectName, false)
if err != nil {
return "", err
}
var image *api.Image
for _, imageHash := range hashes {
_, img, err := tx.GetImageByFingerprintPrefix(ctx, imageHash, cluster.ImageFilter{Project: &projectName})
if err != nil {
continue
}
if image != nil && img.CreatedAt.Before(image.CreatedAt) {
continue
}
match := true
for key, value := range source.Properties {
if img.Properties[key] != value {
match = false
break
}
}
if !match {
continue
}
image = img
}
if image != nil {
return image.Fingerprint, nil
}
return "", errors.New("No matching image could be found")
}
return "", errors.New("Must specify one of alias, fingerprint or properties for init from image")
}
// SuitableArchitectures returns a slice of architecture ids based on an instance create request.
//
// An empty list indicates that the request may be handled by any architecture.
// A nil list indicates that we can't tell at this stage, typically for private images.
func SuitableArchitectures(ctx context.Context, s *state.State, tx *db.ClusterTx, projectName string, sourceInst *cluster.Instance, sourceImageRef string, req api.InstancesPost) ([]int, error) {
// Handle cases where the architecture is already provided.
if slices.Contains([]string{"migration", "none"}, req.Source.Type) && req.Architecture != "" {
id, err := osarch.ArchitectureID(req.Architecture)
if err != nil {
return nil, err
}
return []int{id}, nil
}
// For migration, an architecture must be specified in the req.
if req.Source.Type == "migration" && req.Architecture == "" {
return nil, api.StatusErrorf(http.StatusBadRequest, "An architecture must be specified in migration requests")
}
// For none, allow any architecture.
if req.Source.Type == "none" {
return []int{}, nil
}
// For copy, always use the source architecture.
if req.Source.Type == "copy" {
return []int{sourceInst.Architecture}, nil
}
// For image, things get a bit more complicated.
if req.Source.Type == "image" {
// Handle local images.
if req.Source.Server == "" {
_, img, err := tx.GetImageByFingerprintPrefix(ctx, sourceImageRef, cluster.ImageFilter{Project: &projectName})
if err != nil {
return nil, err
}
id, err := osarch.ArchitectureID(img.Architecture)
if err != nil {
return nil, err
}
return []int{id}, nil
}
// Handle remote images.
if req.Source.Server != "" {
if req.Source.Secret != "" {
// We can't retrieve a private image, defer to later processing.
return nil, nil
}
var err error
var remote incus.ImageServer
if slices.Contains([]string{"", "incus", "lxd"}, req.Source.Protocol) {
// Remote image server.
remote, err = incus.ConnectPublicIncus(req.Source.Server, &incus.ConnectionArgs{
TLSServerCert: req.Source.Certificate,
UserAgent: version.UserAgent,
Proxy: s.Proxy,
CachePath: s.OS.CacheDir,
CacheExpiry: time.Hour,
SkipGetEvents: true,
SkipGetServer: true,
})
if err != nil {
return nil, err
}
} else if req.Source.Protocol == "simplestreams" {
// Remote simplestreams image server.
remote, err = incus.ConnectSimpleStreams(req.Source.Server, &incus.ConnectionArgs{
TLSServerCert: req.Source.Certificate,
UserAgent: version.UserAgent,
Proxy: s.Proxy,
CachePath: s.OS.CacheDir,
CacheExpiry: time.Hour,
})
if err != nil {
return nil, err
}
} else {
return nil, api.StatusErrorf(http.StatusBadRequest, "Unsupported remote image server protocol %q", req.Source.Protocol)
}
// Look for a matching alias.
entries, err := remote.GetImageAliasArchitectures(string(req.Type), sourceImageRef)
if err != nil {
// Look for a matching image by fingerprint.
img, _, err := remote.GetImage(sourceImageRef)
if err != nil {
return nil, err
}
id, err := osarch.ArchitectureID(img.Architecture)
if err != nil {
return nil, err
}
return []int{id}, nil
}
architectures := []int{}
for arch := range entries {
id, err := osarch.ArchitectureID(arch)
if err != nil {
return nil, err
}
architectures = append(architectures, id)
}
return architectures, nil
}
}
// No other known types
return nil, api.StatusErrorf(http.StatusBadRequest, "Unknown instance source type %q", req.Source.Type)
}
// ValidName validates an instance name. There are different validation rules for instance snapshot names
// so it takes an argument indicating whether the name is to be used for a snapshot or not.
func ValidName(instanceName string, isSnapshot bool) error {
if isSnapshot {
parentName, snapshotName, _ := api.GetParentAndSnapshotName(instanceName)
err := validate.IsHostname(parentName)
if err != nil {
return fmt.Errorf("Invalid instance name: %w", err)
}
// Snapshot part is more flexible, but doesn't allow space or / character.
if strings.ContainsAny(snapshotName, " /") {
return errors.New("Invalid instance snapshot name: Cannot contain space or / characters")
}
} else {
if strings.Contains(instanceName, instance.SnapshotDelimiter) {
return fmt.Errorf("The character %q is reserved for snapshots", instance.SnapshotDelimiter)
}
err := validate.IsHostname(instanceName)
if err != nil {
return fmt.Errorf("Invalid instance name: %w", err)
}
}
return nil
}
// CreateInternal creates an instance record and storage volume record in the database and sets up devices.
// Accepts a reverter that revert steps this function does will be added to. It is up to the caller to
// call the revert's Fail() or Success() function as needed.
// Returns the created instance, along with a "create" operation lock that needs to be marked as Done once the
// instance is fully completed, and a revert fail function that can be used to undo this function if a subsequent
// step fails.
func CreateInternal(s *state.State, args db.InstanceArgs, op *operations.Operation, clearLogDir bool, checkArchitecture bool) (Instance, *operationlock.InstanceOperation, revert.Hook, error) {
reverter := revert.New()
defer reverter.Fail()
// Check instance type requested is supported by this machine.
err := s.InstanceTypes[args.Type]
if err != nil {
return nil, nil, nil, fmt.Errorf("Instance type %q is not supported on this server: %w", args.Type, err)
}
// Set default values.
if args.Project == "" {
args.Project = api.ProjectDefaultName
}
if args.Profiles == nil {
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
args.Profiles, err = tx.GetProfiles(ctx, args.Project, []string{"default"})
return err
})
if err != nil {
return nil, nil, nil, errors.New("Failed to get default profile for new instance")
}
}
if args.Config == nil {
args.Config = map[string]string{}
}
if args.BaseImage != "" {
args.Config["volatile.base_image"] = args.BaseImage
}
if args.Config["volatile.uuid"] == "" {
args.Config["volatile.uuid"] = uuid.New().String()
}
args.Config["volatile.uuid.generation"] = args.Config["volatile.uuid"]
if args.Devices == nil {
args.Devices = deviceConfig.Devices{}
}
if args.Architecture == 0 {
args.Architecture = s.OS.Architectures[0]
}
err = ValidName(args.Name, args.Snapshot)
if err != nil {
return nil, nil, nil, err
}
if !args.Snapshot {
// Unset expiry date since instances don't expire.
args.ExpiryDate = time.Time{}
// Generate a cloud-init instance-id if not provided.
//
// This is generated here rather than in startCommon as only new
// instances or those which get modified should receive an instance-id.
// Existing instances will keep using their instance name as instance-id to
// avoid triggering cloud-init on upgrade.
if args.Config["volatile.cloud-init.instance-id"] == "" {
args.Config["volatile.cloud-init.instance-id"] = uuid.New().String()
}
}
// Validate instance config.
err = ValidConfig(s.OS, args.Config, false, args.Type)
if err != nil {
return nil, nil, nil, err
}
// Leave validating devices to Create function call below.
// Validate architecture.
_, err = osarch.ArchitectureName(args.Architecture)
if err != nil {
return nil, nil, nil, err
}
if checkArchitecture && !slices.Contains(s.OS.Architectures, args.Architecture) {
return nil, nil, nil, errors.New("Requested architecture isn't supported by this host")
}
var profiles []string
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
// Validate profiles.
profiles, err = tx.GetProfileNames(ctx, args.Project)
return err
})
if err != nil {
return nil, nil, nil, err
}
checkedProfiles := map[string]bool{}
for _, profile := range args.Profiles {
if !slices.Contains(profiles, profile.Name) {
return nil, nil, nil, fmt.Errorf("Requested profile %q doesn't exist", profile.Name)
}
if checkedProfiles[profile.Name] {
return nil, nil, nil, errors.New("Duplicate profile found in request")
}
checkedProfiles[profile.Name] = true
}
if args.CreationDate.IsZero() {
args.CreationDate = time.Now().UTC()
}
if args.LastUsedDate.IsZero() {
args.LastUsedDate = time.Unix(0, 0).UTC()
}
// Prevent concurrent create requests for same instance.
opl, err := operationlock.Create(args.Project, args.Name, op, operationlock.ActionCreate, false, false)
if err != nil {
return nil, nil, nil, err
}
reverter.Add(func() { opl.Done(err) })
var dbInst cluster.Instance
var p *api.Project
err = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
proj, err := cluster.GetProject(ctx, tx.Tx(), args.Project)
if err != nil {
return err
}
p, err = proj.ToAPI(ctx, tx.Tx())
if err != nil {
return err
}
devices, err := cluster.APIToDevices(args.Devices.CloneNative())
if err != nil {
return err
}
if args.Snapshot {
parts := strings.SplitN(args.Name, instance.SnapshotDelimiter, 2)
instanceName := parts[0]
snapshotName := parts[1]
instance, err := cluster.GetInstance(ctx, tx.Tx(), args.Project, instanceName)
if err != nil {
return fmt.Errorf("Get instance %q in project %q", instanceName, args.Project)
}
snapshot := cluster.InstanceSnapshot{
Project: args.Project,
Instance: instanceName,
Name: snapshotName,
CreationDate: args.CreationDate,
Stateful: args.Stateful,
Description: args.Description,
ExpiryDate: sql.NullTime{Time: args.ExpiryDate, Valid: true},
}
id, err := cluster.CreateInstanceSnapshot(ctx, tx.Tx(), snapshot)
if err != nil {
return fmt.Errorf("Add snapshot info to the database: %w", err)
}
err = cluster.CreateInstanceSnapshotConfig(ctx, tx.Tx(), id, args.Config)
if err != nil {
return err
}
err = cluster.CreateInstanceSnapshotDevices(ctx, tx.Tx(), id, devices)
if err != nil {
return err
}
// Read back the snapshot, to get ID and creation time.
s, err := cluster.GetInstanceSnapshot(ctx, tx.Tx(), args.Project, instanceName, snapshotName)
if err != nil {
return fmt.Errorf("Fetch created snapshot from the database: %w", err)
}
dbInst = s.ToInstance(instance.Name, instance.Node, instance.Type, instance.Architecture)
newArgs, err := tx.InstancesToInstanceArgs(ctx, false, dbInst)
if err != nil {
return err
}
// Populate profile info that was already loaded.
newInstArgs := newArgs[dbInst.ID]
newInstArgs.Profiles = args.Profiles
args = newInstArgs
return nil
}
// Create the instance entry.
dbInst = cluster.Instance{
Project: args.Project,
Name: args.Name,
Node: s.ServerName,
Type: args.Type,
Snapshot: args.Snapshot,
Architecture: args.Architecture,
Ephemeral: args.Ephemeral,
CreationDate: args.CreationDate,
Stateful: args.Stateful,
LastUseDate: sql.NullTime{Time: args.LastUsedDate, Valid: true},
Description: args.Description,
ExpiryDate: sql.NullTime{Time: args.ExpiryDate, Valid: true},
}
instanceID, err := cluster.CreateInstance(ctx, tx.Tx(), dbInst)
if err != nil {
return fmt.Errorf("Add instance info to the database: %w", err)
}
err = cluster.CreateInstanceDevices(ctx, tx.Tx(), instanceID, devices)
if err != nil {
return err
}
err = cluster.CreateInstanceConfig(ctx, tx.Tx(), instanceID, args.Config)
if err != nil {
return err
}
profileNames := make([]string, 0, len(args.Profiles))
for _, profile := range args.Profiles {
profileNames = append(profileNames, profile.Name)
}
err = cluster.UpdateInstanceProfiles(ctx, tx.Tx(), int(instanceID), dbInst.Project, profileNames)
if err != nil {
return err
}
// Read back the instance, to get ID and creation time.
dbRow, err := cluster.GetInstance(ctx, tx.Tx(), args.Project, args.Name)
if err != nil {
return fmt.Errorf("Fetch created instance from the database: %w", err)
}
dbInst = *dbRow
if dbInst.ID < 1 {
return fmt.Errorf("Unexpected instance database ID %d: %w", dbInst.ID, err)
}
newArgs, err := tx.InstancesToInstanceArgs(ctx, false, dbInst)
if err != nil {
return err
}
// Populate profile info that was already loaded.
newInstArgs := newArgs[dbInst.ID]
newInstArgs.Profiles = args.Profiles
args = newInstArgs
return nil
})
if err != nil {
if errors.Is(err, db.ErrAlreadyDefined) {
thing := "Instance"
if instance.IsSnapshot(args.Name) {
thing = "Snapshot"
}
return nil, nil, nil, fmt.Errorf("%s %q already exists", thing, args.Name)
}
return nil, nil, nil, err
}
reverter.Add(func() {
_ = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
return tx.DeleteInstance(ctx, dbInst.Project, dbInst.Name)
})
})
inst, cleanup, err := Create(s, args, *p, op)
if err != nil {
logger.Error("Failed initializing instance", logger.Ctx{"project": args.Project, "instance": args.Name, "type": args.Type, "err": err})
return nil, nil, nil, fmt.Errorf("Failed initializing instance: %w", err)
}
reverter.Add(cleanup)
// Wipe any existing log for this instance name.
if clearLogDir {
_ = os.RemoveAll(inst.LogPath())
_ = os.RemoveAll(inst.RunPath())
}
cleanup = reverter.Clone().Fail
reverter.Success()
return inst, opl, cleanup, err
}
// NextSnapshotName finds the next snapshot for an instance.
func NextSnapshotName(s *state.State, inst Instance, defaultPattern string) (string, error) {
var err error
pattern := inst.ExpandedConfig()["snapshots.pattern"]
if pattern == "" {
pattern = defaultPattern
}
pattern, err = internalUtil.RenderTemplate(pattern, pongo2.Context{
"creation_date": time.Now(),
})
if err != nil {
return "", err
}
count := strings.Count(pattern, "%d")
if count > 1 {
return "", fmt.Errorf("Snapshot pattern may contain '%%d' only once")
} else if count == 1 {
var i int
_ = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
i = tx.GetNextInstanceSnapshotIndex(ctx, inst.Project().Name, inst.Name(), pattern)
return nil
})
return strings.Replace(pattern, "%d", strconv.Itoa(i), 1), nil
}
snapshotExists := false
snapshots, err := inst.Snapshots()
if err != nil {
return "", err
}
for _, snap := range snapshots {
_, snapOnlyName, _ := api.GetParentAndSnapshotName(snap.Name())
if snapOnlyName == pattern {
snapshotExists = true
break
}
}
// Append '-0', '-1', etc. if the actual pattern/snapshot name already exists
if snapshotExists {
pattern = fmt.Sprintf("%s-%%d", pattern)
var i int
_ = s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
i = tx.GetNextInstanceSnapshotIndex(ctx, inst.Project().Name, inst.Name(), pattern)
return nil
})
return strings.Replace(pattern, "%d", strconv.Itoa(i), 1), nil
}
return pattern, nil
}
// temporaryName returns the temporary instance name using a stable random generator.
// The returned string is a valid DNS name.
func temporaryName(instUUID string) (string, error) {
r, err := localUtil.GetStableRandomGenerator(instUUID)
if err != nil {
return "", err
}
// The longest temporary name is move-of-18446744073709551615 which has a length
// of 30 characters since 18446744073709551615 is the biggest value for an uint64.
// The prefix is attached to have a valid DNS name that doesn't start with numbers.
return fmt.Sprintf("move-of-%d", r.Uint64()), nil
}
// MoveTemporaryName returns a name derived from the instance's volatile.uuid, to use when moving an instance
// across pools or cluster members which can be used for the naming the temporary copy before deleting the original
// instance and renaming the copy to the original name.
// If volatile.uuid is not set, a new UUID is generated and stored in the instance's config.
func MoveTemporaryName(inst Instance) (string, error) {
instUUID := inst.LocalConfig()["volatile.uuid"]
if instUUID == "" {
instUUID = uuid.New().String()
err := inst.VolatileSet(map[string]string{"volatile.uuid": instUUID})
if err != nil {
return "", fmt.Errorf("Failed setting volatile.uuid to %s: %w", instUUID, err)
}
}
return temporaryName(instUUID)
}
// IsSameLogicalInstance returns true if the supplied Instance and db.Instance have the same project and name or
// if they have the same volatile.uuid values.
func IsSameLogicalInstance(inst Instance, dbInst *db.InstanceArgs) bool {
// Instance name is unique within a project.
if dbInst.Project == inst.Project().Name && dbInst.Name == inst.Name() {
return true
}
// Don't trigger duplicate resource errors for temporary copies.
if dbInst.Config["volatile.uuid"] == inst.LocalConfig()["volatile.uuid"] {
// Accommodate moving instances between storage pools.
// Check temporary copy against source.
tempName, err := temporaryName(inst.LocalConfig()["volatile.uuid"])
if err != nil {
return false
}
if dbInst.Name == tempName {
return true
}
// Check source against temporary copy.
tempName, err = temporaryName(dbInst.Config["volatile.uuid"])
if err != nil {
return false
}
if inst.Name() == tempName {
return true
}
// Accommodate moving instances between projects.
if dbInst.Project != inst.Project().Name {
return true
}
}
return false
}
// SnapshotToProtobuf converts a snapshot record to a migration snapshot record.
func SnapshotToProtobuf(snap *api.InstanceSnapshot) *migration.Snapshot {
config := make([]*migration.Config, 0, len(snap.Config))
for k, v := range snap.Config {
kCopy := string(k)
vCopy := string(v)
config = append(config, &migration.Config{Key: &kCopy, Value: &vCopy})
}
devices := make([]*migration.Device, 0, len(snap.Devices))
for name, d := range snap.Devices {
props := make([]*migration.Config, 0, len(snap.Devices))
for k, v := range d {
// Local loop vars.
kCopy := string(k)
vCopy := string(v)
props = append(props, &migration.Config{Key: &kCopy, Value: &vCopy})
}
nameCopy := name // Local loop var.
devices = append(devices, &migration.Device{Name: &nameCopy, Config: props})
}
isEphemeral := snap.Ephemeral
archID, _ := osarch.ArchitectureID(snap.Architecture)
arch := int32(archID)
stateful := snap.Stateful
creationDate := snap.CreatedAt.UTC().Unix()
lastUsedDate := snap.LastUsedAt.UTC().Unix()
expiryDate := snap.ExpiresAt.UTC().Unix()
return &migration.Snapshot{
Name: &snap.Name,
LocalConfig: config,
Profiles: snap.Profiles,
Ephemeral: &isEphemeral,
LocalDevices: devices,
Architecture: &arch,
Stateful: &stateful,
CreationDate: &creationDate,
LastUsedDate: &lastUsedDate,
ExpiryDate: &expiryDate,
}
}
// SnapshotProtobufToInstanceArgs converts a migration snapshot record to DB instance record format.
func SnapshotProtobufToInstanceArgs(s *state.State, inst Instance, snap *migration.Snapshot) (*db.InstanceArgs, error) {
snapConfig := snap.GetLocalConfig()
config := make(map[string]string, len(snapConfig))
for _, ent := range snapConfig {
config[ent.GetKey()] = ent.GetValue()
}
snapDevices := snap.GetLocalDevices()
devices := make(deviceConfig.Devices, len(snapDevices))
for _, ent := range snap.GetLocalDevices() {
entConfig := ent.GetConfig()
props := make(map[string]string, len(entConfig))
for _, prop := range entConfig {
props[prop.GetKey()] = prop.GetValue()
}
devices[ent.GetName()] = props
}
var profiles []api.Profile
err := s.DB.Cluster.Transaction(context.TODO(), func(ctx context.Context, tx *db.ClusterTx) error {
var err error
profiles, err = tx.GetProfiles(ctx, inst.Project().Name, snap.Profiles)
return err
})
if err != nil {
return nil, err
}
args := db.InstanceArgs{
Architecture: int(snap.GetArchitecture()),
Config: config,
Type: inst.Type(),
Snapshot: true,
Devices: devices,
Ephemeral: snap.GetEphemeral(),
Name: inst.Name() + instance.SnapshotDelimiter + snap.GetName(),
Profiles: profiles,
Stateful: snap.GetStateful(),
Project: inst.Project().Name,
}
if snap.GetCreationDate() != 0 {
args.CreationDate = time.Unix(snap.GetCreationDate(), 0)
}
if snap.GetLastUsedDate() != 0 {
args.LastUsedDate = time.Unix(snap.GetLastUsedDate(), 0)
}
if snap.GetExpiryDate() != 0 {
args.ExpiryDate = time.Unix(snap.GetExpiryDate(), 0)
}
return &args, nil
}
// ResourceUsage returns an instance's expected CPU, memory and disk usage.
func ResourceUsage(instConfig map[string]string, instDevices map[string]map[string]string, instType api.InstanceType) (int64, int64, int64, error) {
var err error
limitsCPU := instConfig["limits.cpu"]
limitsMemory := instConfig["limits.memory"]
cpuUsage := int64(0)
memoryUsage := int64(0)
diskUsage := int64(0)
// Parse limits.cpu.
if limitsCPU != "" {
// Check if using shared CPU limits.
cpuUsage, err = strconv.ParseInt(limitsCPU, 10, 64)
if err != nil {
// Or get count of pinned CPUs.
pinnedCPUs, err := resources.ParseCpuset(limitsCPU)
if err != nil {
return -1, -1, -1, fmt.Errorf("Failed parsing instance resources limits.cpu: %w", err)
}
cpuUsage = int64(len(pinnedCPUs))
}
} else if instType == api.InstanceTypeVM {
// Apply VM CPU cores defaults if not specified.
cpuUsage = qemudefault.CPUCores
}
// Parse limits.memory.
memoryLimitStr := limitsMemory
// Apply VM memory limit defaults if not specified.
if instType == api.InstanceTypeVM && memoryLimitStr == "" {
memoryLimitStr = qemudefault.MemSize
}
if memoryLimitStr != "" {
memoryLimit, err := units.ParseByteSizeString(memoryLimitStr)
if err != nil {
return -1, -1, -1, fmt.Errorf("Failed parsing instance resources limits.memory: %w", err)
}
memoryUsage = int64(memoryLimit)
}
// Parse root disk size.
_, rootDiskConfig, err := instance.GetRootDiskDevice(instDevices)
if err == nil {
rootDiskSizeStr := rootDiskConfig["size"]
// Apply VM root disk size defaults if not specified.
if instType == api.InstanceTypeVM && rootDiskSizeStr == "" {
rootDiskSizeStr = storageDrivers.DefaultBlockSize
}
if rootDiskSizeStr != "" {
rootDiskSize, err := units.ParseByteSizeString(rootDiskSizeStr)
if err != nil {
return -1, -1, -1, fmt.Errorf("Failed parsing instance resources root disk size: %w", err)
}
diskUsage = int64(rootDiskSize)
}
}
return cpuUsage, memoryUsage, diskUsage, nil
}
|