Skip to content

Commit 5e73345

Browse files
check the error when checking if cidrs intersect
1 parent bcf5a72 commit 5e73345

File tree

2 files changed

+4
-24
lines changed

2 files changed

+4
-24
lines changed

pkg/sdn/api/validation/validation.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ func SetDefaultClusterNetwork(cn sdnapi.ClusterNetwork) {
2222

2323
//intersect tests two CIDR addresses to see if the first contains the second
2424
func intersect(cidr1, cidr2 string) bool {
25-
_, net1, _ := net.ParseCIDR(cidr1)
25+
_, net1, err := net.ParseCIDR(cidr1)
26+
if err != nil {
27+
return false
28+
}
2629
_, net2, err := net.ParseCIDR(cidr2)
2730
if err != nil {
2831
//cidr2 was not a cidr address which will be caught later

pkg/sdn/plugin/master.go

-23
Original file line numberDiff line numberDiff line change
@@ -150,12 +150,6 @@ func (master *OsdnMaster) checkClusterNetworkAgainstClusterObjects() error {
150150
func clusterNetworkChanged(obj *osapi.ClusterNetwork, old *osapi.ClusterNetwork) (bool, error) {
151151
changed := false
152152

153-
if !clusterDefEquals(old.ClusterNetworks, obj.ClusterNetworks) {
154-
//KEYWORD
155-
//Not sure what to do here...
156-
157-
//A valid change should be splitting a network into its smaller components
158-
}
159153

160154
if old.Network != obj.Network {
161155
changed = true
@@ -190,20 +184,3 @@ func clusterNetworkChanged(obj *osapi.ClusterNetwork, old *osapi.ClusterNetwork)
190184

191185
return changed, nil
192186
}
193-
194-
func clusterDefEquals(obj, old []osapi.ClusterNetworkEntry) bool {
195-
if obj == nil && old == nil {
196-
//this should never happen
197-
return true
198-
}
199-
if (obj == nil || old == nil) || (len(obj) != len(old)) {
200-
//first case should never happen
201-
return false
202-
}
203-
for i := range old {
204-
if old[i] != obj[i] {
205-
return false
206-
}
207-
}
208-
return true
209-
}

0 commit comments

Comments
 (0)