* [LTP] [PATCH v2] semctl: updates for multi worker testing.
@ 2026-04-14 16:49 Stephen Bertram via ltp
2026-04-14 17:15 ` [LTP] " linuxtestproject.agent
0 siblings, 1 reply; 2+ messages in thread
From: Stephen Bertram via ltp @ 2026-04-14 16:49 UTC (permalink / raw)
To: ltp; +Cc: Stephen Bertram
Changed semctl01, which required updates to
reduce interference and provide an allowance
for EINVAL and EIDRM failures.
Signed-off-by: Stephen Bertram <sbertram@redhat.com>
---
.../kernel/syscalls/ipc/semctl/semctl01.c | 91 +++++++++++++------
1 file changed, 61 insertions(+), 30 deletions(-)
diff --git a/testcases/kernel/syscalls/ipc/semctl/semctl01.c b/testcases/kernel/syscalls/ipc/semctl/semctl01.c
index 5bd675ab6..25c7ebc65 100644
--- a/testcases/kernel/syscalls/ipc/semctl/semctl01.c
+++ b/testcases/kernel/syscalls/ipc/semctl/semctl01.c
@@ -8,6 +8,7 @@
#define _GNU_SOURCE
#include <stdlib.h>
+#include <pthread.h>
#include "tst_safe_sysv_ipc.h"
#include "tst_test.h"
#include "lapi/sem.h"
@@ -18,14 +19,16 @@
#define NCHILD 5
#define SEMUN_CAST (union semun)
-static int sem_id = -1;
-static int sem_index;
+static __thread int sem_id = -1;
+static __thread int sem_index;
static struct semid_ds buf;
static struct seminfo ipc_buf;
static unsigned short array[PSEMS];
static struct sembuf sops;
static int pid_arr[NCHILD];
+static pthread_mutex_t sem_stat_lock = PTHREAD_MUTEX_INITIALIZER;
+
static void kill_all_children(void)
{
int j;
@@ -243,28 +246,36 @@ static struct tcases {
union semun arg;
void (*func_setup) ();
} tests[] = {
- {&sem_id, 0, IPC_STAT, func_stat, SEMUN_CAST & buf, NULL},
- {&sem_id, 0, IPC_SET, func_set, SEMUN_CAST & buf, set_setup},
- {&sem_id, 0, GETALL, func_gall, SEMUN_CAST array, NULL},
- {&sem_id, 4, GETNCNT, func_cnt, SEMUN_CAST & buf, cnt_setup},
- {&sem_id, 2, GETPID, func_pid, SEMUN_CAST & buf, pid_setup},
- {&sem_id, 2, GETVAL, func_gval, SEMUN_CAST & buf, NULL},
- {&sem_id, 4, GETZCNT, func_cnt, SEMUN_CAST & buf, cnt_setup},
- {&sem_id, 0, SETALL, func_sall, SEMUN_CAST array, sall_setup},
- {&sem_id, 4, SETVAL, func_sval, SEMUN_CAST INCVAL, NULL},
- {&sem_id, 0, IPC_INFO, func_iinfo, SEMUN_CAST & ipc_buf, NULL},
- {&sem_id, 0, SEM_INFO, func_sinfo, SEMUN_CAST & ipc_buf, NULL},
- {&sem_index, 0, SEM_STAT, func_sstat, SEMUN_CAST & buf, NULL},
- {&sem_id, 0, IPC_RMID, func_rmid, SEMUN_CAST & buf, NULL},
+ {NULL, 0, IPC_STAT, func_stat, SEMUN_CAST & buf, NULL},
+ {NULL, 0, IPC_SET, func_set, SEMUN_CAST & buf, set_setup},
+ {NULL, 0, GETALL, func_gall, SEMUN_CAST array, NULL},
+ {NULL, 4, GETNCNT, func_cnt, SEMUN_CAST & buf, cnt_setup},
+ {NULL, 2, GETPID, func_pid, SEMUN_CAST & buf, pid_setup},
+ {NULL, 2, GETVAL, func_gval, SEMUN_CAST & buf, NULL},
+ {NULL, 4, GETZCNT, func_cnt, SEMUN_CAST & buf, cnt_setup},
+ {NULL, 0, SETALL, func_sall, SEMUN_CAST array, sall_setup},
+ {NULL, 4, SETVAL, func_sval, SEMUN_CAST INCVAL, NULL},
+ {NULL, 0, IPC_INFO, func_iinfo, SEMUN_CAST & ipc_buf, NULL},
+ {NULL, 0, SEM_INFO, func_sinfo, SEMUN_CAST & ipc_buf, NULL},
+ {NULL, 0, SEM_STAT, func_sstat, SEMUN_CAST & buf, NULL},
+ {NULL, 0, IPC_RMID, func_rmid, SEMUN_CAST & buf, NULL},
};
static void verify_semctl(unsigned int n)
{
struct tcases *tc = &tests[n];
- int rval;
+ int rval, sid;
+ int retries = 5;
+
+ /* Resolve sem id: SEM_STAT uses sem_index, others use sem_id */
+ if (tc->cmd == SEM_STAT)
+ sid = sem_index;
+ else {
+ sid = sem_id;
+ if (sid == -1)
+ sem_id = sid = SAFE_SEMGET(IPC_PRIVATE, PSEMS, IPC_CREAT | IPC_EXCL | SEM_RA);
+ }
- if (sem_id == -1)
- sem_id = SAFE_SEMGET(IPC_PRIVATE, PSEMS, IPC_CREAT | IPC_EXCL | SEM_RA);
if (tc->func_setup) {
switch (tc->cmd) {
case GETNCNT:
@@ -279,21 +290,41 @@ static void verify_semctl(unsigned int n)
}
}
- rval = SAFE_SEMCTL(*(tc->semid), tc->semnum, tc->cmd, tc->arg);
- switch (tc->cmd) {
- case GETNCNT:
- case GETZCNT:
- case GETPID:
- case GETVAL:
- case IPC_INFO:
- case SEM_STAT:
+ /* SEM_STAT: get index under lock, call SEM_STAT without lock, retry on EIDRM and EINVAL */
+ if (tc->cmd == SEM_STAT) {
+ do {
+ pthread_mutex_lock(&sem_stat_lock);
+ sem_index = semctl(0, 0, IPC_INFO, (union semun)&ipc_buf);
+ pthread_mutex_unlock(&sem_stat_lock);
+ if (sem_index < 0)
+ tst_brk(TBROK | TERRNO, "semctl(0, 0, IPC_INFO)");
+ rval = semctl(sem_index, 0, tc->cmd, tc->arg);
+ if (rval >= 0)
+ break;
+ if ((errno != EIDRM && errno != EINVAL) || --retries <= 0)
+ tst_brk(TBROK | TERRNO, "semctl(SEM_STAT)");
+ } while (1);
tc->func_test(rval);
- break;
- default:
+ } else if (tc->cmd == IPC_RMID) {
+ pthread_mutex_lock(&sem_stat_lock);
+ SAFE_SEMCTL(sid, tc->semnum, tc->cmd, tc->arg);
+ pthread_mutex_unlock(&sem_stat_lock);
tc->func_test();
- break;
+ } else {
+ rval = SAFE_SEMCTL(sid, tc->semnum, tc->cmd, tc->arg);
+ switch (tc->cmd) {
+ case GETNCNT:
+ case GETZCNT:
+ case GETPID:
+ case GETVAL:
+ case IPC_INFO:
+ tc->func_test(rval);
+ break;
+ default:
+ tc->func_test();
+ break;
+ }
}
-
if (tc->cmd == GETNCNT || tc->cmd == GETZCNT)
kill_all_children();
}
--
2.53.0
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [LTP] semctl: updates for multi worker testing.
2026-04-14 16:49 [LTP] [PATCH v2] semctl: updates for multi worker testing Stephen Bertram via ltp
@ 2026-04-14 17:15 ` linuxtestproject.agent
0 siblings, 0 replies; 2+ messages in thread
From: linuxtestproject.agent @ 2026-04-14 17:15 UTC (permalink / raw)
To: Stephen Bertram; +Cc: ltp
Hi Stephen,
On Tue, 14 Apr 2026, Stephen Bertram wrote:
> semctl: updates for multi worker testing.
>
> Changed semctl01, which required updates to
> reduce interference and provide an allowance
> for EINVAL and EIDRM failures.
The body should say *why* multi-worker support is needed — what harness
or runner exercises this in parallel, or what failure prompted the change.
> -static int sem_id = -1;
> -static int sem_index;
> +static __thread int sem_id = -1;
> +static __thread int sem_index;
> static struct semid_ds buf;
> static struct seminfo ipc_buf;
> static unsigned short array[PSEMS];
> static struct sembuf sops;
> static int pid_arr[NCHILD];
buf, ipc_buf, array, sops, pid_arr are still plain globals. Making only
sem_id/sem_index TLS leaves all the helper functions that read/write
these globals unsafe for concurrent use, so the parallelisation is
incomplete.
[...]
> + if (sid == -1)
> + sem_id = sid = SAFE_SEMGET(IPC_PRIVATE, PSEMS,
> + IPC_CREAT | IPC_EXCL | SEM_RA);
cleanup() runs in the main thread and only sees the main thread's TLS
sem_id. Worker threads that hit this path will leak their semaphore sets.
Either track all allocated IDs in a shared, mutex-protected list, or drop
__thread and keep the test single-threaded.
Also note struct tcases::semid is now always NULL and never read; the
field can be removed.
---
Note:
Our agent completed the review of the patch. The full review can be
found at: https://patchwork.ozlabs.org/project/ltp/list/?series=499874
The agent can sometimes produce false positives although often its
findings are genuine. If you find issues with the review, please
comment this email or ignore the suggestions.
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-04-14 17:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-14 16:49 [LTP] [PATCH v2] semctl: updates for multi worker testing Stephen Bertram via ltp
2026-04-14 17:15 ` [LTP] " linuxtestproject.agent
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox