-
Notifications
You must be signed in to change notification settings - Fork 1
/
cli-handler.go
162 lines (140 loc) · 4.32 KB
/
cli-handler.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
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
package main
import (
"net"
"os"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"golang.org/x/net/context"
pb "github.com/alexejk/limes/proto"
)
var grpcErrorf = grpc.Errorf
// CliHandler process calls from the cli tool
type CliHandler struct {
address string
stop chan struct{}
log Logger
config Config
credsManager CredentialsManager
pb.UnimplementedInstanceMetaServiceServer
}
// NewCliHandler returns a cliHandler
func NewCliHandler(address string, credsManager CredentialsManager, stop chan struct{}, config Config) *CliHandler {
return &CliHandler{
address: address,
log: &ConsoleLogger{},
stop: stop,
credsManager: credsManager,
config: config,
}
}
// Start handles the cli start command
func (h *CliHandler) Start() error {
// setupt socket
if _, err := os.Stat(h.address); err == nil {
errRemove := os.Remove(h.address)
if errRemove != nil {
return errRemove
}
}
h.log.Debug("Creating socket: %v\n", h.address)
localSocket, err := net.Listen("unix", h.address)
if err != nil {
return err
}
// we run as root, so let others connect to the socket
err = os.Chmod(h.address, 0777)
if err != nil {
return err
}
s := grpc.NewServer()
pb.RegisterInstanceMetaServiceServer(s, h)
go s.Serve(localSocket)
return nil
}
// Status handles the cli status command
func (h *CliHandler) Status(ctx context.Context, in *pb.Void) (*pb.StatusReply, error) {
creds, err := h.credsManager.GetCredentials()
if err != nil {
if err == errMFANeeded || err == errUnknownProfile {
return nil, grpcErrorf(codes.FailedPrecondition, err.Error())
}
return nil, err
}
return &pb.StatusReply{
Error: "",
Role: h.credsManager.Role(),
AccessKeyId: *creds.AccessKeyId,
SecretAccessKey: *creds.SecretAccessKey,
SessionToken: *creds.SessionToken,
Expiration: creds.Expiration.String(),
Region: h.credsManager.Region(),
}, nil
}
// Stop handles the cli stop command
func (h *CliHandler) Stop(ctx context.Context, in *pb.Void) (*pb.StopReply, error) {
close(h.stop)
return &pb.StopReply{}, nil
}
// AssumeRole will switch the current role of the metadata service
func (h *CliHandler) AssumeRole(ctx context.Context, in *pb.AssumeRoleRequest) (*pb.StatusReply, error) {
err := h.credsManager.AssumeRole(in.Name, in.Mfa)
if err != nil {
if err == errMFANeeded || err == errUnknownProfile {
return nil, grpcErrorf(codes.FailedPrecondition, err.Error())
}
return nil, err
}
creds, err := h.credsManager.GetCredentials()
if err != nil {
if err == errMFANeeded || err == errUnknownProfile {
return nil, grpcErrorf(codes.FailedPrecondition, err.Error())
}
return nil, err
}
return &pb.StatusReply{
Error: "",
Role: h.credsManager.Role(),
AccessKeyId: *creds.AccessKeyId,
SecretAccessKey: *creds.SecretAccessKey,
SessionToken: *creds.SessionToken,
Expiration: creds.Expiration.String(),
Region: h.credsManager.Region(),
}, nil
}
// RetrieveRole assumes a role, but does not update the server
func (h *CliHandler) RetrieveRole(ctx context.Context, in *pb.AssumeRoleRequest) (*pb.StatusReply, error) {
creds, err := h.credsManager.RetrieveRole(in.Name, in.Mfa)
if err != nil {
if err == errMFANeeded || err == errUnknownProfile {
return nil, grpcErrorf(codes.FailedPrecondition, err.Error())
}
return nil, err
}
return &pb.StatusReply{
Error: "",
Role: h.credsManager.Role(),
AccessKeyId: *creds.AccessKeyId,
SecretAccessKey: *creds.SecretAccessKey,
SessionToken: *creds.SessionToken,
Expiration: creds.Expiration.String(),
Region: creds.Region,
}, nil
}
// Config returns the current configuration
func (h *CliHandler) Config(ctx context.Context, in *pb.Void) (*pb.ConfigReply, error) {
res := &pb.ConfigReply{
Profiles: make(map[string]*pb.Profile, len(h.config.Profiles)),
}
for name, profile := range h.config.Profiles {
res.Profiles[name] = &pb.Profile{
AwsAccessKeyID: profile.AwsAccessKeyID,
AwsSecretAccessKey: profile.AwsSecretAccessKey,
AwsSessionToken: profile.AwsSessionToken,
Region: profile.Region,
MFASerial: profile.MFASerial,
RoleARN: profile.RoleARN,
RoleSessionName: profile.RoleSessionName,
}
}
return res, nil
}