Skip to content

Commit 12422da

Browse files
committed
Add regex check for gateway IP
1 parent 9ac4bb6 commit 12422da

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

contivModel.go

+5
Original file line numberDiff line numberDiff line change
@@ -1864,6 +1864,11 @@ 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
}

network.json

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
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)