4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-19 14:33:30 +08:00

fixed ctime timer_delete timerid parameter check. (#6977)

* fixed ctime timer_delete timerid parameter check.
This commit is contained in:
geniusgogo 2023-02-27 09:59:45 +08:00 committed by GitHub
parent cdd2755bbd
commit ab7ab19be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -967,9 +967,15 @@ void timer_id_unlock()
rt_hw_spin_unlock(&_timer_id_lock); rt_hw_spin_unlock(&_timer_id_lock);
} }
struct timer_obj *timer_id_get(int timerid) struct timer_obj *timer_id_get(rt_ubase_t timerid)
{ {
struct timer_obj *timer; struct timer_obj *timer;
if (timerid < 0 || timerid >= TIMER_ID_MAX)
{
return NULL;
}
timer_id_lock(); timer_id_lock();
if (_g_timerid[timerid] == NULL) if (_g_timerid[timerid] == NULL)
{ {
@ -1071,16 +1077,26 @@ RTM_EXPORT(timer_create);
int timer_delete(timer_t timerid) int timer_delete(timer_t timerid)
{ {
struct timer_obj *timer; struct timer_obj *timer;
rt_ubase_t ktimerid;
ktimerid = (rt_ubase_t)timerid;
if (ktimerid < 0 || ktimerid >= TIMER_ID_MAX)
{
rt_set_errno(EINVAL);
return -1;
}
timer_id_lock(); timer_id_lock();
if (_g_timerid[(rt_ubase_t)timerid] == NULL) if (_g_timerid[ktimerid] == NULL)
{ {
timer_id_unlock(); timer_id_unlock();
rt_set_errno(EINVAL); rt_set_errno(EINVAL);
LOG_E("can not find timer!"); LOG_E("can not find timer!");
return -1; return -1;
} }
timer = _g_timerid[(rt_ubase_t)timerid]; timer = _g_timerid[ktimerid];
timer_id_put((rt_ubase_t)timerid); timer_id_put(ktimerid);
timer_id_unlock(); timer_id_unlock();
if (timer == RT_NULL) if (timer == RT_NULL)
{ {
@ -1132,9 +1148,11 @@ int timer_getoverrun(timer_t timerid)
*/ */
int timer_gettime(timer_t timerid, struct itimerspec *its) int timer_gettime(timer_t timerid, struct itimerspec *its)
{ {
struct timer_obj *timer = timer_id_get((rt_ubase_t)timerid); struct timer_obj *timer;
rt_uint32_t seconds, nanoseconds; rt_uint32_t seconds, nanoseconds;
timer = timer_id_get((rt_ubase_t)timerid);
if (timer == NULL) if (timer == NULL)
{ {
rt_set_errno(EINVAL); rt_set_errno(EINVAL);