This change adds a new "agent mode" to GARM. The agent enables GARM to set up a persistent websocket connection between the garm server and the runners it spawns. The goal is to be able to easier keep track of state, even without subsequent webhooks from the forge. The Agent will report via websockets when the runner is actually online, when it started a job and when it finished a job. Additionally, the agent allows us to enable optional remote shell between the user and any runner that is spun up using agent mode. The remote shell is multiplexed over the same persistent websocket connection the agent sets up with the server (the agent never listens on a port). Enablement has also been done in the web UI for this functionality. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
549 lines
16 KiB
Go
549 lines
16 KiB
Go
// Copyright 2022 Cloudbase Solutions SRL
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
// not use this file except in compliance with the License. You may obtain
|
|
// a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
// License for the specific language governing permissions and limitations
|
|
// under the License.
|
|
|
|
package sql
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"log/slog"
|
|
"math"
|
|
"slices"
|
|
|
|
"github.com/google/uuid"
|
|
"gorm.io/datatypes"
|
|
"gorm.io/gorm"
|
|
"gorm.io/gorm/clause"
|
|
|
|
runnerErrors "github.com/cloudbase/garm-provider-common/errors"
|
|
commonParams "github.com/cloudbase/garm-provider-common/params"
|
|
"github.com/cloudbase/garm/database/common"
|
|
"github.com/cloudbase/garm/params"
|
|
)
|
|
|
|
func (s *sqlDatabase) CreateInstance(ctx context.Context, poolID string, param params.CreateInstanceParams) (instance params.Instance, err error) {
|
|
defer func() {
|
|
if err == nil {
|
|
s.sendNotify(common.InstanceEntityType, common.CreateOperation, instance)
|
|
}
|
|
}()
|
|
|
|
err = s.conn.Transaction(func(tx *gorm.DB) error {
|
|
pool, err := s.getPoolByID(tx, poolID)
|
|
if err != nil {
|
|
return fmt.Errorf("error fetching pool: %w", err)
|
|
}
|
|
var cnt int64
|
|
q := s.conn.Model(&Instance{}).Where("pool_id = ?", pool.ID).Count(&cnt)
|
|
if q.Error != nil {
|
|
return fmt.Errorf("error fetching instance count: %w", q.Error)
|
|
}
|
|
var maxRunners int64
|
|
if pool.MaxRunners > math.MaxInt64 {
|
|
maxRunners = math.MaxInt64
|
|
} else {
|
|
maxRunners = int64(pool.MaxRunners)
|
|
}
|
|
if cnt >= maxRunners {
|
|
return runnerErrors.NewConflictError("max runners reached for pool %s", pool.ID)
|
|
}
|
|
|
|
var labels datatypes.JSON
|
|
if len(param.AditionalLabels) > 0 {
|
|
labels, err = json.Marshal(param.AditionalLabels)
|
|
if err != nil {
|
|
return fmt.Errorf("error marshalling labels: %w", err)
|
|
}
|
|
}
|
|
|
|
var secret []byte
|
|
if len(param.JitConfiguration) > 0 {
|
|
secret, err = s.marshalAndSeal(param.JitConfiguration)
|
|
if err != nil {
|
|
return fmt.Errorf("error marshalling jit config: %w", err)
|
|
}
|
|
}
|
|
|
|
newInstance := Instance{
|
|
Pool: pool,
|
|
Name: param.Name,
|
|
Status: param.Status,
|
|
RunnerStatus: param.RunnerStatus,
|
|
OSType: param.OSType,
|
|
OSArch: param.OSArch,
|
|
CallbackURL: param.CallbackURL,
|
|
MetadataURL: param.MetadataURL,
|
|
GitHubRunnerGroup: param.GitHubRunnerGroup,
|
|
JitConfiguration: secret,
|
|
AditionalLabels: labels,
|
|
AgentID: param.AgentID,
|
|
}
|
|
q = tx.Create(&newInstance)
|
|
if q.Error != nil {
|
|
return fmt.Errorf("error creating instance: %w", q.Error)
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return params.Instance{}, fmt.Errorf("error creating instance: %w", err)
|
|
}
|
|
|
|
return s.GetInstance(ctx, param.Name)
|
|
}
|
|
|
|
func (s *sqlDatabase) getPoolInstanceByName(poolID string, instanceName string) (Instance, error) {
|
|
pool, err := s.getPoolByID(s.conn, poolID)
|
|
if err != nil {
|
|
return Instance{}, fmt.Errorf("error fetching pool: %w", err)
|
|
}
|
|
|
|
var instance Instance
|
|
q := s.conn.Model(&Instance{}).
|
|
Preload(clause.Associations).
|
|
Where("name = ? and pool_id = ?", instanceName, pool.ID).
|
|
First(&instance)
|
|
if q.Error != nil {
|
|
if errors.Is(q.Error, gorm.ErrRecordNotFound) {
|
|
return Instance{}, fmt.Errorf("error fetching pool instance by name: %w", runnerErrors.ErrNotFound)
|
|
}
|
|
return Instance{}, fmt.Errorf("error fetching pool instance by name: %w", q.Error)
|
|
}
|
|
|
|
instance.Pool = pool
|
|
return instance, nil
|
|
}
|
|
|
|
func (s *sqlDatabase) getInstance(_ context.Context, tx *gorm.DB, instanceNameOrID string, preload ...string) (Instance, error) {
|
|
var instance Instance
|
|
|
|
var whereArg any = instanceNameOrID
|
|
whereClause := "name = ?"
|
|
id, err := uuid.Parse(instanceNameOrID)
|
|
if err == nil {
|
|
whereArg = id
|
|
whereClause = "id = ?"
|
|
}
|
|
q := tx
|
|
|
|
if len(preload) > 0 {
|
|
for _, item := range preload {
|
|
q = q.Preload(item)
|
|
}
|
|
}
|
|
|
|
q = q.Model(&Instance{}).
|
|
Preload(clause.Associations).
|
|
Where(whereClause, whereArg).
|
|
First(&instance)
|
|
if q.Error != nil {
|
|
if errors.Is(q.Error, gorm.ErrRecordNotFound) {
|
|
return Instance{}, fmt.Errorf("error fetching instance by name: %w", runnerErrors.ErrNotFound)
|
|
}
|
|
return Instance{}, fmt.Errorf("error fetching instance by name: %w", q.Error)
|
|
}
|
|
return instance, nil
|
|
}
|
|
|
|
func (s *sqlDatabase) GetInstance(ctx context.Context, instanceName string) (params.Instance, error) {
|
|
instance, err := s.getInstance(ctx, s.conn, instanceName, "StatusMessages", "Pool", "ScaleSet")
|
|
if err != nil {
|
|
return params.Instance{}, fmt.Errorf("error fetching instance: %w", err)
|
|
}
|
|
|
|
return s.sqlToParamsInstance(instance)
|
|
}
|
|
|
|
func (s *sqlDatabase) DeleteInstance(_ context.Context, poolID string, instanceName string) (err error) {
|
|
instance, err := s.getPoolInstanceByName(poolID, instanceName)
|
|
if err != nil {
|
|
if errors.Is(err, runnerErrors.ErrNotFound) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error deleting instance: %w", err)
|
|
}
|
|
|
|
defer func() {
|
|
if err == nil {
|
|
var providerID string
|
|
if instance.ProviderID != nil {
|
|
providerID = *instance.ProviderID
|
|
}
|
|
instanceNotif := params.Instance{
|
|
ID: instance.ID.String(),
|
|
Name: instance.Name,
|
|
ProviderID: providerID,
|
|
AgentID: instance.AgentID,
|
|
}
|
|
switch {
|
|
case instance.PoolID != nil:
|
|
instanceNotif.PoolID = instance.PoolID.String()
|
|
case instance.ScaleSetFkID != nil:
|
|
instanceNotif.ScaleSetID = *instance.ScaleSetFkID
|
|
}
|
|
|
|
if notifyErr := s.sendNotify(common.InstanceEntityType, common.DeleteOperation, instanceNotif); notifyErr != nil {
|
|
slog.With(slog.Any("error", notifyErr)).Error("failed to send notify")
|
|
}
|
|
}
|
|
}()
|
|
|
|
if q := s.conn.Unscoped().Delete(&instance); q.Error != nil {
|
|
if errors.Is(q.Error, gorm.ErrRecordNotFound) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error deleting instance: %w", q.Error)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *sqlDatabase) DeleteInstanceByName(ctx context.Context, instanceName string) error {
|
|
instance, err := s.getInstance(ctx, s.conn, instanceName, "Pool", "ScaleSet")
|
|
if err != nil {
|
|
if errors.Is(err, runnerErrors.ErrNotFound) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error deleting instance: %w", err)
|
|
}
|
|
|
|
defer func() {
|
|
if err == nil {
|
|
var providerID string
|
|
if instance.ProviderID != nil {
|
|
providerID = *instance.ProviderID
|
|
}
|
|
payload := params.Instance{
|
|
ID: instance.ID.String(),
|
|
Name: instance.Name,
|
|
ProviderID: providerID,
|
|
AgentID: instance.AgentID,
|
|
}
|
|
if instance.PoolID != nil {
|
|
payload.PoolID = instance.PoolID.String()
|
|
}
|
|
if instance.ScaleSetFkID != nil {
|
|
payload.ScaleSetID = *instance.ScaleSetFkID
|
|
}
|
|
if notifyErr := s.sendNotify(common.InstanceEntityType, common.DeleteOperation, payload); notifyErr != nil {
|
|
slog.With(slog.Any("error", notifyErr)).Error("failed to send notify")
|
|
}
|
|
}
|
|
}()
|
|
|
|
if q := s.conn.Unscoped().Delete(&instance); q.Error != nil {
|
|
if errors.Is(q.Error, gorm.ErrRecordNotFound) {
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error deleting instance: %w", q.Error)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *sqlDatabase) AddInstanceEvent(ctx context.Context, instanceName string, event params.EventType, eventLevel params.EventLevel, statusMessage string) error {
|
|
instance, err := s.getInstance(ctx, s.conn, instanceName)
|
|
if err != nil {
|
|
return fmt.Errorf("error updating instance: %w", err)
|
|
}
|
|
|
|
msg := InstanceStatusUpdate{
|
|
Message: statusMessage,
|
|
EventType: event,
|
|
EventLevel: eventLevel,
|
|
}
|
|
|
|
// Use Create instead of Association.Append to avoid loading all existing messages
|
|
msg.InstanceID = instance.ID
|
|
if err := s.conn.Create(&msg).Error; err != nil {
|
|
return fmt.Errorf("error adding status message: %w", err)
|
|
}
|
|
|
|
// Keep only the latest 30 status messages to prevent database bloat
|
|
const maxStatusMessages = 30
|
|
var count int64
|
|
if err := s.conn.Model(&InstanceStatusUpdate{}).Where("instance_id = ?", instance.ID).Count(&count).Error; err != nil {
|
|
return fmt.Errorf("error counting status messages: %w", err)
|
|
}
|
|
|
|
if count > maxStatusMessages {
|
|
// Get the ID of the 30th most recent message
|
|
var cutoffMsg InstanceStatusUpdate
|
|
if err := s.conn.Model(&InstanceStatusUpdate{}).
|
|
Select("id").
|
|
Where("instance_id = ?", instance.ID).
|
|
Order("id desc").
|
|
Offset(maxStatusMessages - 1).
|
|
Limit(1).
|
|
First(&cutoffMsg).Error; err != nil {
|
|
return fmt.Errorf("error finding cutoff message: %w", err)
|
|
}
|
|
|
|
// Delete all messages older than the cutoff
|
|
if err := s.conn.Where("instance_id = ? and id < ?", instance.ID, cutoffMsg.ID).Unscoped().Delete(&InstanceStatusUpdate{}).Error; err != nil {
|
|
return fmt.Errorf("error deleting old status messages: %w", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// validateAgentID checks agent ID consistency
|
|
func (s *sqlDatabase) validateAgentID(currentAgentID, newAgentID int64) error {
|
|
if currentAgentID != 0 && newAgentID != 0 && currentAgentID != newAgentID {
|
|
return runnerErrors.NewBadRequestError("agent ID mismatch")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// validateRunnerStatusTransition validates runner status state transition
|
|
func (s *sqlDatabase) validateRunnerStatusTransition(current, newStatus params.RunnerStatus) error {
|
|
if newStatus == "" || newStatus == current {
|
|
return nil
|
|
}
|
|
|
|
allowedTransitions, ok := params.RunnerStatusTransitions[current]
|
|
if !ok {
|
|
return fmt.Errorf("Instance is in invalid state: %s", current)
|
|
}
|
|
|
|
if !slices.Contains(allowedTransitions, newStatus) {
|
|
return runnerErrors.NewBadRequestError("invalid runner status transition from %s to %s", current, newStatus)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// validateInstanceStatusTransition validates instance status state transition
|
|
func (s *sqlDatabase) validateInstanceStatusTransition(current, newStatus commonParams.InstanceStatus) error {
|
|
if newStatus == "" || newStatus == current {
|
|
return nil
|
|
}
|
|
|
|
allowedTransitions, ok := params.InstanceStatusTransitions[current]
|
|
if !ok {
|
|
// we need a better way to handle this. Because if we err out here, we cannot recover
|
|
// unless the user manually updates the instance.
|
|
return fmt.Errorf("Instance is in invalid state: %s", current)
|
|
}
|
|
|
|
if !slices.Contains(allowedTransitions, newStatus) {
|
|
return runnerErrors.NewBadRequestError("invalid instance status transition from %s to %s", current, newStatus)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// applyInstanceUpdates applies parameter updates to the instance
|
|
func (s *sqlDatabase) applyInstanceUpdates(instance *Instance, param params.UpdateInstanceParams) error {
|
|
// Simple field updates
|
|
if param.AgentID != 0 {
|
|
instance.AgentID = param.AgentID
|
|
}
|
|
if param.ProviderID != "" {
|
|
instance.ProviderID = ¶m.ProviderID
|
|
}
|
|
if param.OSName != "" {
|
|
instance.OSName = param.OSName
|
|
}
|
|
if param.OSVersion != "" {
|
|
instance.OSVersion = param.OSVersion
|
|
}
|
|
if string(param.RunnerStatus) != "" {
|
|
instance.RunnerStatus = param.RunnerStatus
|
|
}
|
|
if param.Heartbeat != nil {
|
|
instance.Heartbeat = *param.Heartbeat
|
|
}
|
|
if param.Status != "" {
|
|
instance.Status = param.Status
|
|
}
|
|
if param.CreateAttempt != 0 {
|
|
instance.CreateAttempt = param.CreateAttempt
|
|
}
|
|
if param.TokenFetched != nil {
|
|
instance.TokenFetched = *param.TokenFetched
|
|
}
|
|
|
|
// Complex field updates
|
|
if param.Capabilities != nil {
|
|
asJs, err := json.Marshal(*param.Capabilities)
|
|
if err != nil {
|
|
return runnerErrors.NewBadRequestError("invalid capabilities: %s", err)
|
|
}
|
|
instance.Capabilities = asJs
|
|
}
|
|
|
|
if param.JitConfiguration != nil {
|
|
secret, err := s.marshalAndSeal(param.JitConfiguration)
|
|
if err != nil {
|
|
return fmt.Errorf("error marshalling jit config: %w", err)
|
|
}
|
|
instance.JitConfiguration = secret
|
|
}
|
|
|
|
instance.ProviderFault = param.ProviderFault
|
|
return nil
|
|
}
|
|
|
|
func (s *sqlDatabase) UpdateInstance(ctx context.Context, instanceName string, param params.UpdateInstanceParams) (params.Instance, error) {
|
|
var rowsAffected int64
|
|
err := s.conn.Transaction(func(tx *gorm.DB) error {
|
|
instance, err := s.getInstance(ctx, tx, instanceName, "Pool", "ScaleSet")
|
|
if err != nil {
|
|
return fmt.Errorf("error updating instance: %w", err)
|
|
}
|
|
|
|
// Validate transitions
|
|
if err := s.validateAgentID(instance.AgentID, param.AgentID); err != nil {
|
|
return err
|
|
}
|
|
if err := s.validateRunnerStatusTransition(instance.RunnerStatus, param.RunnerStatus); err != nil {
|
|
return err
|
|
}
|
|
if err := s.validateInstanceStatusTransition(instance.Status, param.Status); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Apply updates
|
|
if err := s.applyInstanceUpdates(&instance, param); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Save instance
|
|
result := tx.Save(&instance)
|
|
if result.Error != nil {
|
|
return fmt.Errorf("error updating instance: %w", result.Error)
|
|
}
|
|
rowsAffected = result.RowsAffected
|
|
|
|
// Update addresses if provided
|
|
if len(param.Addresses) > 0 {
|
|
addrs := make([]Address, 0, len(param.Addresses))
|
|
for _, addr := range param.Addresses {
|
|
addrs = append(addrs, Address{
|
|
Address: addr.Address,
|
|
Type: string(addr.Type),
|
|
})
|
|
}
|
|
if err := tx.Model(&instance).Association("Addresses").Replace(addrs); err != nil {
|
|
return fmt.Errorf("error updating addresses: %w", err)
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return params.Instance{}, fmt.Errorf("error updating instance: %w", err)
|
|
}
|
|
|
|
instance, err := s.getInstance(ctx, s.conn, instanceName, "Pool", "ScaleSet")
|
|
if err != nil {
|
|
return params.Instance{}, fmt.Errorf("error updating instance: %w", err)
|
|
}
|
|
|
|
inst, err := s.sqlToParamsInstance(instance)
|
|
if err != nil {
|
|
return params.Instance{}, fmt.Errorf("error converting instance: %w", err)
|
|
}
|
|
if rowsAffected > 0 {
|
|
s.sendNotify(common.InstanceEntityType, common.UpdateOperation, inst)
|
|
}
|
|
return inst, nil
|
|
}
|
|
|
|
// listInstancesBatched is a helper function that retrieves instances in batches
|
|
// and converts them to params.Instance. It accepts a query modifier function
|
|
// to customize the base query (e.g., add WHERE clauses).
|
|
func (s *sqlDatabase) listInstancesBatched(queryModifier func(*gorm.DB) *gorm.DB) ([]params.Instance, error) {
|
|
ret := []params.Instance{}
|
|
err := s.conn.Transaction(func(tx *gorm.DB) error {
|
|
batchSize := 1000
|
|
offset := 0
|
|
for {
|
|
var batch []Instance
|
|
|
|
// Start with base query and apply modifier
|
|
query := tx.Limit(batchSize).Offset(offset).
|
|
Preload("Pool").
|
|
Preload("ScaleSet").
|
|
Preload("Job")
|
|
|
|
if queryModifier != nil {
|
|
query = queryModifier(query)
|
|
}
|
|
|
|
q := query.Find(&batch)
|
|
if q.Error != nil {
|
|
return fmt.Errorf("error fetching instances: %w", q.Error)
|
|
}
|
|
if len(batch) == 0 {
|
|
break
|
|
}
|
|
|
|
// Pre-grow slice to avoid multiple small reallocations
|
|
if cap(ret) < len(ret)+len(batch) {
|
|
newCap := max(len(ret)+len(batch), cap(ret)*2)
|
|
newRet := make([]params.Instance, len(ret), newCap)
|
|
copy(newRet, ret)
|
|
ret = newRet
|
|
}
|
|
|
|
// Convert directly into result slice
|
|
for _, instance := range batch {
|
|
converted, err := s.sqlToParamsInstance(instance)
|
|
if err != nil {
|
|
return fmt.Errorf("error converting instance: %w", err)
|
|
}
|
|
ret = append(ret, converted)
|
|
}
|
|
offset += len(batch)
|
|
}
|
|
return nil
|
|
})
|
|
return ret, err
|
|
}
|
|
|
|
func (s *sqlDatabase) ListPoolInstances(_ context.Context, poolID string) ([]params.Instance, error) {
|
|
u, err := uuid.Parse(poolID)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error parsing id: %w", runnerErrors.ErrBadRequest)
|
|
}
|
|
|
|
ret, err := s.listInstancesBatched(func(query *gorm.DB) *gorm.DB {
|
|
return query.Where("pool_id = ?", u)
|
|
})
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to list pool instances: %w", err)
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
func (s *sqlDatabase) ListAllInstances(_ context.Context) ([]params.Instance, error) {
|
|
ret, err := s.listInstancesBatched(nil) // No query modifier for all instances
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to list all instances: %w", err)
|
|
}
|
|
return ret, nil
|
|
}
|
|
|
|
func (s *sqlDatabase) PoolInstanceCount(_ context.Context, poolID string) (int64, error) {
|
|
pool, err := s.getPoolByID(s.conn, poolID)
|
|
if err != nil {
|
|
return 0, fmt.Errorf("error fetching pool: %w", err)
|
|
}
|
|
|
|
var cnt int64
|
|
q := s.conn.Model(&Instance{}).Where("pool_id = ?", pool.ID).Count(&cnt)
|
|
if q.Error != nil {
|
|
return 0, fmt.Errorf("error fetching instance count: %w", q.Error)
|
|
}
|
|
return cnt, nil
|
|
}
|