Re: [syzbot] [kernel?] BUG: soft lockup in gate_timer_func

From: Edward Adam Davis

Date: Sat Aug 22 2026 - 23:23:36 EST


#syz test

diff --git a/net/sched/act_gate.c b/net/sched/act_gate.c
index fdbfcaa3e2ab..30bcf173274c 100644
--- a/net/sched/act_gate.c
+++ b/net/sched/act_gate.c
@@ -501,6 +501,14 @@ static int tcf_gate_init(struct net *net, struct nlattr *nla,
cycle = ktime_add_ns(cycle, entry->interval);
cycletime = cycle;
}
+
+ if (cycletime < 0 || cycletime > INT_MAX) {
+ NL_SET_ERR_MSG(extack, "'cycle_time' is too big");
+ err = -EINVAL;
+ spin_unlock_bh(&gact->tcf_lock);
+ goto err_free;
+ }
+
p->tcfg_cycletime = cycletime;
p->tcfg_cycletime_ext = cycletime_ext;