Skip to content

Commit 32e7350

Browse files
xiaoleiwang123456thangqn-ampere
authored andcommitted
net: stmmac: move the EST lock to struct stmmac_priv
[ Upstream commit 36ac9e7 ] Reinitialize the whole EST structure would also reset the mutex lock which is embedded in the EST structure, and then trigger the following warning. To address this, move the lock to struct stmmac_priv. We also need to reacquire the mutex lock when doing this initialization. DEBUG_LOCKS_WARN_ON(lock->magic != lock) WARNING: CPU: 3 PID: 505 at kernel/locking/mutex.c:587 __mutex_lock+0xd84/0x1068 Modules linked in: CPU: 3 PID: 505 Comm: tc Not tainted 6.9.0-rc6-00053-g0106679839f7-dirty openbmc#29 Hardware name: NXP i.MX8MPlus EVK board (DT) pstate: 60000005 (nZCv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--) pc : __mutex_lock+0xd84/0x1068 lr : __mutex_lock+0xd84/0x1068 sp : ffffffc0864e3570 x29: ffffffc0864e3570 x28: ffffffc0817bdc78 x27: 0000000000000003 x26: ffffff80c54f1808 x25: ffffff80c9164080 x24: ffffffc080d723ac x23: 0000000000000000 x22: 0000000000000002 x21: 0000000000000000 x20: 0000000000000000 x19: ffffffc083bc3000 x18: ffffffffffffffff x17: ffffffc08117b080 x16: 0000000000000002 x15: ffffff80d2d40000 x14: 00000000000002da x13: ffffff80d2d404b8 x12: ffffffc082b5a5c8 x11: ffffffc082bca680 x10: ffffffc082bb2640 x9 : ffffffc082bb2698 x8 : 0000000000017fe8 x7 : c0000000ffffefff x6 : 0000000000000001 x5 : ffffff8178fe0d48 x4 : 0000000000000000 x3 : 0000000000000027 x2 : ffffff8178fe0d50 x1 : 0000000000000000 x0 : 0000000000000000 Call trace: __mutex_lock+0xd84/0x1068 mutex_lock_nested+0x28/0x34 tc_setup_taprio+0x118/0x68c stmmac_setup_tc+0x50/0xf0 taprio_change+0x868/0xc9c Fixes: b2aae65 ("net: stmmac: add mutex lock to protect est parameters") Signed-off-by: Xiaolei Wang <xiaolei.wang@windriver.com> Reviewed-by: Simon Horman <horms@kernel.org> Reviewed-by: Serge Semin <fancer.lancer@gmail.com> Reviewed-by: Andrew Halaney <ahalaney@redhat.com> Link: https://lore.kernel.org/r/20240513014346.1718740-2-xiaolei.wang@windriver.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> (cherry picked from commit 36ac9e7) [Harshit: CVE-2024-38594; resolved conflicts due to missing commit: 5ca63ff ("net: stmmac: Report taprio offload status") in 6.6.y] Signed-off-by: Harshit Mogalapalli <harshit.m.mogalapalli@oracle.com> Signed-off-by: Vegard Nossum <vegard.nossum@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent d1deaf9 commit 32e7350

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

drivers/net/ethernet/stmicro/stmmac/stmmac.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,8 @@ struct stmmac_priv {
248248
struct stmmac_extra_stats xstats ____cacheline_aligned_in_smp;
249249
struct stmmac_safety_stats sstats;
250250
struct plat_stmmacenet_data *plat;
251+
/* Protect est parameters */
252+
struct mutex est_lock;
251253
struct dma_features dma_cap;
252254
struct stmmac_counters mmc;
253255
int hw_cap_support;

drivers/net/ethernet/stmicro/stmmac/stmmac_ptp.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
7070
/* If EST is enabled, disabled it before adjust ptp time. */
7171
if (priv->plat->est && priv->plat->est->enable) {
7272
est_rst = true;
73-
mutex_lock(&priv->plat->est->lock);
73+
mutex_lock(&priv->est_lock);
7474
priv->plat->est->enable = false;
7575
stmmac_est_configure(priv, priv->ioaddr, priv->plat->est,
7676
priv->plat->clk_ptp_rate);
77-
mutex_unlock(&priv->plat->est->lock);
77+
mutex_unlock(&priv->est_lock);
7878
}
7979

8080
write_lock_irqsave(&priv->ptp_lock, flags);
@@ -87,7 +87,7 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
8787
ktime_t current_time_ns, basetime;
8888
u64 cycle_time;
8989

90-
mutex_lock(&priv->plat->est->lock);
90+
mutex_lock(&priv->est_lock);
9191
priv->ptp_clock_ops.gettime64(&priv->ptp_clock_ops, &current_time);
9292
current_time_ns = timespec64_to_ktime(current_time);
9393
time.tv_nsec = priv->plat->est->btr_reserve[0];
@@ -104,7 +104,7 @@ static int stmmac_adjust_time(struct ptp_clock_info *ptp, s64 delta)
104104
priv->plat->est->enable = true;
105105
ret = stmmac_est_configure(priv, priv->ioaddr, priv->plat->est,
106106
priv->plat->clk_ptp_rate);
107-
mutex_unlock(&priv->plat->est->lock);
107+
mutex_unlock(&priv->est_lock);
108108
if (ret)
109109
netdev_err(priv->dev, "failed to configure EST\n");
110110
}

