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
Updated by Balachandran Sivakumar over 2 years ago
- Assignee changed from OISF Dev to Balachandran Sivakumar
Updated by Victor Julien over 1 year ago
- Status changed from New to Resolved
- Assignee changed from Balachandran Sivakumar to Jeff Lucovsky
- Target version changed from TBD to 7.0.0
- Label Needs backport to 6.0 added
Updated by Jeff Lucovsky over 1 year ago
This commit has already been backported to master-6.0.x: e25082c08493385850c3d4795d7eb92af07a1aa1
Updated by Jeff Lucovsky about 1 year ago
- Status changed from Resolved to Closed
Actions