-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.go
160 lines (133 loc) · 3.72 KB
/
plugin.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
/*
Copyright 2023 The Kubernetes Authors.
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 main
import (
"context"
"fmt"
"log"
"net"
"os"
"strings"
"time"
"google.golang.org/grpc"
kmsapi "k8s.io/kms/apis/v2" // The Kubernetes KMS API
)
// GRPCService is a grpc server that runs the kms v2 alpha1 API.
type GRPCService struct {
addr string
timeout time.Duration
server *grpc.Server
kmsService Service
}
var _ kmsapi.KeyManagementServiceServer = (*GRPCService)(nil)
// NewGRPCService creates an instance of GRPCService.
func NewGRPCService(
address string,
timeout time.Duration,
kmsService Service,
) *GRPCService {
return &GRPCService{
addr: address,
timeout: timeout,
kmsService: kmsService,
}
}
// ListenAndServe accepts incoming connections on a Unix socket. It is a blocking method.
// Returns non-nil error unless Close or Shutdown is called.
func (s *GRPCService) ListenAndServe() error {
if !strings.HasPrefix(s.addr, "@") {
err := os.Remove(s.addr)
if err != nil && !os.IsNotExist(err) {
return fmt.Errorf("failed to delete the socket file, error: %w", err)
}
}
ln, err := net.Listen("unix", s.addr)
if err != nil {
return err
}
defer ln.Close()
gs := grpc.NewServer(
grpc.ConnectionTimeout(s.timeout),
)
s.server = gs
kmsapi.RegisterKeyManagementServiceServer(gs, s)
log.Printf("Listening on socket: %s\n", s.addr)
return gs.Serve(ln)
}
func (s *GRPCService) Start() chan error {
errorCh := make(chan error)
log.Println("Starting up plugin server...")
go func() {
defer func() {
s.Shutdown()
close(errorCh)
}()
select {
case errorCh <- s.ListenAndServe():
default:
}
}()
return errorCh
}
// Shutdown performs a graceful shutdown. Doesn't accept new connections and
// blocks until all pending RPCs are finished.
func (s *GRPCService) Shutdown() {
if s.server != nil {
s.server.GracefulStop()
}
}
// Close stops the server by closing all connections immediately and cancels
// all active RPCs.
func (s *GRPCService) Close() {
if s.server != nil {
s.server.Stop()
}
}
// Status sends a status request to specified kms service.
func (s *GRPCService) Status(ctx context.Context, _ *kmsapi.StatusRequest) (*kmsapi.StatusResponse, error) {
res, err := s.kmsService.Status(ctx)
if err != nil {
return nil, err
}
return &kmsapi.StatusResponse{
Version: res.Version,
Healthz: res.Healthz,
KeyId: res.KeyID,
}, nil
}
// Decrypt sends a decryption request to specified kms service.
func (s *GRPCService) Decrypt(ctx context.Context, req *kmsapi.DecryptRequest) (*kmsapi.DecryptResponse, error) {
plaintext, err := s.kmsService.Decrypt(ctx, req.Uid, &DecryptRequest{
Ciphertext: req.Ciphertext,
KeyID: req.KeyId,
Annotations: req.Annotations,
})
if err != nil {
return nil, err
}
return &kmsapi.DecryptResponse{
Plaintext: plaintext,
}, nil
}
// Encrypt sends an encryption request to specified kms service.
func (s *GRPCService) Encrypt(ctx context.Context, req *kmsapi.EncryptRequest) (*kmsapi.EncryptResponse, error) {
encRes, err := s.kmsService.Encrypt(ctx, req.Uid, req.Plaintext)
if err != nil {
return nil, err
}
return &kmsapi.EncryptResponse{
Ciphertext: encRes.Ciphertext,
KeyId: encRes.KeyID,
Annotations: encRes.Annotations,
}, nil
}