Skip to content

Commit fbf8dca

Browse files
committed
Merge pull request contiv#14 from DivyaVavili/net_range_regex
Regex check change for Network range and Gateway IP
2 parents fb765ba + 12422da commit fbf8dca

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

contivModel.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -1864,11 +1864,16 @@ func ValidateNetwork(obj *Network) error {
18641864
return errors.New("encap string invalid format")
18651865
}
18661866

1867+
gatewayMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})?$")
1868+
if gatewayMatch.MatchString(obj.Gateway) == false {
1869+
return errors.New("gateway string invalid format")
1870+
}
1871+
18671872
if len(obj.NetworkName) > 64 {
18681873
return errors.New("networkName string too long")
18691874
}
18701875

1871-
subnetMatch := regexp.MustCompile("^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?/[0-9]{1,2}?)$")
1876+
subnetMatch := regexp.MustCompile("^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$")
18721877
if subnetMatch.MatchString(obj.Subnet) == false {
18731878
return errors.New("subnet string invalid format")
18741879
}

network.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@
3030
},
3131
"subnet": {
3232
"type": "string",
33-
"format": "^([0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?.[0-9]{1,3}?/[0-9]{1,2}?)$",
33+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})(\\\\-(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9]))?/(3[0-1]|2[0-9]|1[0-9]|[1-9])$",
3434
"title": "Subnet",
3535
"showSummary": true
3636
},
3737
"gateway": {
3838
"type": "string",
39+
"format": "^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])(\\\\.(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9]?[0-9])){3})?$",
3940
"title": "Gateway",
4041
"showSummary": true
4142
}

0 commit comments

Comments
 (0)