Actions
Bug #5186
closedtenant_id should have consistent data type across all structs
Affected Versions:
Effort:
Difficulty:
Label:
Needs backport to 6.0
Description
tenant_id is defined as an int in some structures and as uint32_t in some structures. In some edge case values of tenant_id (For eg. 2^32), this can cause problems.
Defined as uint32_t in :
DetectEngineThreadCtx
DetectEngineTenantMapping
Flow
PcapPacketVars_
Defined as int in :
DetectEngineCtx
PcapFiles
param in DetectEngineGetByTenantId(...)
param in DetectEngineLoadTenantBlocking(...)
Actual:
Inconsistent data type for tenant_id across the sources
Expected:
Use a consistent data type for tenant_id across the sources
Actions