All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Horman <horms@kernel.org>
To: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Cc: intel-wired-lan@lists.osuosl.org, anthony.l.nguyen@intel.com,
	netdev@vger.kernel.org
Subject: Re: [PATCH iwl-net v2] ice: fix bound parser hash offset before reading packet data
Date: Thu, 3 Sep 2026 12:12:16 +0100	[thread overview]
Message-ID: <20260903111216.GM396647@horms.kernel.org> (raw)
In-Reply-To: <20260824132248.3396788-1-aleksandr.loktionov@intel.com>

On Mon, Aug 24, 2026 at 03:22:48PM +0200, Aleksandr Loktionov wrote:
> ice_rt_ho_set() uses the HO register as the starting offset of an
> ICE_GPR_HV_SIZE-byte memcpy() out of rt->pkt_buf. Potentially HO can
> be advanced by user-controlled data reachable through
> ice_parse_raw_rss_pattern() -> ice_parser_run() ->
> ice_parser_rt_execute() -> ice_rt_gpr_set() -> ice_rt_ho_set(), i.e. a
> VF-supplied raw RSS pattern (virt/rss.c), with no bound against the
> size of pkt_buf.
> 
> Clamp HO to the last offset from which ICE_GPR_HV_SIZE bytes can still
> be read out of pkt_buf, deriving the limit from sizeof(rt->pkt_buf)
> so it stays correct if the packet buffer layout changes.
> 
> ice_parser_rt_pktbuf_set() stores the caller's raw pkt_len in
> rt->pkt_len, even though it only ever copies min(ICE_PARSER_MAX_PKT_LEN,
> pkt_len) bytes into rt->pkt_buf. Both ice_parse_raw_rss_pattern() and
> ice_vc_fdir_parse_raw() pass a VF-supplied pkt_len of up to
> VIRTCHNL_MAX_SIZE_RAW_PACKET (1024), i.e. larger than
> ICE_PARSER_MAX_PKT_LEN (504). With HO now capped at 504, the
> "HO >= pkt_len" loop exit in ice_parser_rt_execute() would never be
> reached for such an oversized pkt_len. Store the already-clamped
> length instead, so rt->pkt_len always matches what was actually copied
> into rt->pkt_buf and the loop-exit check remains a valid bound
> regardless of the caller-supplied pkt_len.
> 
> Fixes: 9a4c07aaa0f5 ("ice: add parser execution main loop")
> Cc: stable@vger.kernel.org
> Cc: horms@kernel.org
> Signed-off-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
> ---
> v1 -> v2:
> - also clamp rt->pkt_len in ice_parser_rt_pktbuf_set() to the same
>   ICE_PARSER_MAX_PKT_LEN bound already used for the rt->pkt_buf copy,
>   so the "HO >= pkt_len" loop-exit in ice_parser_rt_execute() can't be
>   bypassed by an oversized pkt_len from the raw RSS/FDIR VF paths
>   (reported in review)
> - dropped Przemek's Reviewed-by since the patch changed

Thanks for the update.

Reviewed-by: Simon Horman <horms@kernel.org>


      reply	other threads:[~2026-09-03 11:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-24 13:22 [PATCH iwl-net v2] ice: fix bound parser hash offset before reading packet data Aleksandr Loktionov
2026-09-03 11:12 ` Simon Horman [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260903111216.GM396647@horms.kernel.org \
    --to=horms@kernel.org \
    --cc=aleksandr.loktionov@intel.com \
    --cc=anthony.l.nguyen@intel.com \
    --cc=intel-wired-lan@lists.osuosl.org \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.