-
Notifications
You must be signed in to change notification settings - Fork 742
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filter out interfaces with no ip info #3047
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -604,6 +604,53 @@ func (cache *EC2InstanceMetadataCache) getENIMetadata(eniMAC string) (ENIMetadat | |
|
||
log.Debugf("Found ENI: %s, MAC %s, device %d", eniID, eniMAC, deviceNum) | ||
|
||
// Get IMDS fields for the interface | ||
macImdsFields, err := cache.imds.GetMACImdsFields(ctx, eniMAC) | ||
if err != nil { | ||
awsAPIErrInc("GetMACImdsFields", err) | ||
return ENIMetadata{}, err | ||
} | ||
ipInfoAvailable := false | ||
// Efa-only interfaces do not have any ipv4s or ipv6s associated with it. If we don't find any local-ipv4 or ipv6 info in imds we assume it to be efa-only interface and validate this later via ec2 call | ||
for _, field := range macImdsFields { | ||
if field == "local-ipv4s" { | ||
imdsIPv4s, err := cache.imds.GetLocalIPv4s(ctx, eniMAC) | ||
if err != nil { | ||
awsAPIErrInc("GetLocalIPv4s", err) | ||
return ENIMetadata{}, err | ||
} | ||
if len(imdsIPv4s) > 0 { | ||
ipInfoAvailable = true | ||
log.Debugf("Found IPv4 addresses associated with interface. This is not efa-only interface") | ||
break | ||
} | ||
} | ||
if field == "ipv6s" { | ||
imdsIPv6s, err := cache.imds.GetIPv6s(ctx, eniMAC) | ||
if err != nil { | ||
awsAPIErrInc("GetIPv6s", err) | ||
} else if len(imdsIPv6s) > 0 { | ||
ipInfoAvailable = true | ||
log.Debugf("Found IPv6 addresses associated with interface. This is not efa-only interface") | ||
break | ||
} | ||
} | ||
} | ||
|
||
if !ipInfoAvailable { | ||
return ENIMetadata{ | ||
ENIID: eniID, | ||
MAC: eniMAC, | ||
DeviceNumber: deviceNum, | ||
SubnetIPv4CIDR: "", | ||
IPv4Addresses: make([]*ec2.NetworkInterfacePrivateIpAddress, 0), | ||
IPv4Prefixes: make([]*ec2.Ipv4PrefixSpecification, 0), | ||
SubnetIPv6CIDR: "", | ||
IPv6Addresses: make([]*ec2.NetworkInterfaceIpv6Address, 0), | ||
IPv6Prefixes: make([]*ec2.Ipv6PrefixSpecification, 0), | ||
}, nil | ||
} | ||
|
||
// Get IPv4 and IPv6 addresses assigned to interface | ||
cidr, err := cache.imds.GetSubnetIPv4CIDRBlock(ctx, eniMAC) | ||
if err != nil { | ||
|
@@ -1356,9 +1403,16 @@ func (cache *EC2InstanceMetadataCache) DescribeAllENIs() (DescribeAllENIsResult, | |
if interfaceType == "trunk" { | ||
trunkENI = eniID | ||
} | ||
if interfaceType == "efa" { | ||
if interfaceType == "efa" || interfaceType == "efa-only" { | ||
efaENIs[eniID] = true | ||
} | ||
if interfaceType != "efa-only" { | ||
if len(eniMetadata.IPv4Addresses) == 0 && len(eniMetadata.IPv6Addresses) == 0 { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should this condition be a This is the only new Error we are introducing here. Do we strictly require this ? cc: @jayanthvn (this was introduced from the review comment). Rest of the change looks good to me with capturing EFA only instance. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are 2 cases,
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updated. We will not be returning error if we miss ipv6addresses to maintain the behavior There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, this reasoning sounds good to me. |
||
log.Errorf("Missing IP addresses from IMDS. Non efa-only interface should have IP address associated with it %s", eniID) | ||
outOfSyncErr := errors.New("DescribeAllENIs: No IP addresses found") | ||
return DescribeAllENIsResult{}, outOfSyncErr | ||
} | ||
} | ||
// Check IPv4 addresses | ||
logOutOfSyncState(eniID, eniMetadata.IPv4Addresses, ec2res.PrivateIpAddresses) | ||
tagMap[eniMetadata.ENIID] = convertSDKTagsToTags(ec2res.TagSet) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why we treat IPv4 and IPv6 differently.
If GetLocalIPv4s failed, we return error directly. If GetIPv6s failed, we didn't return error.
If there is no particular reason, we should refactor the logic & code to make it have similar structure/logic for ipv4&ipv6. (otherwise such difference will became a maintaince burden and could easily cause bugs when changes are made here)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@M00nF1sh We are not erroring out at missing ipv6 info in other parts of the code https://github.com/aws/amazon-vpc-cni-k8s/blob/master/pkg/awsutils/awsutils.go#L631. Did the same here to maintain consistency to same as earlier irrespective of this change.
we should add some context and comments around why it is different for ipv6