-
Notifications
You must be signed in to change notification settings - Fork 484
/
tokenprovider.go
99 lines (86 loc) · 3 KB
/
tokenprovider.go
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
//
// Copyright (c) 2021 Intel Corporation
//
// 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 secretstore
import (
"context"
"fmt"
"os/exec"
"strings"
"syscall"
"github.com/edgexfoundry/edgex-go/internal/security/secretstore/config"
"github.com/edgexfoundry/go-mod-core-contracts/v2/clients/logger"
)
const OneShotProvider = "oneshot"
type TokenProvider struct {
loggingClient logger.LoggingClient
ctx context.Context
execRunner ExecRunner
initialized bool
secretStore config.SecretStoreInfo
resolvedPath string
}
// NewTokenProvider creates a new TokenProvider
func NewTokenProvider(ctx context.Context, lc logger.LoggingClient, execRunner ExecRunner) *TokenProvider {
return &TokenProvider{
loggingClient: lc,
ctx: ctx,
execRunner: execRunner,
}
}
// SetConfiguration parses token provider configuration and resolves paths specified therein
func (p *TokenProvider) SetConfiguration(secretStore config.SecretStoreInfo) error {
var err error
p.secretStore = secretStore
if p.secretStore.TokenProviderType != OneShotProvider {
err = fmt.Errorf("%s is not a supported TokenProviderType", p.secretStore.TokenProviderType)
return err
}
resolvedPath, err := p.execRunner.LookPath(p.secretStore.TokenProvider)
if err != nil {
err = fmt.Errorf("Failed to locate %s on PATH: %s", p.secretStore.TokenProvider, err.Error())
return err
}
p.initialized = true
p.resolvedPath = resolvedPath
return nil
}
// Launch spawns the token provider function
func (p *TokenProvider) Launch() error {
if !p.initialized {
err := fmt.Errorf("TokenProvider object not initialized; call SetConfiguration() first")
return err
}
p.loggingClient.Infof(
"Launching token provider %s with arguments %s",
p.resolvedPath,
strings.Join(p.secretStore.TokenProviderArgs, " "))
cmd := p.execRunner.CommandContext(p.ctx, p.resolvedPath, p.secretStore.TokenProviderArgs...)
if err := cmd.Start(); err != nil {
// For example, this might occur if a shared library was missing
err = fmt.Errorf("%s failed to launch: %s", p.resolvedPath, err.Error())
return err
}
err := cmd.Wait()
if exitError, ok := err.(*exec.ExitError); ok {
waitStatus := exitError.Sys().(syscall.WaitStatus)
err = fmt.Errorf("%s terminated with non-zero exit code %d", p.resolvedPath, waitStatus.ExitStatus())
return err
}
if err != nil {
err = fmt.Errorf("%s failed with unexpected error: %s", p.resolvedPath, err.Error())
return err
}
p.loggingClient.Info("token provider exited successfully")
return nil
}