[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 11/28] bsd-user: Implement getgroups(2) and setgroups(2) syste
From: |
Karim Taha |
Subject: |
[PATCH v3 11/28] bsd-user: Implement getgroups(2) and setgroups(2) system calls. |
Date: |
Mon, 18 Sep 2023 01:22:28 +0300 |
From: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com>
---
bsd-user/bsd-proc.h | 44 +++++++++++++++++++++++++++++++++++
bsd-user/freebsd/os-syscall.c | 9 +++++++
2 files changed, 53 insertions(+)
diff --git a/bsd-user/bsd-proc.h b/bsd-user/bsd-proc.h
index b6225e520e..7b25aa1982 100644
--- a/bsd-user/bsd-proc.h
+++ b/bsd-user/bsd-proc.h
@@ -41,4 +41,48 @@ static inline abi_long do_bsd_exit(void *cpu_env, abi_long
arg1)
return 0;
}
+/* getgroups(2) */
+static inline abi_long do_bsd_getgroups(abi_long gidsetsize, abi_long arg2)
+{
+ abi_long ret;
+ uint32_t *target_grouplist;
+ g_autofree gid_t *grouplist;
+ int i;
+
+ grouplist = g_try_new(gid_t, gidsetsize);
+ ret = get_errno(getgroups(gidsetsize, grouplist));
+ if (gidsetsize != 0) {
+ if (!is_error(ret)) {
+ target_grouplist = lock_user(VERIFY_WRITE, arg2, gidsetsize * 2,
0);
+ if (!target_grouplist) {
+ return -TARGET_EFAULT;
+ }
+ for (i = 0; i < ret; i++) {
+ target_grouplist[i] = tswap32(grouplist[i]);
+ }
+ unlock_user(target_grouplist, arg2, gidsetsize * 2);
+ }
+ }
+ return ret;
+}
+
+/* setgroups(2) */
+static inline abi_long do_bsd_setgroups(abi_long gidsetsize, abi_long arg2)
+{
+ uint32_t *target_grouplist;
+ g_autofree gid_t *grouplist;
+ int i;
+
+ grouplist = g_try_new(gid_t, gidsetsize);
+ target_grouplist = lock_user(VERIFY_READ, arg2, gidsetsize * 2, 1);
+ if (!target_grouplist) {
+ return -TARGET_EFAULT;
+ }
+ for (i = 0; i < gidsetsize; i++) {
+ grouplist[i] = tswap32(target_grouplist[i]);
+ }
+ unlock_user(target_grouplist, arg2, 0);
+ return get_errno(setgroups(gidsetsize, grouplist));
+}
+
#endif /* !BSD_PROC_H_ */
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index fa60df529e..535e6287bd 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -223,6 +223,15 @@ static abi_long freebsd_syscall(void *cpu_env, int num,
abi_long arg1,
ret = do_bsd_exit(cpu_env, arg1);
break;
+ case TARGET_FREEBSD_NR_getgroups: /* getgroups(2) */
+ ret = do_bsd_getgroups(arg1, arg2);
+ break;
+
+ case TARGET_FREEBSD_NR_setgroups: /* setgroups(2) */
+ ret = do_bsd_setgroups(arg1, arg2);
+ break;
+
+
/*
* File system calls.
*/
--
2.42.0
- [PATCH v3 01/28] bsd-user: define TARGET_RFSPAWN for rfork to use vfork(2) semantics, and fix RLIM_INFINITY, (continued)
- [PATCH v3 01/28] bsd-user: define TARGET_RFSPAWN for rfork to use vfork(2) semantics, and fix RLIM_INFINITY, Karim Taha, 2023/09/17
- [PATCH v3 02/28] bsd-user: Define procctl(2) related structs, Karim Taha, 2023/09/17
- [PATCH v3 03/28] bsd-user: Implement host_to_target_siginfo., Karim Taha, 2023/09/17
- [PATCH v3 04/28] bsd-user: Add freebsd_exec_common and do_freebsd_procctl to qemu.h., Karim Taha, 2023/09/17
- [PATCH v3 05/28] bsd-user: add extern declarations for bsd-proc.c conversion functions, Karim Taha, 2023/09/17
- [PATCH v3 07/28] bsd-user: Implement target_to_host_rlim and host_to_target_rlim conversion., Karim Taha, 2023/09/17
- [PATCH v3 06/28] bsd-user: Implement target_to_host_resource conversion function, Karim Taha, 2023/09/17
- [PATCH v3 08/28] bsd-user: Implement host_to_target_rusage and host_to_target_wrusage., Karim Taha, 2023/09/17
- [PATCH v3 09/28] bsd-user: Implement host_to_target_waitstatus conversion., Karim Taha, 2023/09/17
- [PATCH v3 10/28] bsd-user: Get number of cpus., Karim Taha, 2023/09/17
- [PATCH v3 11/28] bsd-user: Implement getgroups(2) and setgroups(2) system calls.,
Karim Taha <=
- [PATCH v3 12/28] bsd-user: Implement umask(2), setlogin(2) and getlogin(2), Karim Taha, 2023/09/17
- [PATCH v3 14/28] bsd-user: Implement getrlimit(2) and setrlimit(2), Karim Taha, 2023/09/17
- [PATCH v3 15/28] bsd-user: Implement several get/set system calls:, Karim Taha, 2023/09/17
- [PATCH v3 16/28] bsd-user: Implement get/set[resuid/resgid/sid] and issetugid., Karim Taha, 2023/09/17
- [PATCH v3 17/28] bsd-user: Add stubs for profil(2), ktrace(2), utrace(2) and ptrace(2)., Karim Taha, 2023/09/17
- [PATCH v3 13/28] bsd-user: Implement getrusage(2)., Karim Taha, 2023/09/17
- [PATCH v3 18/28] bsd-user: Implement getpriority(2) and setpriority(2)., Karim Taha, 2023/09/17
- [PATCH v3 20/28] bsd-user: Implement freebsd_exec_common, used in implementing execve/fexecve., Karim Taha, 2023/09/17
- [PATCH v3 22/28] bsd-user: Implement execve(2) and fexecve(2) system calls., Karim Taha, 2023/09/17
- [PATCH v3 24/28] bsd-user: Implement setloginclass(2) and getloginclass(2) system calls., Karim Taha, 2023/09/17