forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthz.go
163 lines (145 loc) · 5.06 KB
/
authz.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
// Copyright Istio 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 cmd
import (
"context"
"fmt"
"io/ioutil"
"os"
"github.com/spf13/cobra"
"istio.io/istio/istioctl/pkg/authz"
"istio.io/istio/istioctl/pkg/util/configdump"
"istio.io/istio/istioctl/pkg/util/handlers"
"istio.io/istio/pkg/kube"
"istio.io/pkg/log"
)
var (
configDumpFile string
)
var (
checkCmd = &cobra.Command{
Use: "check [<type>/]<name>[.<namespace>]",
Short: "Check AuthorizationPolicy applied in the pod.",
Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
the Envoy configuration of the pod. The command is especially useful for inspecting
the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged
from multiple sources (mesh-level, namespace-level and workload-level).
The command also supports reading from a standalone config dump file with flag -f.`,
Example: ` # Check AuthorizationPolicy applied to pod httpbin-88ddbcfdd-nt5jb:
istioctl x authz check httpbin-88ddbcfdd-nt5jb
# Check AuthorizationPolicy applied to one pod under a deployment
istioctl proxy-status deployment/productpage-v1
# Check AuthorizationPolicy from Envoy config dump file:
istioctl x authz check -f httpbin_config_dump.json`,
Args: func(cmd *cobra.Command, args []string) error {
if len(args) > 1 {
cmd.Println(cmd.UsageString())
return fmt.Errorf("check requires only <pod-name>[.<pod-namespace>]")
}
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
var configDump *configdump.Wrapper
var err error
if configDumpFile != "" {
configDump, err = getConfigDumpFromFile(configDumpFile)
if err != nil {
return fmt.Errorf("failed to get config dump from file %s: %s", configDumpFile, err)
}
} else if len(args) == 1 {
kubeClient, err := kubeClient(kubeconfig, configContext)
if err != nil {
return fmt.Errorf("failed to create k8s client: %w", err)
}
podName, podNamespace, err := handlers.InferPodInfoFromTypedResource(args[0],
handlers.HandleNamespace(namespace, defaultNamespace),
kubeClient.UtilFactory())
if err != nil {
return err
}
configDump, err = getConfigDumpFromPod(podName, podNamespace)
if err != nil {
return fmt.Errorf("failed to get config dump from pod %s in %s", podName, podNamespace)
}
} else {
return fmt.Errorf("expecting pod name or config dump, found: %d", len(args))
}
analyzer, err := authz.NewAnalyzer(configDump)
if err != nil {
return err
}
analyzer.Print(cmd.OutOrStdout())
return nil
},
}
)
func getConfigDumpFromFile(filename string) (*configdump.Wrapper, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer func() {
if err := file.Close(); err != nil {
log.Errorf("failed to close %s: %s", filename, err)
}
}()
data, err := ioutil.ReadAll(file)
if err != nil {
return nil, err
}
envoyConfig := &configdump.Wrapper{}
if err := envoyConfig.UnmarshalJSON(data); err != nil {
return nil, fmt.Errorf("failed to unmarshal proxy config: %s", err)
}
return envoyConfig, nil
}
func getConfigDumpFromPod(podName, podNamespace string) (*configdump.Wrapper, error) {
kubeClient, err := kube.NewExtendedClient(kube.BuildClientCmd(kubeconfig, configContext), "")
if err != nil {
return nil, err
}
pods, err := kubeClient.GetIstioPods(context.TODO(), podNamespace, map[string]string{
"fieldSelector": "metadata.name=" + podName,
})
if err != nil {
return nil, fmt.Errorf("failed to get pod: %s", err)
}
if len(pods) != 1 {
return nil, fmt.Errorf("expecting only 1 pod for %s.%s, found: %d", podName, podNamespace, len(pods))
}
data, err := kubeClient.EnvoyDo(context.TODO(), podName, podNamespace, "GET", "config_dump", nil)
if err != nil {
return nil, fmt.Errorf("failed to get proxy config for %s.%s: %s", podName, podNamespace, err)
}
envoyConfig := &configdump.Wrapper{}
if err := envoyConfig.UnmarshalJSON(data); err != nil {
return nil, fmt.Errorf("failed to unmarshal proxy config: %s", err)
}
return envoyConfig, nil
}
// AuthZ groups commands used for inspecting and interacting the authorization policy.
// Note: this is still under active development and is not ready for real use.
func AuthZ() *cobra.Command {
cmd := &cobra.Command{
Use: "authz",
Short: "Inspect Istio AuthorizationPolicy",
}
cmd.AddCommand(checkCmd)
cmd.Long += "\n\n" + ExperimentalMsg
return cmd
}
func init() {
checkCmd.PersistentFlags().StringVarP(&configDumpFile, "file", "f", "",
"The json file with Envoy config dump to be checked")
}