[lvc-project] [PATCH] net: dsa: sja1105: fix division by zero in sja1105_tas_set_runtime_params()
Paolo Abeni
pabeni at redhat.com
Thu Apr 16 13:09:47 MSK 2026
On 4/13/26 10:51 AM, Alexander.Chesnokov at kaspersky.com wrote:
> From: Alexander Chesnokov <Alexander.Chesnokov at kaspersky.com>
>
> If taprio offload is configured such that none of the ports' base_time
> is less than S64_MAX (the initial value of earliest_base_time), then
> its_cycle_time remains zero and is passed to future_base_time() as
> cycle_time, causing division by zero in div_s64().
>
> Add a check for its_cycle_time being zero before calling
> future_base_time() and return -EINVAL.
>
> Found by Linux Verification Center (linuxtesting.org) with SVACE.
>
> Fixes: 86db36a347b4 ("net: dsa: sja1105: Implement state machine for TAS with PTP clock source")
> Cc: stable at vger.kernel.org
>
No empty lines in the tag area.
> Signed-off-by: Alexander Chesnokov <Alexander.Chesnokov at kaspersky.com>
> ---
> drivers/net/dsa/sja1105/sja1105_tas.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/dsa/sja1105/sja1105_tas.c b/drivers/net/dsa/sja1105/sja1105_tas.c
> index e6153848a950..ce4b544a2b9c 100644
> --- a/drivers/net/dsa/sja1105/sja1105_tas.c
> +++ b/drivers/net/dsa/sja1105/sja1105_tas.c
> @@ -62,6 +62,9 @@ static int sja1105_tas_set_runtime_params(struct sja1105_private *priv)
> if (!tas_data->enabled)
> return 0;
>
> + if (!its_cycle_time)
> + return -EINVAL;
Sashiko says:
Is this division by zero reachable without this check?
When all ports have base_time == S64_MAX, earliest_base_time and
latest_base_time are both S64_MAX. When future_base_time(S64_MAX, 0,
S64_MAX) is called, it returns early because base_time >= now (S64_MAX
>= S64_MAX), avoiding the division.
Could this new error path cause an actual division by zero later?
When returning -EINVAL here, tas_data->enabled is already set to true,
but tas_data->max_cycle_time is left uninitialized (0).
If sja1105_tas_state_machine() runs later, it will pass this
max_cycle_time as the cycle_time argument to future_base_time(). Since 0
>= now + 1s is false, it proceeds to call div_s64() with a zero divisor.
/P
More information about the lvc-project
mailing list