[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 12/28] bsd-user: Implement umask(2), setlogin(2) and getlogin(
From: |
Karim Taha |
Subject: |
[PATCH v5 12/28] bsd-user: Implement umask(2), setlogin(2) and getlogin(2) |
Date: |
Mon, 25 Sep 2023 21:24:09 +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>
Reviewed-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/bsd-proc.h | 39 +++++++++++++++++++++++++++++++++++
bsd-user/freebsd/os-syscall.c | 12 +++++++++++
2 files changed, 51 insertions(+)
diff --git a/bsd-user/bsd-proc.h b/bsd-user/bsd-proc.h
index 7b25aa1982..cb7c69acb0 100644
--- a/bsd-user/bsd-proc.h
+++ b/bsd-user/bsd-proc.h
@@ -26,6 +26,7 @@
#include "gdbstub/syscalls.h"
#include "qemu/plugin.h"
+extern int _getlogin(char*, int);
int bsd_get_ncpu(void);
/* exit(2) */
@@ -85,4 +86,42 @@ static inline abi_long do_bsd_setgroups(abi_long gidsetsize,
abi_long arg2)
return get_errno(setgroups(gidsetsize, grouplist));
}
+/* umask(2) */
+static inline abi_long do_bsd_umask(abi_long arg1)
+{
+ return get_errno(umask(arg1));
+}
+
+/* setlogin(2) */
+static inline abi_long do_bsd_setlogin(abi_long arg1)
+{
+ abi_long ret;
+ void *p;
+
+ p = lock_user_string(arg1);
+ if (p == NULL) {
+ return -TARGET_EFAULT;
+ }
+ ret = get_errno(setlogin(p));
+ unlock_user(p, arg1, 0);
+
+ return ret;
+}
+
+/* getlogin(2) */
+static inline abi_long do_bsd_getlogin(abi_long arg1, abi_long arg2)
+{
+ abi_long ret;
+ void *p;
+
+ p = lock_user(VERIFY_WRITE, arg1, arg2, 0);
+ if (p == NULL) {
+ return -TARGET_EFAULT;
+ }
+ ret = get_errno(_getlogin(p, arg2));
+ unlock_user(p, arg1, arg2);
+
+ return ret;
+}
+
#endif /* !BSD_PROC_H_ */
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index 535e6287bd..44cbf52f08 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -231,6 +231,18 @@ static abi_long freebsd_syscall(void *cpu_env, int num,
abi_long arg1,
ret = do_bsd_setgroups(arg1, arg2);
break;
+ case TARGET_FREEBSD_NR_umask: /* umask(2) */
+ ret = do_bsd_umask(arg1);
+ break;
+
+ case TARGET_FREEBSD_NR_setlogin: /* setlogin(2) */
+ ret = do_bsd_setlogin(arg1);
+ break;
+
+ case TARGET_FREEBSD_NR_getlogin: /* getlogin(2) */
+ ret = do_bsd_getlogin(arg1, arg2);
+ break;
+
/*
* File system calls.
--
2.42.0
- [PATCH v5 02/28] bsd-user: Define procctl(2) related structs, (continued)
- [PATCH v5 02/28] bsd-user: Define procctl(2) related structs, Karim Taha, 2023/09/25
- [PATCH v5 03/28] bsd-user: Implement host_to_target_siginfo., Karim Taha, 2023/09/25
- [PATCH v5 05/28] bsd-user: add extern declarations for bsd-proc.c conversion functions, Karim Taha, 2023/09/25
- [PATCH v5 06/28] bsd-user: Implement target_to_host_resource conversion function, Karim Taha, 2023/09/25
- [PATCH v5 04/28] bsd-user: Add freebsd_exec_common and do_freebsd_procctl to qemu.h., Karim Taha, 2023/09/25
- [PATCH v5 07/28] bsd-user: Implement target_to_host_rlim and host_to_target_rlim conversion., Karim Taha, 2023/09/25
- [PATCH v5 08/28] bsd-user: Implement host_to_target_rusage and host_to_target_wrusage., Karim Taha, 2023/09/25
- [PATCH v5 09/28] bsd-user: Implement host_to_target_waitstatus conversion., Karim Taha, 2023/09/25
- [PATCH v5 10/28] bsd-user: Get number of cpus., Karim Taha, 2023/09/25
- [PATCH v5 11/28] bsd-user: Implement getgroups(2) and setgroups(2) system calls., Karim Taha, 2023/09/25
- [PATCH v5 12/28] bsd-user: Implement umask(2), setlogin(2) and getlogin(2),
Karim Taha <=
- [PATCH v5 14/28] bsd-user: Implement getrlimit(2) and setrlimit(2), Karim Taha, 2023/09/25
- [PATCH v5 15/28] bsd-user: Implement several get/set system calls:, Karim Taha, 2023/09/25
- [PATCH v5 13/28] bsd-user: Implement getrusage(2)., Karim Taha, 2023/09/25
- [PATCH v5 16/28] bsd-user: Implement get/set[resuid/resgid/sid] and issetugid., Karim Taha, 2023/09/25
- [PATCH v5 17/28] bsd-user: Add stubs for profil(2), ktrace(2), utrace(2) and ptrace(2)., Karim Taha, 2023/09/25
- [PATCH v5 18/28] bsd-user: Implement getpriority(2) and setpriority(2)., Karim Taha, 2023/09/25
- [PATCH v5 19/28] bsd-user: Implement get_filename_from_fd., Karim Taha, 2023/09/25
- [PATCH v5 20/28] bsd-user: Implement freebsd_exec_common, used in implementing execve/fexecve., Karim Taha, 2023/09/25
- [PATCH v5 22/28] bsd-user: Implement execve(2) and fexecve(2) system calls., Karim Taha, 2023/09/25
- [PATCH v5 23/28] bsd-user: Implement wait4(2) and wait6(2) system calls., Karim Taha, 2023/09/25