netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Prevent potential write out of bounds
@ 2023-09-01  1:04 joao
  2023-09-01  1:04 ` [PATCH 1/2] Make loop indexes unsigned joao
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: joao @ 2023-09-01  1:04 UTC (permalink / raw)
  To: pablo, netfilter-devel, coreteam, netdev, linux-kernel, joao
  Cc: kadlec, fw, davem, edumazet, kuba, pabeni, rkannoth,
	wojciech.drewek, steen.hegenlund, keescook, Joao Moreira

From: Joao Moreira <joao.moreira@intel.com>

The function flow_rule_alloc in net/core/flow_offload.c [2] gets an
unsigned int num_actions (line 10) and later traverses the actions in
the rule (line 24) setting hw.stats to FLOW_ACTION_HW_STATS_DONT_CARE.

Within the same file, the loop in the line 24 compares a signed int
(i) to an unsigned int (num_actions), and then uses i as an array
index. If an integer overflow happens, then the array within the loop
is wrongly indexed, causing a write out of bounds.

After checking with maintainers, it seems that the front-end caps the
maximum value of num_action, thus it is not possible to reach the given
write out of bounds, yet, still, to prevent disasters it is better to
fix the signedness here.

Similarly, also it is also good to ensure that an overflow won't happen
in net/netfilter/nf_tables_offload.c's function nft_flow_rule_create by
checking that num_actions is not negative.

Tks,

Joao Moreira (2):
  Make loop indexes unsigned
  Ensure num_actions is not a negative

 net/core/flow_offload.c           | 4 ++--
 net/netfilter/nf_tables_offload.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.41.0


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-09-01  8:58 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01  1:04 [PATCH 0/2] Prevent potential write out of bounds joao
2023-09-01  1:04 ` [PATCH 1/2] Make loop indexes unsigned joao
2023-09-01  1:04 ` [PATCH 2/2] Ensure num_actions is not a negative joao
2023-09-01  8:58   ` Pablo Neira Ayuso
2023-09-01  1:28 ` [PATCH 0/2] Prevent potential write out of bounds Jakub Kicinski
2023-09-01  5:46   ` Joao Moreira
2023-09-01  8:15   ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).