sched: task: Fix a potential bug in nxtask_assign_pid()
Summary: - During reviewing sched_lock() in nxtask_assign_pid(), I noticed that g_pidhash is not protected by a critical section - Because g_pidhash is accessed in an interrupt context, it should be protected by a critical section. - Actually, nxsched_foreach(), nxsched_get_tcb() and so on use a critical section. Impact: - No impact Testing: - Tested with spresense:wifi (non-SMP) and spresense:wifi_smp Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
This commit is contained in:
parent
503780497a
commit
e277ac7a7f
@ -81,12 +81,13 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb)
|
|||||||
pid_t next_pid;
|
pid_t next_pid;
|
||||||
int hash_ndx;
|
int hash_ndx;
|
||||||
int tries;
|
int tries;
|
||||||
|
int ret = ERROR;
|
||||||
|
|
||||||
/* Disable pre-emption. This should provide sufficient protection
|
/* Protect the following operation with a critical section
|
||||||
* for the following operation.
|
* because g_pidhash is accessed from an interrupt context
|
||||||
*/
|
*/
|
||||||
|
|
||||||
sched_lock();
|
irqstate_t flags = enter_critical_section();
|
||||||
|
|
||||||
/* We'll try every allowable pid */
|
/* We'll try every allowable pid */
|
||||||
|
|
||||||
@ -121,17 +122,18 @@ static int nxtask_assign_pid(FAR struct tcb_s *tcb)
|
|||||||
#endif
|
#endif
|
||||||
tcb->pid = next_pid;
|
tcb->pid = next_pid;
|
||||||
|
|
||||||
sched_unlock();
|
ret = OK;
|
||||||
return OK;
|
goto errout;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
errout:
|
||||||
/* If we get here, then the g_pidhash[] table is completely full.
|
/* If we get here, then the g_pidhash[] table is completely full.
|
||||||
* We cannot allow another task to be started.
|
* We cannot allow another task to be started.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
sched_unlock();
|
leave_critical_section(flags);
|
||||||
return ERROR;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
|
Loading…
x
Reference in New Issue
Block a user