Skip to content

Commit c3cd761

Browse files
committed
Fix gosec and detected issues
1 parent cbee36f commit c3cd761

File tree

3 files changed

+37
-12
lines changed

3 files changed

+37
-12
lines changed

goerrcheck.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ echo -e "${BLUE}Finding all unchecked errors${NC}"
2525
if ! [ -x "$(command -v errcheck)" ]
2626
then
2727
echo -e "${BLUE}Installing errcheck ${NC}"
28-
GO111MODULE=off go get github.com/kisielk/errcheck
28+
GO111MODULE=on go install github.com/kisielk/errcheck@latest
2929
fi
3030

3131

http/router_utils.go

+35-10
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,15 @@ func ReadOrganizationID(writer http.ResponseWriter, request *http.Request, auth
192192
return 0, false
193193
}
194194

195-
successful := CheckPermissions(writer, request, ctypes.OrgID(organizationID), auth)
195+
orgID, err := types.Uint64ToUint32(organizationID)
196+
if err != nil {
197+
HandleOrgIDError(writer, err)
198+
return 0, false
199+
}
196200

197-
return ctypes.OrgID(organizationID), successful
201+
successful := CheckPermissions(writer, request, ctypes.OrgID(orgID), auth)
202+
203+
return ctypes.OrgID(orgID), successful
198204
}
199205

200206
// ReadClusterNames does the same as `readClusterName`, except for multiple clusters.
@@ -223,6 +229,30 @@ func ReadClusterNames(writer http.ResponseWriter, request *http.Request) ([]ctyp
223229
return clusterNamesConverted, true
224230
}
225231

232+
// parseAndValidateOrgID parses and validates a single organization ID string.
233+
func parseAndValidateOrgID(writer http.ResponseWriter, orgStr string) (ctypes.OrgID, bool) {
234+
v, err := strconv.ParseUint(orgStr, 10, 64)
235+
if err != nil {
236+
handleOrgIDParsingError(writer, orgStr, "integer array expected")
237+
return 0, false
238+
}
239+
orgInt, err := types.Uint64ToUint32(v)
240+
if err != nil {
241+
handleOrgIDParsingError(writer, orgStr, "integer array expected")
242+
return 0, false
243+
}
244+
return ctypes.OrgID(orgInt), true
245+
}
246+
247+
// handleOrgIDParsingError handles the error for parsing organization IDs.
248+
func handleOrgIDParsingError(writer http.ResponseWriter, orgStr, errString string) {
249+
types.HandleServerError(writer, &types.RouterParsingError{
250+
ParamName: "organizations",
251+
ParamValue: orgStr,
252+
ErrString: errString,
253+
})
254+
}
255+
226256
// ReadOrganizationIDs does the same as `readOrganizationID`, except for multiple organizations.
227257
func ReadOrganizationIDs(writer http.ResponseWriter, request *http.Request) ([]ctypes.OrgID, bool) {
228258
organizationsParam, err := GetRouterParam(request, "organizations")
@@ -233,16 +263,11 @@ func ReadOrganizationIDs(writer http.ResponseWriter, request *http.Request) ([]c
233263

234264
organizationsConverted := make([]ctypes.OrgID, 0)
235265
for _, orgStr := range SplitRequestParamArray(organizationsParam) {
236-
orgInt, err := strconv.ParseUint(orgStr, 10, 64)
237-
if err != nil {
238-
types.HandleServerError(writer, &types.RouterParsingError{
239-
ParamName: "organizations",
240-
ParamValue: orgStr,
241-
ErrString: "integer array expected",
242-
})
266+
orgID, ok := parseAndValidateOrgID(writer, orgStr)
267+
if !ok {
243268
return []ctypes.OrgID{}, false
244269
}
245-
organizationsConverted = append(organizationsConverted, ctypes.OrgID(orgInt))
270+
organizationsConverted = append(organizationsConverted, orgID)
246271
}
247272

248273
return organizationsConverted, true

migrations/errors.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ func regexGetNthMatch(regexStr string, nMatch uint, str string) (string, error)
177177
}
178178

179179
matches := regex.FindStringSubmatch(str)
180-
if len(matches) < int(nMatch+1) {
180+
if uint(len(matches)) < nMatch+1 {
181181
return "", errors.New("regexGetNthMatch unable to find match")
182182
}
183183

0 commit comments

Comments
 (0)