garm/runner/runner.go

156 lines
3.4 KiB
Go
Raw Normal View History

package runner
import (
2022-04-15 15:22:47 +00:00
"context"
2022-04-22 14:46:27 +00:00
"fmt"
2022-04-18 17:26:13 +00:00
"io/ioutil"
"os"
"path/filepath"
"runner-manager/config"
2022-04-22 14:46:27 +00:00
gErrors "runner-manager/errors"
"runner-manager/runner/common"
2022-04-22 14:46:27 +00:00
"runner-manager/runner/providers"
2022-04-18 17:26:13 +00:00
"runner-manager/util"
"sync"
2022-04-18 17:26:13 +00:00
"github.com/google/go-github/v43/github"
"github.com/pkg/errors"
"golang.org/x/crypto/ssh"
)
2022-04-22 14:46:27 +00:00
func NewRunner(ctx context.Context, cfg config.Config) (*Runner, error) {
ghc, err := util.GithubClientFromConfig(ctx, cfg.Github)
if err != nil {
return nil, errors.Wrap(err, "getting github client")
}
providers, err := providers.LoadProvidersFromConfig(ctx, cfg, "")
if err != nil {
return nil, errors.Wrap(err, "loading providers")
}
2022-04-18 17:26:13 +00:00
runner := &Runner{
2022-04-22 14:46:27 +00:00
ctx: ctx,
config: cfg,
ghc: ghc,
providers: providers,
2022-04-18 17:26:13 +00:00
}
if err := runner.ensureSSHKeys(); err != nil {
return nil, errors.Wrap(err, "ensuring SSH keys")
}
return runner, nil
2022-04-15 15:22:47 +00:00
}
type Runner struct {
2022-04-18 17:26:13 +00:00
mux sync.Mutex
2022-04-15 15:22:47 +00:00
ctx context.Context
ghc *github.Client
2022-04-22 14:46:27 +00:00
controllerID string
config config.Config
repositories map[string]common.PoolManager
organizations map[string]common.PoolManager
providers map[string]common.Provider
}
func (r *Runner) getRepoSecret(repoName string) (string, error) {
return "", nil
}
func (r *Runner) getOrgSecret(orgName string) (string, error) {
return "", nil
}
func (r *Runner) ValidateHookBody(hookTargetType, signature, entity string, body []byte) error {
var secret string
var err error
switch hookTargetType {
case "repository":
secret, err = r.getRepoSecret(entity)
case "organization":
secret, err = r.getOrgSecret(entity)
default:
return gErrors.NewBadRequestError("invalid hook type: %s", hookTargetType)
}
fmt.Println(secret, err)
return nil
}
2022-04-18 17:26:13 +00:00
func (r *Runner) sshDir() string {
return filepath.Join(r.config.ConfigDir, "ssh")
}
func (r *Runner) sshKeyPath() string {
keyPath := filepath.Join(r.sshDir(), "runner_rsa_key")
return keyPath
}
func (r *Runner) sshPubKeyPath() string {
keyPath := filepath.Join(r.sshDir(), "runner_rsa_key.pub")
return keyPath
}
func (r *Runner) parseSSHKey() (ssh.Signer, error) {
r.mux.Lock()
defer r.mux.Unlock()
key, err := ioutil.ReadFile(r.sshKeyPath())
if err != nil {
return nil, errors.Wrapf(err, "reading private key %s", r.sshKeyPath())
}
signer, err := ssh.ParsePrivateKey(key)
if err != nil {
return nil, errors.Wrapf(err, "parsing private key %s", r.sshKeyPath())
}
return signer, nil
}
func (r *Runner) sshPubKey() ([]byte, error) {
key, err := ioutil.ReadFile(r.sshPubKeyPath())
if err != nil {
return nil, errors.Wrapf(err, "reading public key %s", r.sshPubKeyPath())
}
return key, nil
}
func (r *Runner) ensureSSHKeys() error {
sshDir := r.sshDir()
if _, err := os.Stat(sshDir); err != nil {
if !errors.Is(err, os.ErrNotExist) {
return errors.Wrapf(err, "checking SSH dir %s", sshDir)
}
if err := os.MkdirAll(sshDir, 0o700); err != nil {
return errors.Wrapf(err, "creating ssh dir %s", sshDir)
}
}
privKeyFile := r.sshKeyPath()
pubKeyFile := r.sshPubKeyPath()
if _, err := os.Stat(privKeyFile); err == nil {
return nil
}
pubKey, privKey, err := util.GenerateSSHKeyPair()
if err != nil {
errors.Wrap(err, "generating keypair")
}
if err := ioutil.WriteFile(privKeyFile, privKey, 0o600); err != nil {
return errors.Wrap(err, "writing private key")
}
if err := ioutil.WriteFile(pubKeyFile, pubKey, 0o600); err != nil {
return errors.Wrap(err, "writing public key")
}
return nil
}