Skip to content

Commit 2565fa9

Browse files
committed
internal/object: Fix gosec G115
The conversion of an int64 to an uint64 was marked as a potential overflow, since it might lose precision. However, in this case this should be of no issue since only the binary representation matters, not the actual numeric value. So a "nolint" tag was added next to an explanatory comment. Fixes #289.
1 parent 114c1be commit 2565fa9

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

internal/object/object.go

+15-1
Original file line numberDiff line numberDiff line change
@@ -269,8 +269,22 @@ func (o *Object) EvalExists(key string) bool {
269269
func ID(source int64, tags map[string]string) types.Binary {
270270
h := sha256.New()
271271

272+
// The following conversion of an i <- int64\uint64 should not be an overflow in this case.
273+
//
274+
// First, some IDs should not be able to be negative as their PostgreSQL type is unsigned as well. More important,
275+
// we are not interested in the number itself, but its binary representation. So the overflow is of no issue.
276+
//
277+
// Take the following example of a negative int64 number.
278+
//
279+
// var x = int64(-100)
280+
// var xu = uint64(x)
281+
// var xui = int64(xu)
282+
// fmt.Printf("%[1]d,%[1]x\t%[2]d,%[2]x\t%[3]d,%[3]x", x, xu, xui)
283+
//
284+
// Resulting in "100,-64 18446744073709551516,ffffffffffffff9c -100,-64", effectively the same number.
285+
272286
sourceBytes := make([]byte, 8)
273-
binary.BigEndian.PutUint64(sourceBytes, uint64(source))
287+
binary.BigEndian.PutUint64(sourceBytes, uint64(source)) //nolint:gosec // G115, comment above
274288
h.Write(sourceBytes)
275289

276290
type KV struct {

0 commit comments

Comments
 (0)