drivers/net/ethernet/stmicro/stmmac/stmmac_tc.c

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -984,17 +984,19 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
984984
if (!plat->est)
985985
return -ENOMEM;
986986

987-
mutex_init(&priv->plat->est->lock);
987+
mutex_init(&priv->est_lock);
988988
} else {
989+
mutex_lock(&priv->est_lock);
989990
memset(plat->est, 0, sizeof(*plat->est));
991+
mutex_unlock(&priv->est_lock);
990992
}
991993

992994
size = qopt->num_entries;
993995

994-
mutex_lock(&priv->plat->est->lock);
996+
mutex_lock(&priv->est_lock);
995997
priv->plat->est->gcl_size = size;
996998
priv->plat->est->enable = qopt->cmd == TAPRIO_CMD_REPLACE;
997-
mutex_unlock(&priv->plat->est->lock);
999+
mutex_unlock(&priv->est_lock);
9981000

9991001
for (i = 0; i < size; i++) {
10001002
s64 delta_ns = qopt->entries[i].interval;
@@ -1025,7 +1027,7 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
10251027
priv->plat->est->gcl[i] = delta_ns | (gates << wid);
10261028
}
10271029

1028-
mutex_lock(&priv->plat->est->lock);
1030+
mutex_lock(&priv->est_lock);
10291031
/* Adjust for real system time */
10301032
priv->ptp_clock_ops.gettime64(&priv->ptp_clock_ops, &current_time);
10311033
current_time_ns = timespec64_to_ktime(current_time);
@@ -1044,7 +1046,7 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
10441046
priv->plat->est->ctr[1] = (u32)ctr;
10451047

10461048
if (fpe && !priv->dma_cap.fpesel) {
1047-
mutex_unlock(&priv->plat->est->lock);
1049+
mutex_unlock(&priv->est_lock);
10481050
return -EOPNOTSUPP;
10491051
}
10501052

@@ -1055,7 +1057,7 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
10551057

10561058
ret = stmmac_est_configure(priv, priv->ioaddr, priv->plat->est,
10571059
priv->plat->clk_ptp_rate);
1058-
mutex_unlock(&priv->plat->est->lock);
1060+
mutex_unlock(&priv->est_lock);
10591061
if (ret) {
10601062
netdev_err(priv->dev, "failed to configure EST\n");
10611063
goto disable;
@@ -1072,11 +1074,11 @@ static int tc_setup_taprio(struct stmmac_priv *priv,
10721074

10731075
disable:
10741076
if (priv->plat->est) {
1075-
mutex_lock(&priv->plat->est->lock);
1077+
mutex_lock(&priv->est_lock);
10761078
priv->plat->est->enable = false;
10771079
stmmac_est_configure(priv, priv->ioaddr, priv->plat->est,
10781080
priv->plat->clk_ptp_rate);
1079-
mutex_unlock(&priv->plat->est->lock);
1081+
mutex_unlock(&priv->est_lock);
10801082
}
10811083

10821084
priv->plat->fpe_cfg->enable = false;

include/linux/stmmac.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ struct stmmac_axi {
117117

118118
#define EST_GCL 1024
119119
struct stmmac_est {
120-
struct mutex lock;
121120
int enable;
122121
u32 btr_reserve[2];
123122
u32 btr_offset[2];

0 commit comments

Comments
 (0)