-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmygrpcadapter.go
222 lines (188 loc) · 6.84 KB
/
mygrpcadapter.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
// nolint:lll
// Generates the mygrpcadapter adapter's resource yaml. It contains the adapter's configuration, name, supported template
// names (metric in this case), and whether it is session or no-session based.
//go:generate $GOPATH/src/istio.io/istio/bin/mixer_codegen.sh -a mixer/adapter/mygrpcadapter/config/config.proto -x "-s=false -n mygrpcadapter -t authorization"
package mygrpcadapter
import (
"context"
"fmt"
"github.com/ashutoshraina/myootadapter/mygrpcadapter/config"
"net"
"time"
"strings"
"strconv"
"sync"
"google.golang.org/grpc"
"istio.io/api/mixer/adapter/model/v1beta1"
policy "istio.io/api/policy/v1beta1"
"istio.io/istio/mixer/pkg/status"
"istio.io/istio/mixer/template/authorization"
"istio.io/pkg/log"
)
type (
// Server is basic server interface
Server interface {
Addr() string
Close() error
Run(shutdown chan error)
}
// MyGrpcAdapter supports metric template.
MyGrpcAdapter struct {
listener net.Listener
server *grpc.Server
}
)
var _ authorization.HandleAuthorizationServiceServer = &MyGrpcAdapter{}
var (
lineage = make(map[string][]string)
lineageLock = sync.RWMutex{}
)
// HandleMetric records metric entries
//func (s *MyGrpcAdapter) HandleAuthorization(ctx context.Context, r *authorization.HandleAuthorizationRequest) (*v1beta1.CheckResult, error) {
func (s *MyGrpcAdapter) HandleAuthorization(ctx context.Context, r *authorization.HandleAuthorizationRequest) (*v1beta1.CheckResult, error) {
log.Infof("received request %v\n", *r)
cfg := &config.Params{}
if r.AdapterConfig != nil {
if err := cfg.Unmarshal(r.AdapterConfig.Value); err != nil {
log.Errorf("error unmarshalling adapter config: %v", err)
return nil, err
}
}
decodeValue := func(in interface{}) interface{} {
switch t := in.(type) {
case *policy.Value_StringValue:
return t.StringValue
case *policy.Value_Int64Value:
return t.Int64Value
case *policy.Value_DoubleValue:
return t.DoubleValue
default:
return fmt.Sprintf("%v", in)
}
}
decodeValueMap := func(in map[string]*policy.Value) map[string]interface{} {
out := make(map[string]interface{}, len(in))
for k, v := range in {
out[k] = decodeValue(v.GetValue())
//fmt.Println("k:", k, "v:", v.GetValue())
}
return out
}
//log.Infof(cfg.AuthKey)
props := decodeValueMap(r.Instance.Subject.Properties)
//log.Infof("%v", props)
lineageSoFar := strings.Split(props["x-req"].(string), "--")
jaeger_id := lineageSoFar[0]
log.Infof("jaeger id: %s", jaeger_id)
lineageLock.Lock()
soFar, ok := lineage[jaeger_id]
lineageLock.Unlock()
// rethink what is going on here
if (len(lineageSoFar) > 2) {
//for _, i := range lineageSoFar[:1] {
//log.Infof("len is %d, with string %s", len(lineageSoFar), props["x-req"].(string))
//log.Infof("len is %d, with string %s", len(lineageSoFar), props["x-req"].(string))
for _, i := range lineageSoFar[:2] {
log.Infof("OKKKKK %s, len %d", i, len(lineageSoFar))
// these will be separated by commas
for _, command := range strings.Split(i, ",") {
log.Infof("COMMAND: %s", command)
pair := strings.Split(command, "=")
if (pair[0] == "after") {
log.Infof("AFTER")
pairs2 := strings.Split(pair[1], "|")
anchor, target, fault, param := pairs2[0], pairs2[1], pairs2[2], pairs2[3]
//anchor, target := pairs2[0], pairs2[1]
if (target == props["destination_svc"] && ok) {
log.Infof("IN the zone")
for _, sf := range soFar {
if (sf == anchor) {
// dying on purpose
log.Infof("Dying on %s", sf)
//return &v1beta1.CheckResult{
// Status: status.WithPermissionDenied("Unauthorized..."),
//}, nil
if (fault == "E") {
return &v1beta1.CheckResult{
Status: status.WithPermissionDenied("Unauthorized..."),
}, nil
} else if (fault == "D") {
if val, err := strconv.Atoi(param); err == nil {
time.Sleep(time.Duration(val) * time.Second)
} else {
log.Infof("%s did not scan as a timeout value", param)
}
} else {
log.Infof("Unknown fault type %s", fault)
}
}
}
}
}
}
}
}
if (ok) {
log.Infof("so far: %s", strings.Join(soFar, ", "))
/*
for _, i := range soFar {
// cheap stopgap trick: if this is our second visit to a particular service...
if (i == props["destination_svc"] && i != "productpage") {
// dying on purpose
log.Infof("Dying on %s", i)
return &v1beta1.CheckResult{
Status: status.WithPermissionDenied("Unauthorized..."),
}, nil
}
}
*/
} else {
log.Infof("EMPTY!")
lineageLock.Lock()
lineage[jaeger_id] = make([]string, 0)
soFar = lineage[jaeger_id]
lineageLock.Unlock()
}
lineageLock.Lock()
lineage[jaeger_id] = append(soFar, props["destination_svc"].(string))
lineageLock.Unlock()
for k, v := range props {
fmt.Println("k:", k, "v:", v)
}
return &v1beta1.CheckResult{Status: status.OK,}, nil
}
// Addr returns the listening address of the server
func (s *MyGrpcAdapter) Addr() string {
return s.listener.Addr().String()
}
// Run starts the server run
func (s *MyGrpcAdapter) Run(shutdown chan error) {
shutdown <- s.server.Serve(s.listener)
}
// Close gracefully shuts down the server; used for testing
func (s *MyGrpcAdapter) Close() error {
if s.server != nil {
s.server.GracefulStop()
}
if s.listener != nil {
_ = s.listener.Close()
}
return nil
}
// NewMyGrpcAdapter creates a new IBP adapter that listens at provided port.
func NewMyGrpcAdapter(addr string) (Server, error) {
if addr == "" {
addr = "0"
}
listener, err := net.Listen("tcp", fmt.Sprintf(":%s", addr))
if err != nil {
return nil, fmt.Errorf("unable to listen on socket: %v", err)
}
s := &MyGrpcAdapter{
listener: listener,
}
fmt.Printf("Old: listening on \"%v\"\n", s.Addr())
s.server = grpc.NewServer()
authorization.RegisterHandleAuthorizationServiceServer(s.server, s)
return s, nil
}