-
Notifications
You must be signed in to change notification settings - Fork 138
/
cmd.go
177 lines (151 loc) · 4.73 KB
/
cmd.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
/*
Copyright (c) 2019 Red Hat, Inc.
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 tunnel
import (
"fmt"
"net"
"net/url"
"os"
"os/exec"
"regexp"
"strings"
c "github.com/openshift-online/ocm-cli/pkg/cluster"
"github.com/openshift-online/ocm-cli/pkg/ocm"
clustersmgmtv1 "github.com/openshift-online/ocm-sdk-go/clustersmgmt/v1"
"github.com/spf13/cobra"
)
var args struct {
useSubnets bool
}
var Cmd = &cobra.Command{
Use: "tunnel [flags] {CLUSTERID|CLUSTER_NAME|CLUSTER_NAME_SEARCH} -- [sshuttle arguments]",
Short: "tunnel to a cluster",
Long: "Use sshuttle to create a ssh tunnel to a cluster by ID or Name or" +
"cluster name search string according to the api: " +
"https://api.openshift.com/#/clusters/get_api_clusters_mgmt_v1_clusters",
Example: " ocm tunnel <cluster_id>\n ocm tunnel %test%",
RunE: run,
Hidden: true,
Args: cobra.ArbitraryArgs,
}
func init() {
flags := Cmd.Flags()
flags.BoolVarP(
&args.useSubnets,
"subnets",
"",
false,
"If specified, tunnel the entire subnets of MachineCIDR, ServiceCIDR and PodCIDR. "+
"Otherwise, only tunnel to the IPs of console and API Servers. ",
)
}
func run(cmd *cobra.Command, argv []string) error {
// Check that the cluster key (name, identifier or external identifier) given by the user
// is reasonably safe so that there is no risk of SQL injection:
if len(argv) < 1 {
fmt.Fprintf(
os.Stderr,
"Expected exactly one cluster name, identifier or external identifier "+
"is required\n",
)
os.Exit(1)
}
clusterKey := argv[0]
if !c.IsValidClusterKey(clusterKey) {
return fmt.Errorf(
"cluster name, identifier or external identifier '%s' isn't valid: it "+
"must contain only letters, digits, dashes and underscores",
clusterKey,
)
}
path, err := exec.LookPath("sshuttle")
if err != nil {
return fmt.Errorf("to run this, you need install the sshuttle tool first")
}
// Create the client for the OCM API:
connection, err := ocm.NewConnection().Build()
if err != nil {
return fmt.Errorf("failed to create OCM connection: %v", err)
}
defer connection.Close()
cluster, err := c.GetCluster(connection, clusterKey)
if err != nil {
return fmt.Errorf("failed to get cluster '%s': %v", clusterKey, err)
}
fmt.Printf("Will create tunnel to cluster:\n Name: %s\n ID: %s\n", cluster.Name(), cluster.ID())
sshURL, err := generateSSHURI(cluster)
if err != nil {
return err
}
sshuttleArgs := []string{
"--remote", sshURL,
}
if args.useSubnets {
sshuttleArgs = append(sshuttleArgs,
cluster.Network().MachineCIDR(),
cluster.Network().ServiceCIDR(),
cluster.Network().PodCIDR())
} else {
consoleIPs, err := resolveURL(cluster.Console().URL())
if err != nil {
return fmt.Errorf("can't get console IPs: %s", err)
}
apiIPs, err := resolveURL(cluster.API().URL())
if err != nil {
return fmt.Errorf("can't get api server IPs: %s", err)
}
sshuttleArgs = append(sshuttleArgs, consoleIPs...)
sshuttleArgs = append(sshuttleArgs, apiIPs...)
}
sshuttleArgs = append(sshuttleArgs, argv[1:]...)
// Output sshuttle command execution string for review
fmt.Printf("\n# %s %s\n\n", path, strings.Join(sshuttleArgs, " "))
// #nosec G204
sshuttleCmd := exec.Command(path, sshuttleArgs...)
sshuttleCmd.Stderr = os.Stderr
sshuttleCmd.Stdin = os.Stdin
sshuttleCmd.Stdout = os.Stdout
err = sshuttleCmd.Run()
if err != nil {
return fmt.Errorf("failed to login to cluster: %s", err)
}
return nil
}
func generateSSHURI(cluster *clustersmgmtv1.Cluster) (string, error) {
r := regexp.MustCompile(`(?mi)^https:\/\/api\.(.*):6443`)
apiURL := cluster.API().URL()
if len(apiURL) == 0 {
return "", fmt.Errorf("cannot find the api URL for cluster: %s", cluster.Name())
}
base := r.FindStringSubmatch(apiURL)[1]
if len(base) == 0 {
return "", fmt.Errorf("unable to match api URL for cluster: %s", cluster.Name())
}
return "sre-user@rh-ssh." + base, nil
}
func resolveURL(rawurl string) ([]string, error) {
u, err := url.Parse(rawurl)
if err != nil {
return nil, fmt.Errorf("can't parse url: %s", err)
}
hostname := u.Hostname()
ips, err := net.LookupIP(hostname)
if err != nil {
return nil, fmt.Errorf("failed looking up %s: %s", hostname, err)
}
result := []string{}
for _, ip := range ips {
result = append(result, ip.String())
}
return result, nil
}