[PATCH v3 00/20] bsd-user 2023 Q2 first batch

Warner Losh posted 20 patches 1 year ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20230411170955.17358-1-imp@bsdimp.com
Maintainers: Warner Losh <imp@bsdimp.com>, Kyle Evans <kevans@freebsd.org>, Paolo Bonzini <pbonzini@redhat.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, Thomas Huth <thuth@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>
bsd-user/arm/target_arch_cpu.h             |    8 +
bsd-user/arm/target_arch_elf.h             |    1 -
bsd-user/bsd-proc.c                        |   48 +
bsd-user/elfcore.c                         | 1315 +++++++++++++++++++-
bsd-user/elfload.c                         |    5 -
bsd-user/freebsd/os-sys.c                  |  508 +++++++-
bsd-user/freebsd/os-syscall.c              |   19 +
bsd-user/freebsd/os-syscall.h              |   21 +
bsd-user/freebsd/syscall_nr.h              |  515 --------
bsd-user/i386/target_arch_elf.h            |    1 -
bsd-user/main.c                            |    1 -
bsd-user/meson.build                       |    5 +
bsd-user/mmap.c                            |  105 +-
bsd-user/netbsd/host-os.h                  |   25 -
bsd-user/netbsd/os-syscall.h               |   16 +
bsd-user/openbsd/host-os.h                 |   25 -
bsd-user/openbsd/os-syscall.h              |   16 +
bsd-user/{freebsd/host-os.h => qemu-bsd.h} |   15 +-
bsd-user/qemu.h                            |   44 +-
bsd-user/signal.c                          |   13 +-
bsd-user/strace.c                          |   88 +-
bsd-user/syscall_defs.h                    |   69 +-
bsd-user/syscallhdr.sh                     |    7 +
bsd-user/x86_64/target_arch_elf.h          |    1 -
meson.build                                |    2 +
25 files changed, 2100 insertions(+), 773 deletions(-)
create mode 100644 bsd-user/bsd-proc.c
create mode 100644 bsd-user/freebsd/os-syscall.h
delete mode 100644 bsd-user/freebsd/syscall_nr.h
delete mode 100644 bsd-user/netbsd/host-os.h
create mode 100644 bsd-user/netbsd/os-syscall.h
delete mode 100644 bsd-user/openbsd/host-os.h
create mode 100644 bsd-user/openbsd/os-syscall.h
rename bsd-user/{freebsd/host-os.h => qemu-bsd.h} (72%)
create mode 100644 bsd-user/syscallhdr.sh
[PATCH v3 00/20] bsd-user 2023 Q2 first batch
Posted by Warner Losh 1 year ago
This series is a number of misc cleanups.

First, this replaces my plans to remove netbsd and openbsd code entirely. I've
been in contact with the NetBSD folks that would like to make things work. The
plan is that I'll not remove it in qemu-project, and restore them in bsd-user
fork. These changes clean up some of the mess that's here: I've moved the bits
that make sense here, and removed the ones that don't (but upstream I've moved
them when it makes sense). My intention is to work with the NetBSD folks (and
OpenBSD too if they want) to cope with the structural issues I'm aware of in
bsd-user fork. Future contributions should go via that route at a rate of
contributions (I have little time to do the work, but will commit to finding
time to do the coordination and review work).

Next I've #ifdef'd some mmap handling based on certain flags being defined or
not. This was something I'd removed before, and were in what Taylor sent me, so
I've restored the relevant ones. The rest of the patch that Taylor sent me
conflicts with bsd-user and needs some work to get it in upstream. I removed a
few unused mmap defines as well. And I cleanup mmap.c to remove gratuitous
differences and pass checkpatch.pl.

Next, I've made unimplmeneted system calls generate SIGSYS. For the moment, this
is the best we should do since so much is unimplemented and as things get
implemented this will allow controlled testing of code to ensure it doesn't
silently succeed, giving the impression things are working when they aren't. I
also add SIGSYS to the uncaught coredump signal list, to match FreeBSD's
behavior. I only do this on arm, though, because the signal implementation on
x86 is incomplete (even upstream) and I didn't want to take chances.

