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
|
//go:build linux && cgo && !agent
package db
import (
"context"
"database/sql"
"errors"
"fmt"
"net/http"
"sort"
"strings"
"time"
internalInstance "github.com/lxc/incus/v6/internal/instance"
"github.com/lxc/incus/v6/internal/server/db/cluster"
"github.com/lxc/incus/v6/internal/server/db/operationtype"
"github.com/lxc/incus/v6/internal/server/db/query"
deviceConfig "github.com/lxc/incus/v6/internal/server/device/config"
"github.com/lxc/incus/v6/internal/server/instance/instancetype"
"github.com/lxc/incus/v6/shared/api"
)
// InstanceArgs is a value object holding all db-related details about an instance.
type InstanceArgs struct {
// Don't set manually
ID int
Node string
Type instancetype.Type
Snapshot bool
// Creation only
Project string
BaseImage string
CreationDate time.Time
Architecture int
Config map[string]string
Description string
Devices deviceConfig.Devices
Ephemeral bool
LastUsedDate time.Time
Name string
Profiles []api.Profile
Stateful bool
ExpiryDate time.Time
}
// GetInstanceNames returns the names of all containers the given project.
func (c *ClusterTx) GetInstanceNames(ctx context.Context, project string) ([]string, error) {
stmt := `
SELECT instances.name FROM instances
JOIN projects ON projects.id = instances.project_id
WHERE projects.name = ?
`
return query.SelectStrings(ctx, c.tx, stmt, project)
}
// GetNodeAddressOfInstance returns the address of the node hosting the
// instance with the given name in the given project.
//
// It returns the empty string if the container is hosted on this node.
func (c *ClusterTx) GetNodeAddressOfInstance(ctx context.Context, project string, name string) (string, error) {
var stmt string
args := make([]any, 0, 4) // Expect up to 4 filters.
var filters strings.Builder
// Project filter.
filters.WriteString("projects.name = ?")
args = append(args, project)
// Instance type filter.
if strings.Contains(name, internalInstance.SnapshotDelimiter) {
parts := strings.SplitN(name, internalInstance.SnapshotDelimiter, 2)
// Instance name filter.
filters.WriteString(" AND instances.name = ?")
args = append(args, parts[0])
// Snapshot name filter.
filters.WriteString(" AND instances_snapshots.name = ?")
args = append(args, parts[1])
stmt = fmt.Sprintf(`
SELECT nodes.id, nodes.address
FROM nodes
JOIN instances ON instances.node_id = nodes.id
JOIN projects ON projects.id = instances.project_id
JOIN instances_snapshots ON instances_snapshots.instance_id = instances.id
WHERE %s
`, filters.String())
} else {
// Instance name filter.
filters.WriteString(" AND instances.name = ?")
args = append(args, name)
stmt = fmt.Sprintf(`
SELECT nodes.id, nodes.address
FROM nodes
JOIN instances ON instances.node_id = nodes.id
JOIN projects ON projects.id = instances.project_id
WHERE %s
`, filters.String())
}
var address string
var id int64
rows, err := c.tx.QueryContext(ctx, stmt, args...)
if err != nil {
return "", err
}
defer func() { _ = rows.Close() }()
if !rows.Next() {
return "", api.StatusErrorf(http.StatusNotFound, "Instance not found")
}
err = rows.Scan(&id, &address)
if err != nil {
return "", err
}
if rows.Next() {
return "", errors.New("More than one cluster member associated with instance")
}
err = rows.Err()
if err != nil {
return "", err
}
if id == c.nodeID {
return "", nil
}
return address, nil
}
// Instance represents basic instance info.
type Instance struct {
ID int64
Name string
Project string
Location string
Type instancetype.Type
}
// GetInstancesByMemberAddress returns the instances associated to each cluster member address.
// The member address of instances running on the local member is set to the empty string, to distinguish it from
// remote nodes. Instances whose member is down are added to the special address "0.0.0.0".
func (c *ClusterTx) GetInstancesByMemberAddress(ctx context.Context, offlineThreshold time.Duration, projects []string) (map[string][]Instance, error) {
args := make([]any, 0, 2) // Expect up to 2 filters.
var q strings.Builder
q.WriteString(`SELECT
instances.id, instances.name, instances.type,
nodes.id, nodes.name, nodes.address, nodes.heartbeat,
projects.name
FROM instances
JOIN nodes ON nodes.id = instances.node_id
JOIN projects ON projects.id = instances.project_id
`)
// Project filter.
q.WriteString(fmt.Sprintf("WHERE projects.name IN %s", query.Params(len(projects))))
for _, project := range projects {
args = append(args, project)
}
q.WriteString(" ORDER BY instances.id")
rows, err := c.tx.QueryContext(ctx, q.String(), args...)
if err != nil {
return nil, err
}
defer func() { _ = rows.Close() }()
memberAddressInstances := make(map[string][]Instance)
for rows.Next() {
var inst Instance
var memberAddress string
var memberID int64
var memberHeartbeat time.Time
err := rows.Scan(&inst.ID, &inst.Name, &inst.Type, &memberID, &inst.Location, &memberAddress, &memberHeartbeat, &inst.Project)
if err != nil {
return nil, err
}
if memberID == c.nodeID {
memberAddress = ""
} else if nodeIsOffline(offlineThreshold, memberHeartbeat) {
memberAddress = "0.0.0.0"
}
memberAddressInstances[memberAddress] = append(memberAddressInstances[memberAddress], inst)
}
err = rows.Err()
if err != nil {
return nil, err
}
return memberAddressInstances, nil
}
// ErrInstanceListStop used as return value from InstanceList's instanceFunc when prematurely stopping the search.
var ErrInstanceListStop = errors.New("search stopped")
// InstanceList loads all instances across all projects and for each instance runs the instanceFunc passing in the
// instance and it's project and profiles. Accepts optional filter arguments to specify a subset of instances.
func (c *ClusterTx) InstanceList(ctx context.Context, instanceFunc func(inst InstanceArgs, project api.Project) error, filters ...cluster.InstanceFilter) error {
projectsByName := make(map[string]*api.Project)
var instances map[int]InstanceArgs
emptyFilter := cluster.InstanceFilter{}
validFilters := []cluster.InstanceFilter{}
for _, filter := range filters {
if filter.Type != nil && *filter.Type == instancetype.Any {
filter.Type = nil
}
if filter != emptyFilter {
validFilters = append(validFilters, filter)
}
}
// Retrieve required info from the database in single transaction for performance.
// Get all projects.
projects, err := cluster.GetProjects(ctx, c.tx)
if err != nil {
return fmt.Errorf("Failed loading projects: %w", err)
}
// Get all instances using supplied filter.
dbInstances, err := cluster.GetInstances(ctx, c.tx, validFilters...)
if err != nil {
return fmt.Errorf("Failed loading instances: %w", err)
}
// Fill instances with config, devices and profiles.
instances, err = c.InstancesToInstanceArgs(ctx, true, dbInstances...)
if err != nil {
return err
}
// Record which projects are referenced by at least one instance in the list.
for _, instance := range instances {
_, ok := projectsByName[instance.Project]
if !ok {
projectsByName[instance.Project] = nil
}
}
// Populate projectsByName map entry for referenced projects.
// This way we only call ToAPI() on the projects actually referenced by the instances in
// the list, which can reduce the number of queries run.
for _, project := range projects {
_, ok := projectsByName[project.Name]
if !ok {
continue
}
projectsByName[project.Name], err = project.ToAPI(ctx, c.tx)
if err != nil {
return err
}
}
// Call the instanceFunc provided for each instance after the transaction has ended, as we don't know if
// the instanceFunc will be slow or may need to make additional DB queries.
for _, instance := range instances {
project := projectsByName[instance.Project]
if project == nil {
return fmt.Errorf("Instance references %d project %q that isn't loaded", instance.ID, instance.Project)
}
err = instanceFunc(instance, *project)
if err != nil {
return err
}
}
return nil
}
// instanceConfigFill function loads config for all specified instances in a single query and then updates
// the entries in the instances map.
func (c *ClusterTx) instanceConfigFill(ctx context.Context, snapshotsMode bool, instanceArgs *map[int]InstanceArgs) error {
instances := *instanceArgs
// Don't use query parameters for the IN statement to workaround an issue in Dqlite (apparently)
// that means that >255 query parameters causes partial result sets. See #10705
// This is safe as the inputs are ints.
var q strings.Builder
if snapshotsMode {
q.WriteString(`SELECT
instance_snapshot_id,
key,
value
FROM instances_snapshots_config
WHERE instance_snapshot_id IN (`)
} else {
q.WriteString(`SELECT
instance_id,
key,
value
FROM instances_config
WHERE instance_id IN (`)
}
q.Grow(len(instances) * 2) // We know the minimum length of the separators and integers.
first := true
for instanceID := range instances {
if !first {
q.WriteString(",")
}
first = false
q.WriteString(fmt.Sprintf("%d", instanceID))
}
q.WriteString(`)`)
return query.Scan(ctx, c.Tx(), q.String(), func(scan func(dest ...any) error) error {
var instanceID int
var key, value string
err := scan(&instanceID, &key, &value)
if err != nil {
return err
}
_, found := instances[instanceID]
if !found {
return fmt.Errorf("Failed loading instance config, referenced instance %d not loaded", instanceID)
}
if instances[instanceID].Config == nil {
inst := instances[instanceID]
inst.Config = make(map[string]string)
instances[instanceID] = inst
}
_, found = instances[instanceID].Config[key]
if found {
return fmt.Errorf("Duplicate config row found for key %q for instance ID %d", key, instanceID)
}
instances[instanceID].Config[key] = value
return nil
})
}
// instanceDevicesFill loads the device config for all instances specified in a single query and then updates
// the entries in the instances map.
func (c *ClusterTx) instanceDevicesFill(ctx context.Context, snapshotsMode bool, instanceArgs *map[int]InstanceArgs) error {
instances := *instanceArgs
// Don't use query parameters for the IN statement to workaround an issue in Dqlite (apparently)
// that means that >255 query parameters causes partial result sets. See #10705
// This is safe as the inputs are ints.
var q strings.Builder
if snapshotsMode {
q.WriteString(`
SELECT
instances_snapshots_devices.instance_snapshot_id AS instance_snapshot_id,
instances_snapshots_devices.name AS device_name,
instances_snapshots_devices.type AS device_type,
instances_snapshots_devices_config.key,
instances_snapshots_devices_config.value
FROM instances_snapshots_devices_config
JOIN instances_snapshots_devices ON instances_snapshots_devices.id = instances_snapshots_devices_config.instance_snapshot_device_id
WHERE instances_snapshots_devices.instance_snapshot_id IN (`)
} else {
q.WriteString(`
SELECT
instances_devices.instance_id AS instance_id,
instances_devices.name AS device_name,
instances_devices.type AS device_type,
instances_devices_config.key,
instances_devices_config.value
FROM instances_devices_config
JOIN instances_devices ON instances_devices.id = instances_devices_config.instance_device_id
WHERE instances_devices.instance_id IN (`)
}
q.Grow(len(instances) * 2) // We know the minimum length of the separators and integers.
first := true
for instanceID := range instances {
if !first {
q.WriteString(",")
}
first = false
q.WriteString(fmt.Sprintf("%d", instanceID))
}
q.WriteString(`)`)
return query.Scan(ctx, c.Tx(), q.String(), func(scan func(dest ...any) error) error {
var instanceID int
var deviceType cluster.DeviceType
var deviceName, key, value string
err := scan(&instanceID, &deviceName, &deviceType, &key, &value)
if err != nil {
return err
}
_, found := instances[instanceID]
if !found {
return fmt.Errorf("Failed loading instance device, referenced instance %d not loaded", instanceID)
}
if instances[instanceID].Devices == nil {
inst := instances[instanceID]
inst.Devices = make(deviceConfig.Devices)
instances[instanceID] = inst
}
_, found = instances[instanceID].Devices[deviceName]
if !found {
instances[instanceID].Devices[deviceName] = deviceConfig.Device{
"type": deviceType.String(), // Map instances_devices type to config field.
}
}
_, found = instances[instanceID].Devices[deviceName][key]
if found && key != "type" {
// For legacy reasons the type value is in both the instances_devices and
// instances_devices_config tables. We use the one from the instances_devices.
return fmt.Errorf("Duplicate device row found for device %q key %q for instance ID %d", deviceName, key, instanceID)
}
instances[instanceID].Devices[deviceName][key] = value
return nil
})
}
// instanceProfiles loads the profile IDs to apply to an instance (in the application order) for all
// instanceIDs in a single query and then updates the instanceApplyProfileIDs and profilesByID maps.
func (c *ClusterTx) instanceProfilesFill(ctx context.Context, snapshotsMode bool, instanceArgs *map[int]InstanceArgs) error {
instances := *instanceArgs
// Get profiles referenced by instances.
// Don't use query parameters for the IN statement to workaround an issue in Dqlite (apparently)
// that means that >255 query parameters causes partial result sets. See #10705
// This is safe as the inputs are ints.
var q strings.Builder
if snapshotsMode {
q.WriteString(`
SELECT
instances_snapshots.id AS snapshot_id,
instances_profiles.profile_id AS profile_id
FROM instances_profiles
JOIN instances_snapshots ON instances_snapshots.instance_id = instances_profiles.instance_id
WHERE instances_snapshots.id IN (`)
} else {
q.WriteString(`
SELECT
instances_profiles.instance_id AS instance_id,
instances_profiles.profile_id AS profile_id
FROM instances_profiles
WHERE instances_profiles.instance_id IN (`)
}
q.Grow(len(instances) * 2) // We know the minimum length of the separators and integers.
first := true
for instanceID := range instances {
if !first {
q.WriteString(",")
}
first = false
q.WriteString(fmt.Sprintf("%d", instanceID))
}
q.WriteString(`)
ORDER BY instances_profiles.instance_id, instances_profiles.apply_order`)
profilesByID := make(map[int]*api.Profile)
instanceApplyProfileIDs := make(map[int64][]int, len(instances))
err := query.Scan(ctx, c.Tx(), q.String(), func(scan func(dest ...any) error) error {
var instanceID int64
var profileID int
err := scan(&instanceID, &profileID)
if err != nil {
return err
}
instanceApplyProfileIDs[instanceID] = append(instanceApplyProfileIDs[instanceID], profileID)
// Record that this profile is referenced by at least one instance in the list.
_, ok := profilesByID[profileID]
if !ok {
profilesByID[profileID] = nil
}
return nil
})
if err != nil {
return err
}
// Get all profiles.
profiles, err := cluster.GetProfiles(context.TODO(), c.Tx())
if err != nil {
return fmt.Errorf("Failed loading profiles: %w", err)
}
// Get all the profile configs.
profileConfigs, err := cluster.GetAllProfileConfigs(context.TODO(), c.Tx())
if err != nil {
return fmt.Errorf("Failed loading profile configs: %w", err)
}
// Get all the profile devices.
profileDevices, err := cluster.GetAllProfileDevices(context.TODO(), c.Tx())
if err != nil {
return fmt.Errorf("Failed loading profile devices: %w", err)
}
// Populate profilesByID map entry for referenced profiles.
// This way we only call ToAPI() on the profiles actually referenced by the instances in
// the list, which can reduce the number of queries run.
for _, profile := range profiles {
_, ok := profilesByID[profile.ID]
if !ok {
continue
}
profilesByID[profile.ID], err = profile.ToAPI(context.TODO(), c.tx, profileConfigs, profileDevices)
if err != nil {
return err
}
}
// Populate instance profiles list in apply order.
for instanceID := range instances {
inst := instances[instanceID]
inst.Profiles = make([]api.Profile, 0, len(inst.Profiles))
for _, applyProfileID := range instanceApplyProfileIDs[int64(inst.ID)] {
profile := profilesByID[applyProfileID]
if profile == nil {
return fmt.Errorf("Instance %d references profile %d that isn't loaded", inst.ID, applyProfileID)
}
inst.Profiles = append(inst.Profiles, *profile)
}
instances[instanceID] = inst
}
return nil
}
// InstancesToInstanceArgs converts many cluster.Instance to a map of InstanceArgs in as few queries as possible.
// Accepts fillProfiles argument that controls whether or not the returned InstanceArgs have their Profiles field
// populated. This avoids the need to load profile info from the database if it is already available in the
// caller's context and can be populated afterwards.
func (c *ClusterTx) InstancesToInstanceArgs(ctx context.Context, fillProfiles bool, instances ...cluster.Instance) (map[int]InstanceArgs, error) {
var instanceCount, snapshotCount uint
// Convert instances to partial InstanceArgs slice (Config, Devices and Profiles not populated yet).
instanceArgs := make(map[int]InstanceArgs, len(instances))
for _, instance := range instances {
if instance.Snapshot {
snapshotCount++
} else {
instanceCount++
}
args := InstanceArgs{
ID: instance.ID,
Project: instance.Project,
Name: instance.Name,
Node: instance.Node,
Type: instance.Type,
Snapshot: instance.Snapshot,
Architecture: instance.Architecture,
Ephemeral: instance.Ephemeral,
CreationDate: instance.CreationDate,
Stateful: instance.Stateful,
LastUsedDate: instance.LastUseDate.Time,
Description: instance.Description,
ExpiryDate: instance.ExpiryDate.Time,
}
instanceArgs[instance.ID] = args
}
if instanceCount > 0 && snapshotCount > 0 {
return nil, errors.New("Cannot use InstancesToInstanceArgs with mixed instance and instance snapshots")
}
// Populate instance config.
err := c.instanceConfigFill(ctx, snapshotCount > 0, &instanceArgs)
if err != nil {
return nil, fmt.Errorf("Failed loading instance config: %w", err)
}
// Populate instance devices.
err = c.instanceDevicesFill(ctx, snapshotCount > 0, &instanceArgs)
if err != nil {
return nil, fmt.Errorf("Failed loading instance devices: %w", err)
}
// Populate instance profiles if requested.
if fillProfiles {
err = c.instanceProfilesFill(ctx, snapshotCount > 0, &instanceArgs)
if err != nil {
return nil, fmt.Errorf("Failed loading instance profiles: %w", err)
}
}
return instanceArgs, nil
}
// UpdateInstanceNode changes the name of an instance and the cluster member hosting it.
// It's meant to be used when moving a non-running instance backed by remote storage from one cluster node to another.
func (c *ClusterTx) UpdateInstanceNode(ctx context.Context, project string, oldName string, newName string, newMemberName string, poolID int64, volumeType int) error {
// Update the name of the instance and its snapshots, and the member ID they are associated with.
instanceID, err := cluster.GetInstanceID(ctx, c.tx, project, oldName)
if err != nil {
return fmt.Errorf("Failed to get instance's ID: %w", err)
}
member, err := c.GetNodeByName(ctx, newMemberName)
if err != nil {
return fmt.Errorf("Failed to get new member %q info: %w", newMemberName, err)
}
stmt := "UPDATE instances SET node_id=?, name=? WHERE id=?"
result, err := c.tx.Exec(stmt, member.ID, newName, instanceID)
if err != nil {
return fmt.Errorf("Failed to update instance's name and member ID: %w", err)
}
n, err := result.RowsAffected()
if err != nil {
return fmt.Errorf("Failed to get rows affected by instance update: %w", err)
}
if n != 1 {
return fmt.Errorf("Unexpected number of updated rows in instances table: %d", n)
}
// No need to update storage_volumes if the name is identical
if newName == oldName {
return nil
}
stmt = "UPDATE storage_volumes SET name=? WHERE name=? AND storage_pool_id=? AND type=?"
result, err = c.tx.Exec(stmt, newName, oldName, poolID, volumeType)
if err != nil {
return fmt.Errorf("Failed to update instance's volume name: %w", err)
}
n, err = result.RowsAffected()
if err != nil {
return fmt.Errorf("Failed to get rows affected by instance volume update: %w", err)
}
if n != 1 {
return fmt.Errorf("Unexpected number of updated rows in volumes table: %d", n)
}
return nil
}
// GetLocalInstancesInProject retuurns all instances of the given type on the local member in the given project.
// If projectName is empty then all instances in all projects are returned.
func (c *ClusterTx) GetLocalInstancesInProject(ctx context.Context, filter cluster.InstanceFilter) ([]cluster.Instance, error) {
node, err := c.GetLocalNodeName(ctx)
if err != nil {
return nil, fmt.Errorf("Local node name: %w", err)
}
if node != "" {
filter.Node = &node
}
return cluster.GetInstances(ctx, c.tx, filter)
}
// CreateInstanceConfig inserts a new config for the container with the given ID.
func (c *ClusterTx) CreateInstanceConfig(ctx context.Context, id int, config map[string]string) error {
return CreateInstanceConfig(ctx, c.tx, id, config)
}
// UpdateInstanceConfig inserts/updates/deletes the provided keys.
func (c *ClusterTx) UpdateInstanceConfig(id int, values map[string]string) error {
insertSQL := "INSERT OR REPLACE INTO instances_config (instance_id, key, value) VALUES"
deleteSQL := "DELETE FROM instances_config WHERE key IN %s AND instance_id=?"
return c.configUpdate(id, values, insertSQL, deleteSQL)
}
func (c *ClusterTx) configUpdate(id int, values map[string]string, insertSQL, deleteSQL string) error {
changes := map[string]string{}
deletes := []string{}
// Figure out which key to set/unset
for key, value := range values {
if value == "" {
deletes = append(deletes, key)
continue
}
changes[key] = value
}
// Insert/update keys
if len(changes) > 0 {
query := insertSQL
exprs := []string{}
params := []any{}
for key, value := range changes {
exprs = append(exprs, "(?, ?, ?)")
params = append(params, []any{id, key, value}...)
}
query += strings.Join(exprs, ",")
_, err := c.tx.Exec(query, params...)
if err != nil {
return err
}
}
// Delete keys
if len(deletes) > 0 {
query := fmt.Sprintf(deleteSQL, query.Params(len(deletes)))
params := []any{}
for _, key := range deletes {
params = append(params, key)
}
params = append(params, id)
_, err := c.tx.Exec(query, params...)
if err != nil {
return err
}
}
return nil
}
// DeleteInstanceConfigKey removes the given key from the config of the instance
// with the given ID.
func (c *ClusterTx) DeleteInstanceConfigKey(ctx context.Context, id int64, key string) error {
q := "DELETE FROM instances_config WHERE key=? AND instance_id=?"
_, err := c.tx.ExecContext(ctx, q, key, id)
return err
}
// UpdateInstancePowerState sets the power state of the container with the given ID.
func (c *ClusterTx) UpdateInstancePowerState(id int, state string) error {
// Set the new value
str := "INSERT OR REPLACE INTO instances_config (instance_id, key, value) VALUES (?, 'volatile.last_state.power', ?)"
_, err := c.tx.Exec(str, id, state)
if err != nil {
return err
}
return nil
}
// UpdateInstanceLastUsedDate updates the last_use_date field of the instance
// with the given ID.
func (c *ClusterTx) UpdateInstanceLastUsedDate(id int, date time.Time) error {
str := `UPDATE instances SET last_use_date=? WHERE id=?`
_, err := c.tx.Exec(str, date, id)
if err != nil {
return err
}
return nil
}
// GetInstanceSnapshotsWithName returns all snapshots of a given instance in date created order, oldest first.
func (c *ClusterTx) GetInstanceSnapshotsWithName(ctx context.Context, project string, name string) ([]cluster.Instance, error) {
instance, err := cluster.GetInstance(ctx, c.tx, project, name)
if err != nil {
return nil, err
}
filter := cluster.InstanceSnapshotFilter{
Project: &project,
Instance: &name,
}
snapshots, err := cluster.GetInstanceSnapshots(ctx, c.tx, filter)
if err != nil {
return nil, err
}
sort.SliceStable(snapshots, func(i, j int) bool {
return snapshots[i].CreationDate.Before(snapshots[j].CreationDate)
})
instances := make([]cluster.Instance, len(snapshots))
for i, snapshot := range snapshots {
instances[i] = snapshot.ToInstance(instance.Name, instance.Node, instance.Type, instance.Architecture)
}
return instances, nil
}
// GetLocalInstanceWithVsockID returns all available instances with the given config key and value.
func (c *ClusterTx) GetLocalInstanceWithVsockID(ctx context.Context, vsockID int) (*cluster.Instance, error) {
q := `
SELECT instances.id, projects.name AS project, instances.name, nodes.name AS node, instances.type, instances.architecture, instances.ephemeral, instances.creation_date, instances.stateful, instances.last_use_date, coalesce(instances.description, ''), instances.expiry_date
FROM instances JOIN projects ON instances.project_id = projects.id JOIN nodes ON instances.node_id = nodes.id JOIN instances_config ON instances.id = instances_config.instance_id
WHERE instances.node_id = ? AND instances.type = ? AND instances_config.key = "volatile.vsock_id" AND instances_config.value = ? LIMIT 1
`
inargs := []any{c.nodeID, instancetype.VM, vsockID}
inst := cluster.Instance{}
err := c.tx.QueryRowContext(ctx, q, inargs...).Scan(&inst.ID, &inst.Project, &inst.Name, &inst.Node, &inst.Type, &inst.Architecture, &inst.Ephemeral, &inst.CreationDate, &inst.Stateful, &inst.LastUseDate, &inst.Description, &inst.ExpiryDate)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
return nil, api.StatusErrorf(http.StatusNotFound, "Instance not found")
}
return nil, err
}
return &inst, nil
}
// GetInstancePool returns the storage pool of a given instance (or snapshot).
func (c *ClusterTx) GetInstancePool(ctx context.Context, projectName string, instanceName string) (string, error) {
// Strip snapshot name if supplied in instanceName, and lookup the storage pool of the parent instance
// as that must always be the same as the snapshot's storage pool.
instanceName, _, _ = api.GetParentAndSnapshotName(instanceName)
remoteDrivers := StorageRemoteDriverNames()
// Get container storage volume. Since container names are globally
// unique, and their storage volumes carry the same name, their storage
// volumes are unique too.
poolName := ""
query := fmt.Sprintf(`
SELECT storage_pools.name FROM storage_pools
JOIN storage_volumes_all ON storage_pools.id=storage_volumes_all.storage_pool_id
JOIN instances ON instances.name=storage_volumes_all.name
JOIN projects ON projects.id=instances.project_id
WHERE projects.name=?
AND storage_volumes_all.name=?
AND storage_volumes_all.type IN (?,?)
AND storage_volumes_all.project_id = instances.project_id
AND (storage_volumes_all.node_id=? OR storage_volumes_all.node_id IS NULL AND storage_pools.driver IN %s)`, query.Params(len(remoteDrivers)))
inargs := []any{projectName, instanceName, StoragePoolVolumeTypeContainer, StoragePoolVolumeTypeVM, c.nodeID}
outargs := []any{&poolName}
for _, driver := range remoteDrivers {
inargs = append(inargs, driver)
}
err := c.tx.QueryRowContext(ctx, query, inargs...).Scan(outargs...)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
return "", api.StatusErrorf(http.StatusNotFound, "Instance storage pool not found")
}
return "", err
}
return poolName, nil
}
// DeleteInstance removes the instance with the given name from the database.
func (c *ClusterTx) DeleteInstance(ctx context.Context, project, name string) error {
if strings.Contains(name, internalInstance.SnapshotDelimiter) {
parts := strings.SplitN(name, internalInstance.SnapshotDelimiter, 2)
return cluster.DeleteInstanceSnapshot(ctx, c.tx, project, parts[0], parts[1])
}
return cluster.DeleteInstance(ctx, c.tx, project, name)
}
// GetInstanceProjectAndName returns the project and the name of the instance
// with the given ID.
func (c *ClusterTx) GetInstanceProjectAndName(ctx context.Context, id int) (string, string, error) {
var project string
var name string
q := `
SELECT projects.name, instances.name
FROM instances
JOIN projects ON projects.id = instances.project_id
WHERE instances.id=?
`
err := c.tx.QueryRowContext(ctx, q, id).Scan(&project, &name)
if errors.Is(err, sql.ErrNoRows) {
return "", "", api.StatusErrorf(http.StatusNotFound, "Instance not found")
}
return project, name, err
}
// GetInstanceID returns the ID of the instance with the given name.
func (c *ClusterTx) GetInstanceID(ctx context.Context, project, name string) (int, error) {
id, err := cluster.GetInstanceID(ctx, c.tx, project, name)
return int(id), err
}
// GetInstanceConfig returns the value of the given key in the configuration
// of the instance with the given ID.
func (c *ClusterTx) GetInstanceConfig(ctx context.Context, id int, key string) (string, error) {
q := "SELECT value FROM instances_config WHERE instance_id=? AND key=?"
value := ""
err := c.tx.QueryRowContext(ctx, q, id, key).Scan(&value)
if errors.Is(err, sql.ErrNoRows) {
return "", api.StatusErrorf(http.StatusNotFound, "Instance config not found")
}
return value, err
}
// UpdateInstanceStatefulFlag toggles the stateful flag of the instance with
// the given ID.
func (c *ClusterTx) UpdateInstanceStatefulFlag(ctx context.Context, id int, stateful bool) error {
statefulInt := 0
if stateful {
statefulInt = 1
}
_, err := c.tx.ExecContext(ctx, "UPDATE instances SET stateful=? WHERE id=?", statefulInt, id)
if err != nil {
return fmt.Errorf("Failed updating instance stateful flag: %w", err)
}
return nil
}
// UpdateInstanceSnapshotCreationDate updates the creation_date field of the instance snapshot with ID.
func (c *ClusterTx) UpdateInstanceSnapshotCreationDate(ctx context.Context, instanceID int, date time.Time) error {
stmt := `UPDATE instances_snapshots SET creation_date=? WHERE id=?`
_, err := c.tx.ExecContext(ctx, stmt, date, instanceID)
if err != nil {
return fmt.Errorf("Failed updating instance snapshot creation date: %w", err)
}
return nil
}
// GetInstanceSnapshotsNames returns the names of all snapshots of the instance
// in the given project with the given name.
// Returns snapshots slice ordered by when they were created, oldest first.
func (c *ClusterTx) GetInstanceSnapshotsNames(ctx context.Context, project, name string) ([]string, error) {
result := []string{}
q := `
SELECT instances_snapshots.name
FROM instances_snapshots
JOIN instances ON instances.id = instances_snapshots.instance_id
JOIN projects ON projects.id = instances.project_id
WHERE projects.name=? AND instances.name=?
ORDER BY instances_snapshots.creation_date, instances_snapshots.id
`
inargs := []any{project, name}
outfmt := []any{name}
dbResults, err := queryScan(ctx, c, q, inargs, outfmt)
if err != nil {
return result, err
}
for _, r := range dbResults {
result = append(result, name+internalInstance.SnapshotDelimiter+r[0].(string))
}
return result, nil
}
// GetNextInstanceSnapshotIndex returns the index that the next snapshot of the
// instance with the given name and pattern should have.
func (c *ClusterTx) GetNextInstanceSnapshotIndex(ctx context.Context, project string, name string, pattern string) int {
q := `
SELECT instances_snapshots.name
FROM instances_snapshots
JOIN instances ON instances.id = instances_snapshots.instance_id
JOIN projects ON projects.id = instances.project_id
WHERE projects.name=? AND instances.name=?
ORDER BY instances_snapshots.creation_date, instances_snapshots.id
`
var numstr string
inargs := []any{project, name}
outfmt := []any{numstr}
results, err := queryScan(ctx, c, q, inargs, outfmt)
if err != nil {
return 0
}
max := 0
for _, r := range results {
snapOnlyName := r[0].(string)
fields := strings.SplitN(pattern, "%d", 2)
var num int
count, err := fmt.Sscanf(snapOnlyName, fmt.Sprintf("%s%%d%s", fields[0], fields[1]), &num)
if err != nil || count != 1 {
continue
}
if num >= max {
max = num + 1
}
}
return max
}
// DeleteReadyStateFromLocalInstances deletes the volatile.last_state.ready config key
// from all local instances.
func (c *ClusterTx) DeleteReadyStateFromLocalInstances(ctx context.Context) error {
nodeID := c.GetNodeID()
_, err := c.tx.ExecContext(ctx, `
DELETE FROM instances_config
WHERE instances_config.id IN (
SELECT instances_config.id FROM instances_config
JOIN instances ON instances_config.instance_id=instances.id
JOIN nodes ON instances.node_id=nodes.id
WHERE key="volatile.last_state.ready" AND nodes.id=?
)`, nodeID)
if err != nil {
return fmt.Errorf("Failed deleting ready state from local instances: %w", err)
}
return nil
}
// CreateInstanceConfig inserts a new config for the instance with the given ID.
func CreateInstanceConfig(ctx context.Context, tx *sql.Tx, id int, config map[string]string) error {
sql := "INSERT INTO instances_config (instance_id, key, value) values (?, ?, ?)"
for k, v := range config {
if v == "" {
continue
}
_, err := tx.ExecContext(ctx, sql, id, k, v)
if err != nil {
return fmt.Errorf("Error adding configuration item %q = %q to instance %d: %w", k, v, id, err)
}
}
return nil
}
// UpdateInstance updates the description, architecture and ephemeral flag of
// the instance with the given ID.
func UpdateInstance(tx *sql.Tx, id int, description string, architecture int, ephemeral bool,
expiryDate time.Time,
) error {
str := "UPDATE instances SET description=?, architecture=?, ephemeral=?, expiry_date=? WHERE id=?"
ephemeralInt := 0
if ephemeral {
ephemeralInt = 1
}
var err error
if expiryDate.IsZero() {
_, err = tx.Exec(str, description, architecture, ephemeralInt, "", id)
} else {
_, err = tx.Exec(str, description, architecture, ephemeralInt, expiryDate, id)
}
if err != nil {
return err
}
return nil
}
// GetInstancesCount returns the number of instances with possible filtering for project or location.
// It also supports looking for instances currently being created.
func (c *ClusterTx) GetInstancesCount(ctx context.Context, projectName string, locationName string, includePending bool) (int, error) {
var err error
// Load the project ID if needed.
projectID := int64(-1)
if projectName != "" {
projectID, err = cluster.GetProjectID(ctx, c.Tx(), projectName)
if err != nil {
return -1, err
}
}
// Load the cluster member ID if needed.
nodeID := int64(-1)
if locationName != "" {
nodeID, err = cluster.GetNodeID(ctx, c.Tx(), locationName)
if err != nil {
return -1, err
}
}
// Count the instances.
var count int
if projectID != -1 && nodeID != -1 {
// Count for specified project and cluster member.
created, err := query.Count(ctx, c.tx, "instances", "project_id=? AND node_id=?", projectID, nodeID)
if err != nil {
return -1, fmt.Errorf("Failed to get instances count: %w", err)
}
count += created
if includePending {
pending, err := query.Count(ctx, c.tx, "operations", "project_id=? AND node_id=? AND type=?", projectID, nodeID, operationtype.InstanceCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get pending instances count: %w", err)
}
count += pending
}
} else if projectID != -1 {
// Count for specified project.
created, err := query.Count(ctx, c.tx, "instances", "project_id=?", projectID)
if err != nil {
return -1, fmt.Errorf("Failed to get instances count: %w", err)
}
count += created
if includePending {
pending, err := query.Count(ctx, c.tx, "operations", "project_id=? AND type=?", projectID, operationtype.InstanceCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get pending instances count: %w", err)
}
count += pending
}
} else if nodeID != -1 {
// Count for specified cluster member.
created, err := query.Count(ctx, c.tx, "instances", "node_id=?", nodeID)
if err != nil {
return -1, fmt.Errorf("Failed to get instances count: %w", err)
}
count += created
if includePending {
pending, err := query.Count(ctx, c.tx, "operations", "node_id=? AND type=?", nodeID, operationtype.InstanceCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get pending instances count: %w", err)
}
count += pending
}
} else {
// Count everything.
created, err := query.Count(ctx, c.tx, "instances", "")
if err != nil {
return -1, fmt.Errorf("Failed to get instances count: %w", err)
}
count += created
if includePending {
pending, err := query.Count(ctx, c.tx, "operations", "type=?", operationtype.InstanceCreate)
if err != nil {
return -1, fmt.Errorf("Failed to get pending instances count: %w", err)
}
count += pending
}
}
return count, nil
}
|