From: Warner Losh <imp@bsdimp.com>
To: qemu-devel@nongnu.org
Cc: reinoud@netbsd.org, riastradh@netbsd.org, ryoon@netbsd.org,
jrtc27@jrtc27.com, Warner Losh <imp@bsdimp.com>,
kevans@freebsd.org, Brad Smith <brad@comstyle.com>,
Stacey Son <sson@FreeBSD.org>
Subject: [PATCH 10/16] bsd-user: Implmenet do_sysctl_kern_getprocs
Date: Wed, 5 Apr 2023 15:36:06 -0600 [thread overview]
Message-ID: <20230405213612.15942-11-imp@bsdimp.com> (raw)
In-Reply-To: <20230405213612.15942-1-imp@bsdimp.com>
From: Stacey Son <sson@FreeBSD.org>
Implement do_sysctl_kern_getprocs to retrieve proc info from the kernel.
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/freebsd/os-sys.c | 165 +++++++++++++++++++++++++++++++++++++-
bsd-user/qemu.h | 3 +
2 files changed, 167 insertions(+), 1 deletion(-)
diff --git a/bsd-user/freebsd/os-sys.c b/bsd-user/freebsd/os-sys.c
index df317065587..d4a6dcc6c2b 100644
--- a/bsd-user/freebsd/os-sys.c
+++ b/bsd-user/freebsd/os-sys.c
@@ -19,9 +19,14 @@
#include "qemu/osdep.h"
#include "qemu.h"
+#include "qemu-bsd.h"
#include "target_arch_sysarch.h"
-
+#include "signal-common.h"
+#include <sys/param.h>
#include <sys/sysctl.h>
+#include <sys/user.h> /* For struct kinfo_* */
+
+#include "target_os_user.h"
/*
* Length for the fixed length types.
@@ -107,6 +112,164 @@ static abi_ulong h2g_ulong_sat(u_long ul)
*/
#define bsd_get_ncpu() 1
+static void
+host_to_target_kinfo_proc(struct target_kinfo_proc *tki, struct kinfo_proc *hki)
+{
+ int i;
+
+ __put_user(sizeof(struct target_kinfo_proc), &tki->ki_structsize);
+ __put_user(hki->ki_layout, &tki->ki_layout);
+
+ /* Some of these are used as flags (e.g. ki_fd == NULL in procstat). */
+ tki->ki_args = tswapal((abi_ulong)(uintptr_t)hki->ki_args);
+ tki->ki_paddr = tswapal((abi_ulong)(uintptr_t)hki->ki_paddr);
+ tki->ki_addr = tswapal((abi_ulong)(uintptr_t)hki->ki_addr);
+ tki->ki_tracep = tswapal((abi_ulong)(uintptr_t)hki->ki_tracep);
+ tki->ki_textvp = tswapal((abi_ulong)(uintptr_t)hki->ki_textvp);
+ tki->ki_fd = tswapal((abi_ulong)(uintptr_t)hki->ki_fd);
+ tki->ki_vmspace = tswapal((abi_ulong)(uintptr_t)hki->ki_vmspace);
+ tki->ki_wchan = tswapal((abi_ulong)(uintptr_t)hki->ki_wchan);
+
+ __put_user(hki->ki_pid, &tki->ki_pid);
+ __put_user(hki->ki_ppid, &tki->ki_ppid);
+ __put_user(hki->ki_pgid, &tki->ki_pgid);
+ __put_user(hki->ki_tpgid, &tki->ki_tpgid);
+ __put_user(hki->ki_sid, &tki->ki_sid);
+ __put_user(hki->ki_tsid, &tki->ki_tsid);
+ __put_user(hki->ki_jobc, &tki->ki_jobc);
+ __put_user(hki->ki_tdev, &tki->ki_tdev);
+
+ host_to_target_sigset(&tki->ki_siglist, &hki->ki_siglist);
+ host_to_target_sigset(&tki->ki_sigmask, &hki->ki_sigmask);
+ host_to_target_sigset(&tki->ki_sigignore, &hki->ki_sigignore);
+ host_to_target_sigset(&tki->ki_sigcatch, &hki->ki_sigcatch);
+
+ __put_user(hki->ki_uid, &tki->ki_uid);
+ __put_user(hki->ki_ruid, &tki->ki_ruid);
+ __put_user(hki->ki_svuid, &tki->ki_svuid);
+ __put_user(hki->ki_rgid, &tki->ki_rgid);
+ __put_user(hki->ki_svgid, &tki->ki_svgid);
+ __put_user(hki->ki_ngroups, &tki->ki_ngroups);
+
+ for (i=0; i < TARGET_KI_NGROUPS; i++)
+ __put_user(hki->ki_groups[i], &tki->ki_groups[i]);
+
+ __put_user(hki->ki_size, &tki->ki_size);
+
+ __put_user(hki->ki_rssize, &tki->ki_rssize);
+ __put_user(hki->ki_swrss, &tki->ki_swrss);
+ __put_user(hki->ki_tsize, &tki->ki_tsize);
+ __put_user(hki->ki_dsize, &tki->ki_dsize);
+ __put_user(hki->ki_ssize, &tki->ki_ssize);
+
+ __put_user(hki->ki_xstat, &tki->ki_xstat);
+ __put_user(hki->ki_acflag, &tki->ki_acflag);
+
+ __put_user(hki->ki_pctcpu, &tki->ki_pctcpu);
+
+ __put_user(hki->ki_estcpu, &tki->ki_estcpu);
+ __put_user(hki->ki_slptime, &tki->ki_slptime);
+ __put_user(hki->ki_swtime, &tki->ki_swtime);
+ __put_user(hki->ki_cow, &tki->ki_cow);
+ __put_user(hki->ki_runtime, &tki->ki_runtime);
+
+ __put_user(hki->ki_start.tv_sec, &tki->ki_start.tv_sec);
+ __put_user(hki->ki_start.tv_usec, &tki->ki_start.tv_usec);
+ __put_user(hki->ki_childtime.tv_sec, &tki->ki_childtime.tv_sec);
+ __put_user(hki->ki_childtime.tv_usec, &tki->ki_childtime.tv_usec);
+
+ __put_user(hki->ki_flag, &tki->ki_flag);
+ __put_user(hki->ki_kiflag, &tki->ki_kiflag);
+
+ __put_user(hki->ki_traceflag, &tki->ki_traceflag);
+ __put_user(hki->ki_stat, &tki->ki_stat);
+ __put_user(hki->ki_nice, &tki->ki_nice);
+ __put_user(hki->ki_lock, &tki->ki_lock);
+ __put_user(hki->ki_rqindex, &tki->ki_rqindex);
+ __put_user(hki->ki_oncpu_old, &tki->ki_oncpu_old);
+ __put_user(hki->ki_lastcpu_old, &tki->ki_lastcpu_old);
+
+ strncpy(tki->ki_tdname, hki->ki_tdname, TARGET_TDNAMLEN+1);
+ strncpy(tki->ki_wmesg, hki->ki_wmesg, TARGET_WMESGLEN+1);
+ strncpy(tki->ki_login, hki->ki_login, TARGET_LOGNAMELEN+1);
+ strncpy(tki->ki_lockname, hki->ki_lockname, TARGET_LOCKNAMELEN+1);
+ strncpy(tki->ki_comm, hki->ki_comm, TARGET_COMMLEN+1);
+ strncpy(tki->ki_emul, hki->ki_emul, TARGET_KI_EMULNAMELEN+1);
+ strncpy(tki->ki_loginclass, hki->ki_loginclass, TARGET_LOGINCLASSLEN+1);
+
+ __put_user(hki->ki_oncpu, &tki->ki_oncpu);
+ __put_user(hki->ki_lastcpu, &tki->ki_lastcpu);
+ __put_user(hki->ki_tracer, &tki->ki_tracer);
+ __put_user(hki->ki_flag2, &tki->ki_flag2);
+ __put_user(hki->ki_fibnum, &tki->ki_fibnum);
+ __put_user(hki->ki_cr_flags, &tki->ki_cr_flags);
+ __put_user(hki->ki_jid, &tki->ki_jid);
+ __put_user(hki->ki_numthreads, &tki->ki_numthreads);
+ __put_user(hki->ki_tid, &tki->ki_tid);
+
+ memcpy(&tki->ki_pri, &hki->ki_pri, sizeof(struct target_priority));
+
+ h2g_rusage(&hki->ki_rusage, &tki->ki_rusage);
+ h2g_rusage(&hki->ki_rusage_ch, &tki->ki_rusage_ch);
+
+ __put_user(((uintptr_t)hki->ki_pcb), &tki->ki_pcb);
+ __put_user(((uintptr_t)hki->ki_kstack), &tki->ki_kstack);
+ __put_user(((uintptr_t)hki->ki_udata), &tki->ki_udata);
+ __put_user(((uintptr_t)hki->ki_tdaddr), &tki->ki_tdaddr);
+
+ __put_user(hki->ki_sflag, &tki->ki_sflag);
+ __put_user(hki->ki_tdflags, &tki->ki_tdflags);
+}
+
+abi_long
+do_sysctl_kern_getprocs(int op, int arg, size_t olen,
+ struct target_kinfo_proc *tki, size_t *tlen)
+{
+ abi_long ret;
+ struct kinfo_proc *kipp;
+ int mib[4], num, i, miblen;
+ size_t len;
+
+ if (tlen == NULL)
+ return -TARGET_EINVAL;
+
+ mib[0] = CTL_KERN;
+ mib[1] = KERN_PROC;
+ mib[2] = op;
+ mib[3] = arg;
+
+ miblen = (op == KERN_PROC_ALL || op == KERN_PROC_PROC) ? 3 : 4;
+
+ len = 0;
+ ret = get_errno(sysctl(mib, miblen, NULL, &len, NULL, 0));
+ if (is_error(ret))
+ return ret;
+
+ num = len / sizeof(*kipp);
+ *tlen = num * sizeof(struct target_kinfo_proc);
+ if (tki == NULL)
+ return ret;
+
+ if (olen < *tlen)
+ return -TARGET_EINVAL;
+
+ kipp = g_malloc(len);
+ if (kipp == NULL)
+ return -TARGET_ENOMEM;
+ ret = get_errno(sysctl(mib, miblen, kipp, &len, NULL, 0));
+ num = len / sizeof(*kipp);
+ *tlen = num * sizeof(struct target_kinfo_proc);
+ if (len % sizeof(*kipp) != 0 || kipp->ki_structsize != sizeof(*kipp)) {
+ ret = -TARGET_EINVAL; /* XXX */
+ } else if (!is_error(ret)) {
+ for(i=0; i < num; i++)
+ host_to_target_kinfo_proc(&tki[i], &kipp[i]);
+ }
+
+ g_free(kipp);
+ return ret;
+}
+
/*
* This uses the undocumented oidfmt interface to find the kind of a requested
* sysctl, see /sys/kern/kern_sysctl.c:sysctl_sysctl_oidfmt() (compare to
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h
index 49468734d44..fcaf794ad6e 100644
--- a/bsd-user/qemu.h
+++ b/bsd-user/qemu.h
@@ -258,6 +258,9 @@ bool is_error(abi_long ret);
int host_to_target_errno(int err);
/* os-sys.c */
+struct target_kinfo_proc;
+abi_long do_sysctl_kern_getprocs(int op, int arg, size_t olen,
+ struct target_kinfo_proc *tki, size_t *tlen);
abi_long do_freebsd_sysctl(CPUArchState *env, abi_ulong namep, int32_t namelen,
abi_ulong oldp, abi_ulong oldlenp, abi_ulong newp, abi_ulong newlen);
abi_long do_freebsd_sysctlbyname(CPUArchState *env, abi_ulong namep,
--
2.40.0
next prev parent reply other threads:[~2023-04-05 21:38 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-05 21:35 [PATCH 00/16] bsd-user 2023 Q2 first batch Warner Losh
2023-04-05 21:35 ` [PATCH 01/16] bsd-user: Make print_* public Warner Losh
2023-04-08 19:00 ` Richard Henderson
2023-04-05 21:35 ` [PATCH 02/16] bsd-user: Ifdef a few MAP_ constants for NetBSD Warner Losh
2023-04-08 19:03 ` Richard Henderson
2023-04-08 19:29 ` Warner Losh
2023-04-05 21:35 ` [PATCH 03/16] bsd-user: Cleanup style Warner Losh
2023-04-08 19:03 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 04/16] bsd-user: Move system FreeBSD call table to freebsd/os-syscall.c Warner Losh
2023-04-08 19:04 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 05/16] bsd-user: Remove NetBSD specific syscall printing Warner Losh
2023-04-08 19:04 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 06/16] bsd-user: Remove OpenBSD " Warner Losh
2023-04-08 19:05 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 07/16] bsd-user: Move system call include to os-syscall.h Warner Losh
2023-04-08 19:08 ` Richard Henderson
2023-04-10 17:12 ` Warner Losh
2023-04-10 18:57 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 08/16] bsd-user: Remove useless mmap definitions Warner Losh
2023-04-08 19:09 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 09/16] bsd-user: h2g_rusage Warner Losh
2023-04-08 19:10 ` Richard Henderson
2023-04-05 21:36 ` Warner Losh [this message]
2023-04-08 19:11 ` [PATCH 10/16] bsd-user: Implmenet do_sysctl_kern_getprocs Richard Henderson
2023-04-05 21:36 ` [PATCH 11/16] bsd-user: Implement do_sysctl_kern_proc_filedesc Warner Losh
2023-04-08 19:12 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 12/16] bsd-user: Implement do_sysctl_kern_proc_vmmap Warner Losh
2023-04-08 19:12 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 13/16] bsd-user: Implement sysctl kern.proc, except kern.proc.full_path Warner Losh
2023-04-08 19:13 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 14/16] bsd-user: Implment core dumps Warner Losh
2023-04-08 19:15 ` Richard Henderson
2023-04-09 5:00 ` Warner Losh
2023-04-10 17:09 ` Warner Losh
2023-04-05 21:36 ` [PATCH 15/16] bsd-user: Add SIGSYS to core dump signals Warner Losh
2023-04-08 19:15 ` Richard Henderson
2023-04-05 21:36 ` [PATCH 16/16] bsd-user: Implement SIGSYS on arm Warner Losh
2023-04-08 19:16 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230405213612.15942-11-imp@bsdimp.com \
--to=imp@bsdimp.com \
--cc=brad@comstyle.com \
--cc=jrtc27@jrtc27.com \
--cc=kevans@freebsd.org \
--cc=qemu-devel@nongnu.org \
--cc=reinoud@netbsd.org \
--cc=riastradh@netbsd.org \
--cc=ryoon@netbsd.org \
--cc=sson@FreeBSD.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).