mirror of https://github.com/kubernetes/kops.git
146 lines
3.9 KiB
Go
146 lines
3.9 KiB
Go
/*
|
|
Copyright 2016 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 aws
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
|
"github.com/golang/glog"
|
|
|
|
"k8s.io/kops/pkg/resources"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
|
|
)
|
|
|
|
func DeleteSecurityGroup(cloud fi.Cloud, t *resources.Resource) error {
|
|
c := cloud.(awsup.AWSCloud)
|
|
|
|
id := t.ID
|
|
// First clear all inter-dependent rules
|
|
// TODO: Move to a "pre-execute" phase?
|
|
{
|
|
request := &ec2.DescribeSecurityGroupsInput{
|
|
GroupIds: []*string{&id},
|
|
}
|
|
response, err := c.EC2().DescribeSecurityGroups(request)
|
|
if err != nil {
|
|
if awsup.AWSErrorCode(err) == "InvalidGroup.NotFound" {
|
|
glog.V(2).Infof("Got InvalidGroup.NotFound error describing SecurityGroup %q; will treat as already-deleted", id)
|
|
return nil
|
|
}
|
|
return fmt.Errorf("error describing SecurityGroup %q: %v", id, err)
|
|
}
|
|
|
|
if len(response.SecurityGroups) == 0 {
|
|
return nil
|
|
}
|
|
if len(response.SecurityGroups) != 1 {
|
|
return fmt.Errorf("found mutiple SecurityGroups with ID %q", id)
|
|
}
|
|
sg := response.SecurityGroups[0]
|
|
|
|
if len(sg.IpPermissions) != 0 {
|
|
revoke := &ec2.RevokeSecurityGroupIngressInput{
|
|
GroupId: &id,
|
|
IpPermissions: sg.IpPermissions,
|
|
}
|
|
_, err = c.EC2().RevokeSecurityGroupIngress(revoke)
|
|
if err != nil {
|
|
return fmt.Errorf("cannot revoke ingress for ID %q: %v", id, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
{
|
|
glog.V(2).Infof("Deleting EC2 SecurityGroup %q", id)
|
|
request := &ec2.DeleteSecurityGroupInput{
|
|
GroupId: &id,
|
|
}
|
|
_, err := c.EC2().DeleteSecurityGroup(request)
|
|
if err != nil {
|
|
if IsDependencyViolation(err) {
|
|
return err
|
|
}
|
|
return fmt.Errorf("error deleting SecurityGroup %q: %v", id, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func DumpSecurityGroup(op *resources.DumpOperation, r *resources.Resource) error {
|
|
data := make(map[string]interface{})
|
|
data["id"] = r.ID
|
|
data["type"] = ec2.ResourceTypeSecurityGroup
|
|
data["raw"] = r.Obj
|
|
op.Dump.Resources = append(op.Dump.Resources, data)
|
|
return nil
|
|
}
|
|
|
|
func ListSecurityGroups(cloud fi.Cloud, clusterName string) ([]*resources.Resource, error) {
|
|
groups, err := DescribeSecurityGroups(cloud, clusterName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var resourceTrackers []*resources.Resource
|
|
|
|
for id, sg := range groups {
|
|
resourceTracker := &resources.Resource{
|
|
Name: FindName(sg.Tags),
|
|
ID: id,
|
|
Type: ec2.ResourceTypeSecurityGroup,
|
|
Deleter: DeleteSecurityGroup,
|
|
Dumper: DumpSecurityGroup,
|
|
Obj: sg,
|
|
Shared: !HasOwnedTag(ec2.ResourceTypeSecurityGroup+":"+id, sg.Tags, clusterName),
|
|
}
|
|
|
|
var blocks []string
|
|
blocks = append(blocks, "vpc:"+aws.StringValue(sg.VpcId))
|
|
|
|
resourceTracker.Blocks = blocks
|
|
|
|
resourceTrackers = append(resourceTrackers, resourceTracker)
|
|
}
|
|
|
|
return resourceTrackers, nil
|
|
}
|
|
|
|
func DescribeSecurityGroups(cloud fi.Cloud, clusterName string) (map[string]*ec2.SecurityGroup, error) {
|
|
c := cloud.(awsup.AWSCloud)
|
|
|
|
groups := make(map[string]*ec2.SecurityGroup)
|
|
glog.V(2).Infof("Listing EC2 SecurityGroups")
|
|
for _, filters := range buildEC2FiltersForCluster(clusterName) {
|
|
request := &ec2.DescribeSecurityGroupsInput{
|
|
Filters: filters,
|
|
}
|
|
response, err := c.EC2().DescribeSecurityGroups(request)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("error listing SecurityGroups: %v", err)
|
|
}
|
|
|
|
for _, group := range response.SecurityGroups {
|
|
groups[aws.StringValue(group.GroupId)] = group
|
|
}
|
|
}
|
|
|
|
return groups, nil
|
|
}
|