Finally, I've included the core dump code. There's about 600 lines of sysctl
support that I've included as separate commits of ~150 lines each (and
incidentlaly, added the translation to os-sys.c for those bits). The core dump
code itself is largely copied from linux-user/elfload.c by sson (so he gets the
author credit). I moved it to elfcore.c when I was upstremaing in the past and
upstreamed a stub. One of the patches in this series replaces elfcore.c and is
1300 lines long. It's not easily sliced up into smaller bits that compile, but
I'm open to suggestions. It's known to "work" in the sense that it will generate
core files that gdb can read and intelligently parse.

This patch series is for after 8.0 is done, but before any GSoC projects start,
and will be independent of any GSoC contribution tasks.

v3: Review comments:
- Delete syscall_nr.h and generate it from source (just did FreeBSD, but this
  will work for any BSD in the future when those compile again).

v2: A few more 'high line count, easy to review' changes:
- Remove a few more files
- Regenerate FreeBSD system calls
- Remove host-os.h, since we no longer plan to support multiple BSDs in one
  binary.
- Review comments: Remove USE_ELF_CORE_DUMP and change ifdefs for MAP_

Need reviews for parts 2, 17, 18, 19 for sure. Parts 3 and 14 just have Acked-by.

Stacey Son (6):
  bsd-user: h2g_rusage
  bsd-user: Implement do_sysctl_kern_getprocs
  bsd-user: Implement do_sysctl_kern_proc_filedesc
  bsd-user: Implement do_sysctl_kern_proc_vmmap
  bsd-user: Implement sysctl kern.proc, except kern.proc.full_path
  bsd-user: Implement core dumps

Warner Losh (14):
  bsd-user: Make print_* public
  bsd-user: Ifdef a few MAP_ constants for NetBSD / OpenBSD.
  bsd-user: Cleanup style.
  bsd-user: Move system FreeBSD call table to freebsd/os-syscall.c
  bsd-user: Remove NetBSD specific syscall printing
  bsd-user: Remove OpenBSD specific syscall printing
  bsd-user: Move system call include to os-syscall.h
  bsd-user: Remove useless mmap definitions
  bsd-user: Add SIGSYS to core dump signals.
  bsd-user: Implement SIGSYS on arm
  bsd-user: Remove host-os.h
  bsd-user: Automatically generate syscall_nr.h
  bsd-user: remove syscall_nr.h
  bsd-user: Eliminate USE_ELF_CORE_DUMP

 bsd-user/arm/target_arch_cpu.h             |    8 +
 bsd-user/arm/target_arch_elf.h             |    1 -
 bsd-user/bsd-proc.c                        |   48 +
 bsd-user/elfcore.c                         | 1315 +++++++++++++++++++-
 bsd-user/elfload.c                         |    5 -
 bsd-user/freebsd/os-sys.c                  |  508 +++++++-
 bsd-user/freebsd/os-syscall.c              |   19 +
 bsd-user/freebsd/os-syscall.h              |   21 +
 bsd-user/freebsd/syscall_nr.h              |  515 --------
 bsd-user/i386/target_arch_elf.h            |    1 -
 bsd-user/main.c                            |    1 -
 bsd-user/meson.build                       |    5 +
 bsd-user/mmap.c                            |  105 +-
 bsd-user/netbsd/host-os.h                  |   25 -
 bsd-user/netbsd/os-syscall.h               |   16 +
 bsd-user/openbsd/host-os.h                 |   25 -
 bsd-user/openbsd/os-syscall.h              |   16 +
 bsd-user/{freebsd/host-os.h => qemu-bsd.h} |   15 +-
 bsd-user/qemu.h                            |   44 +-
 bsd-user/signal.c                          |   13 +-
 bsd-user/strace.c                          |   88 +-
 bsd-user/syscall_defs.h                    |   69 +-
 bsd-user/syscallhdr.sh                     |    7 +
 bsd-user/x86_64/target_arch_elf.h          |    1 -
 meson.build                                |    2 +
 25 files changed, 2100 insertions(+), 773 deletions(-)
 create mode 100644 bsd-user/bsd-proc.c
 create mode 100644 bsd-user/freebsd/os-syscall.h
 delete mode 100644 bsd-user/freebsd/syscall_nr.h
 delete mode 100644 bsd-user/netbsd/host-os.h
 create mode 100644 bsd-user/netbsd/os-syscall.h
 delete mode 100644 bsd-user/openbsd/host-os.h
 create mode 100644 bsd-user/openbsd/os-syscall.h
 rename bsd-user/{freebsd/host-os.h => qemu-bsd.h} (72%)
 create mode 100644 bsd-user/syscallhdr.sh

-- 
2.40.0