hcloud-upload-image/snapshot.go

286 lines
8.8 KiB
Go
Raw Normal View History

2024-04-29 21:00:04 +02:00
package hcloud_upload_image
import (
"context"
"fmt"
"time"
"github.com/hetznercloud/hcloud-go/v2/hcloud"
"golang.org/x/crypto/ssh"
2024-05-02 21:18:20 +02:00
"github.com/apricote/hcloud-upload-image/contextlogger"
"github.com/apricote/hcloud-upload-image/control"
"github.com/apricote/hcloud-upload-image/randomid"
"github.com/apricote/hcloud-upload-image/sshkey"
"github.com/apricote/hcloud-upload-image/sshsession"
2024-04-29 21:00:04 +02:00
)
const (
CreatedByLabel = "apricote.de/created-by"
CreatedByValue = "hcloud-upload-image"
resourcePrefix = "hcloud-upload-image-"
)
var (
DefaultLabels = map[string]string{
CreatedByLabel: CreatedByValue,
}
serverTypePerArchitecture = map[hcloud.Architecture]*hcloud.ServerType{
hcloud.ArchitectureX86: {Name: "cx11"},
hcloud.ArchitectureARM: {Name: "cax11"},
}
defaultImage = &hcloud.Image{Name: "ubuntu-22.04"}
defaultLocation = &hcloud.Location{Name: "fsn1"}
defaultRescueType = hcloud.ServerRescueTypeLinux64
defaultSSHDialTimeout = 1 * time.Minute
)
func New(client *hcloud.Client) SnapshotClient {
return &snapshotClient{
client: client,
}
}
type snapshotClient struct {
client *hcloud.Client
}
func (s snapshotClient) Upload(ctx context.Context, options UploadOptions) (*hcloud.Image, error) {
2024-04-30 23:48:59 +02:00
logger := contextlogger.From(ctx).With(
"library", "hcloud-upload-image",
"method", "upload",
)
2024-04-29 21:00:04 +02:00
id, err := randomid.Generate()
if err != nil {
return nil, err
}
2024-04-30 23:48:59 +02:00
logger = logger.With("run-id", id)
2024-04-29 21:00:04 +02:00
// For simplicity, we use the name random name for SSH Key + Server
resourceName := resourcePrefix + id
// 1. Create SSH Key
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 1: Generating SSH Key")
2024-04-29 21:00:04 +02:00
publicKey, privateKey, err := sshkey.GenerateKeyPair()
if err != nil {
return nil, fmt.Errorf("failed to generate temporary ssh key pair: %w", err)
}
key, _, err := s.client.SSHKey.Create(ctx, hcloud.SSHKeyCreateOpts{
Name: resourceName,
PublicKey: string(publicKey),
Labels: fullLabels(options.Labels),
})
if err != nil {
return nil, fmt.Errorf("failed to submit temporary ssh key to API: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "Uploaded ssh key", "ssh-key-id", key.ID)
2024-04-29 21:00:04 +02:00
defer func() {
// Cleanup SSH Key
if options.DebugSkipResourceCleanup {
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "Cleanup: Skipping cleanup of temporary ssh key")
2024-04-29 21:00:04 +02:00
return
}
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "Cleanup: Deleting temporary ssh key")
2024-04-29 21:00:04 +02:00
_, err := s.client.SSHKey.Delete(ctx, key)
if err != nil {
2024-04-30 23:48:59 +02:00
logger.WarnContext(ctx, "Cleanup: ssh key could not be deleted", "error", err)
2024-04-29 21:00:04 +02:00
// TODO
}
}()
// 2. Create Server
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 2: Creating Server")
2024-04-29 21:00:04 +02:00
serverType, ok := serverTypePerArchitecture[options.Architecture]
if !ok {
return nil, fmt.Errorf("unknown architecture %q, valid options: %q, %q", options.Architecture, hcloud.ArchitectureX86, hcloud.ArchitectureARM)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "creating server with config",
"image", defaultImage.Name,
"location", defaultLocation.Name,
"serverType", serverType.Name,
)
2024-04-29 21:00:04 +02:00
serverCreateResult, _, err := s.client.Server.Create(ctx, hcloud.ServerCreateOpts{
Name: resourceName,
ServerType: serverType,
// Not used, but without this the user receives an email with a password for every created server
SSHKeys: []*hcloud.SSHKey{key},
// We need to enable rescue system first
StartAfterCreate: hcloud.Ptr(false),
// Image will never be booted, we only boot into rescue system
Image: defaultImage,
Location: defaultLocation,
Labels: fullLabels(options.Labels),
})
if err != nil {
return nil, fmt.Errorf("creating the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger = logger.With("server", serverCreateResult.Server.ID)
logger.DebugContext(ctx, "Created Server")
2024-04-29 21:00:04 +02:00
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "waiting on actions")
err = s.client.Action.WaitFor(ctx, append(serverCreateResult.NextActions, serverCreateResult.Action)...)
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("creating the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "actions finished")
2024-04-29 21:00:04 +02:00
server := serverCreateResult.Server
defer func() {
// Cleanup Server
if options.DebugSkipResourceCleanup {
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "Cleanup: Skipping cleanup of temporary server")
2024-04-29 21:00:04 +02:00
return
}
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "Cleanup: Deleting temporary server")
2024-04-29 21:00:04 +02:00
_, _, err := s.client.Server.DeleteWithResult(ctx, server)
if err != nil {
2024-04-30 23:48:59 +02:00
logger.WarnContext(ctx, "Cleanup: server could not be deleted", "error", err)
2024-04-29 21:00:04 +02:00
}
}()
// 3. Activate Rescue System
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 4: Activating Rescue System")
2024-04-29 21:00:04 +02:00
enableRescueResult, _, err := s.client.Server.EnableRescue(ctx, server, hcloud.ServerEnableRescueOpts{
Type: defaultRescueType,
SSHKeys: []*hcloud.SSHKey{key},
})
if err != nil {
return nil, fmt.Errorf("enabling the rescue system on the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "rescue system requested, waiting on action")
err = s.client.Action.WaitFor(ctx, enableRescueResult.Action)
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("enabling the rescue system on the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "action finished, rescue system enabled")
2024-04-29 21:00:04 +02:00
// 4. Boot Server
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 4: Booting Server")
2024-04-29 21:00:04 +02:00
powerOnAction, _, err := s.client.Server.Poweron(ctx, server)
if err != nil {
return nil, fmt.Errorf("starting the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "boot requested, waiting on action")
err = s.client.Action.WaitFor(ctx, powerOnAction)
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("starting the temporary server failed: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "action finished, server is booting")
2024-04-29 21:00:04 +02:00
// 5. Open SSH Session
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 5: Opening SSH Connection")
2024-04-29 21:00:04 +02:00
signer, err := ssh.ParsePrivateKey(privateKey)
if err != nil {
return nil, fmt.Errorf("parsing the automatically generated temporary private key failed: %w", err)
}
sshClientConfig := &ssh.ClientConfig{
User: "root",
Auth: []ssh.AuthMethod{
ssh.PublicKeys(signer),
},
// There is no way to get the host key of the rescue system beforehand
HostKeyCallback: ssh.InsecureIgnoreHostKey(),
Timeout: defaultSSHDialTimeout,
}
// the server needs some time until its properly started and ssh is available
var sshClient *ssh.Client
2024-04-30 23:48:59 +02:00
err = control.Retry(
contextlogger.New(ctx, logger.With("operation", "ssh")),
10,
func() error {
var err error
logger.DebugContext(ctx, "trying to connect to server", "ip", server.PublicNet.IPv4.IP)
sshClient, err = ssh.Dial("tcp", server.PublicNet.IPv4.IP.String()+":ssh", sshClientConfig)
return err
},
)
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("failed to ssh into temporary server: %w", err)
}
defer sshClient.Close()
// 6. SSH On Server: Download Image, Decompress, Write to Root Disk
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 6: Downloading image and writing to disk")
2024-04-29 21:00:04 +02:00
decompressionCommand := ""
if options.ImageCompression != CompressionNone {
switch options.ImageCompression {
case CompressionBZ2:
decompressionCommand += "| bzip2 -cd"
default:
return nil, fmt.Errorf("unknown compression: %q", options.ImageCompression)
}
}
2024-04-30 23:48:59 +02:00
fullCmd := fmt.Sprintf("wget --no-verbose -O - %q %s | dd of=/dev/sda bs=4M && sync", options.ImageURL.String(), decompressionCommand)
logger.DebugContext(ctx, "running download, decompress and write to disk command", "cmd", fullCmd)
output, err := sshsession.Run(sshClient, fullCmd)
logger.InfoContext(ctx, "# Step 6: Finished writing image to disk")
logger.DebugContext(ctx, string(output))
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("failed to download and write the image: %w", err)
}
// 7. SSH On Server: Shutdown
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 7: Shutting down server")
2024-04-29 21:00:04 +02:00
_, err = sshsession.Run(sshClient, "shutdown now")
if err != nil {
// TODO Verify if shutdown error, otherwise return
2024-04-30 23:48:59 +02:00
logger.WarnContext(ctx, "shutdown returned error", "err", err)
2024-04-29 21:00:04 +02:00
}
// 8. Create Image from Server
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Step 8: Creating Image")
2024-04-29 21:00:04 +02:00
createImageResult, _, err := s.client.Server.CreateImage(ctx, server, &hcloud.ServerCreateImageOpts{
Type: hcloud.ImageTypeSnapshot,
Description: options.Description,
Labels: fullLabels(options.Labels),
})
if err != nil {
return nil, fmt.Errorf("failed to create snapshot: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "image creation requested, waiting on action")
err = s.client.Action.WaitFor(ctx, createImageResult.Action)
2024-04-29 21:00:04 +02:00
if err != nil {
return nil, fmt.Errorf("failed to create snapshot: %w", err)
}
2024-04-30 23:48:59 +02:00
logger.DebugContext(ctx, "action finished, image was created")
2024-04-29 21:00:04 +02:00
image := createImageResult.Image
2024-04-30 23:48:59 +02:00
logger.InfoContext(ctx, "# Image was created", "image", image.ID)
2024-04-29 21:00:04 +02:00
// Resource cleanup is happening in `defer`
return image, nil
}
func fullLabels(userLabels map[string]string) map[string]string {
if userLabels == nil {
userLabels = make(map[string]string, len(DefaultLabels))
}
for k, v := range DefaultLabels {
userLabels[k] = v
}
return userLabels
}