-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddsg.go
328 lines (280 loc) · 7.45 KB
/
addsg.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
package main
import (
"errors"
"flag"
"fmt"
"log"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/awserr"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/ec2"
"github.com/rdegges/go-ipify"
)
type EC2er interface {
DescribeSecurityGroups(*ec2.DescribeSecurityGroupsInput) (*ec2.DescribeSecurityGroupsOutput, error)
DescribeInstances(*ec2.DescribeInstancesInput) (*ec2.DescribeInstancesOutput, error)
CreateSecurityGroup(*ec2.CreateSecurityGroupInput) (*ec2.CreateSecurityGroupOutput, error)
AuthorizeSecurityGroupIngress(*ec2.AuthorizeSecurityGroupIngressInput) (*ec2.AuthorizeSecurityGroupIngressOutput, error)
ModifyInstanceAttribute(*ec2.ModifyInstanceAttributeInput) (*ec2.ModifyInstanceAttributeOutput, error)
DeleteSecurityGroup(*ec2.DeleteSecurityGroupInput) (*ec2.DeleteSecurityGroupOutput, error)
}
var _ EC2er = (*ec2.EC2)(nil)
type EC2Helper struct {
client EC2er
}
var (
cleanMode = flag.Bool("c", false, "Remove all security groups created by me")
instanceIp = flag.String("i", "", "IP of the instance we want to access")
)
func usage() {
log.Printf("usage: addsg -i [instance-ip]")
os.Exit(1)
}
func (e *EC2Helper) getSecurityGroup(vpcId string, sgName string) (string, error) {
r, err := e.client.DescribeSecurityGroups(&ec2.DescribeSecurityGroupsInput{
Filters: []*ec2.Filter{
&ec2.Filter{
Name: aws.String("vpc-id"),
Values: []*string{
aws.String(vpcId),
},
},
&ec2.Filter{
Name: aws.String("group-name"),
Values: []*string{
aws.String(sgName),
},
},
},
})
if err != nil {
return "", err
}
if len(r.SecurityGroups) == 0 {
return "", nil
}
return *r.SecurityGroups[0].GroupId, nil
}
func (e *EC2Helper) getAllSecurityGroups(sgName string) ([]*ec2.SecurityGroup, error) {
r, err := e.client.DescribeSecurityGroups(&ec2.DescribeSecurityGroupsInput{
Filters: []*ec2.Filter{
&ec2.Filter{
Name: aws.String("group-name"),
Values: []*string{
aws.String(sgName),
},
},
},
})
if err != nil {
return nil, err
}
return r.SecurityGroups, nil
}
func (e *EC2Helper) deleteSecurityGroup(sg *ec2.SecurityGroup) error {
_, err := e.client.DeleteSecurityGroup(&ec2.DeleteSecurityGroupInput{
GroupId: sg.GroupId,
})
if err != nil {
return err
}
return nil
}
func (e *EC2Helper) getInstance(instanceIp string) (*ec2.Instance, error) {
params := &ec2.DescribeInstancesInput{
Filters: []*ec2.Filter{
&ec2.Filter{
Name: aws.String("ip-address"),
Values: []*string{
aws.String(instanceIp),
},
},
},
}
r, err := e.client.DescribeInstances(params)
if err != nil {
return nil, err
}
if len(r.Reservations) == 0 {
return nil, fmt.Errorf("instance not found")
}
return r.Reservations[0].Instances[0], nil
}
func (e *EC2Helper) getAllReservationsByVpcAndSG(group *ec2.SecurityGroup) ([]*ec2.Reservation, error) {
params := &ec2.DescribeInstancesInput{
Filters: []*ec2.Filter{
&ec2.Filter{
Name: aws.String("vpc-id"),
Values: []*string{
group.VpcId,
},
},
},
}
r, err := e.client.DescribeInstances(params)
if err != nil {
return nil, err
}
return r.Reservations, nil
}
func (e *EC2Helper) createSecurityGroup(vpcId string, sgName string) (string, error) {
securityGroupOpts := &ec2.CreateSecurityGroupInput{}
securityGroupOpts.VpcId = aws.String(vpcId)
securityGroupOpts.Description = aws.String("Created by addsg")
securityGroupOpts.GroupName = aws.String(sgName)
r, err := e.client.CreateSecurityGroup(securityGroupOpts)
if err != nil {
return "", err
}
return *r.GroupId, nil
}
func (e *EC2Helper) addIpToSecurityGroup(ip string, sgId string) error {
r, err := e.client.AuthorizeSecurityGroupIngress(&ec2.AuthorizeSecurityGroupIngressInput{
CidrIp: aws.String(ip + "/32"),
FromPort: aws.Int64(22),
ToPort: aws.Int64(22),
GroupId: aws.String(sgId),
IpProtocol: aws.String("TCP"),
})
_ = r
return err
}
func (e *EC2Helper) addSecurityGroupToInstance(i *ec2.Instance, sgId string) error {
var groups []*string
for _, group := range i.SecurityGroups {
if *group.GroupId != sgId {
groups = append(groups, group.GroupId)
} else {
return errors.New("instance already has the security group")
}
}
groups = append(groups, &sgId)
_, err := e.client.ModifyInstanceAttribute(&ec2.ModifyInstanceAttributeInput{
InstanceId: aws.String(*i.InstanceId),
Groups: groups,
})
return err
}
func (e *EC2Helper) removeSecurityGroupFromInstance(i *ec2.Instance, sgId string) (bool, error) {
var groups []*string
found := false
for _, group := range i.SecurityGroups {
if *group.GroupId != sgId {
groups = append(groups, group.GroupId)
} else {
found = true
}
}
_, err := e.client.ModifyInstanceAttribute(&ec2.ModifyInstanceAttributeInput{
InstanceId: aws.String(*i.InstanceId),
Groups: groups,
})
if err != nil {
return false, err
}
return found, nil
}
func (e *EC2Helper) cleanUp() {
sgName := makeSgName()
groups, _ := e.getAllSecurityGroups(sgName)
for _, group := range groups {
log.Printf("Removing sg: %s", *group.GroupId)
res, err := e.getAllReservationsByVpcAndSG(group)
if err != nil {
log.Printf("Error getting reservations: %s", err)
os.Exit(1)
}
for _, r := range res {
for _, i := range r.Instances {
found, err := e.removeSecurityGroupFromInstance(i, *group.GroupId)
if err != nil {
log.Printf("Error removing sg from instance: %s", err)
os.Exit(1)
}
if found {
log.Printf("Removed sg %s from instance %s", *group.GroupId, *i.InstanceId)
}
}
}
err1 := e.deleteSecurityGroup(group)
if err1 != nil {
log.Printf("Error removing sg: %s", err1)
os.Exit(1)
}
log.Printf("Removed sg %s", *group.GroupId)
}
}
func makeSgName() string {
hostname, err := os.Hostname()
if err != nil {
log.Printf("Error getting the hostname: %s", err)
os.Exit(1)
}
return "addsg-" + hostname
}
func main() {
flag.Usage = usage
flag.Parse()
if (*instanceIp == "" && !*cleanMode) || (*instanceIp != "" && *cleanMode) {
usage()
}
sess := session.New()
var e EC2er = ec2.New(sess)
helper := &EC2Helper{e}
if *cleanMode {
helper.cleanUp()
os.Exit(0)
}
i, err := helper.getInstance(*instanceIp)
if err != nil {
log.Printf("Could't find the instance: %s", err)
os.Exit(1)
}
log.Printf("Found instance id: %s", *i.InstanceId)
log.Printf("Found VPC id: %s", *i.VpcId)
sgName := makeSgName()
sgId, err := helper.getSecurityGroup(*i.VpcId, sgName)
if err != nil {
log.Printf("Error searching the sg: %s", err)
os.Exit(1)
}
if sgId == "" {
// create the sg
sg, err := helper.createSecurityGroup(*i.VpcId, sgName)
sgId = sg
if err != nil {
log.Printf("Error creating the sg: %s", err)
os.Exit(1)
}
log.Printf("Created sg: %s", sgId)
} else {
log.Printf("Recycling sg: %s", sgId)
}
ip, err := ipify.GetIp()
if err != nil {
log.Printf("Couldn't get IP address: %s", err)
os.Exit(1)
}
log.Printf("Granting access to IP: %s", ip)
err = helper.addIpToSecurityGroup(ip, sgId)
if err != nil {
if awsErr, ok := err.(awserr.Error); ok {
if awsErr.Code() == "InvalidPermission.Duplicate" {
log.Printf("The IP was already on the sg")
} else {
log.Printf("Couldn't add IP to sg: %s", err)
os.Exit(1)
}
} else {
log.Printf("Couldn't add IP to sg: %s", err)
os.Exit(1)
}
}
err = helper.addSecurityGroupToInstance(i, sgId)
if err != nil {
log.Printf("Couldn't add instance to sg: %s", err)
os.Exit(1)
}
log.Printf("Done")
}