Commit 23671aa09a for qemu.org

commit 23671aa09a1a599274cac5849e4bda5236ef279e
Merge: 3b5d71cc36 1f71ada86d
Author: Richard Henderson <richard.henderson@linaro.org>
Date:   Fri Sep 18 07:51:09 2026 -1000

    Merge tag 'misc-2026q2-v4-pull-request' of gitlab.com:bsdimp/qemu-from-official into staging

    bsd-user: Upstream most of the remaining system calls

    Upstream the file, thread, socket and remaining signal system calls (too
    numerous to list here).

    This series is an ambitous use of claude to help me upstream all the
    remaining system calls. I've batched them together in what I think are
    reasonable chunks, and had claude do the grunt work of copying the code
    over and attributing the commits from our complex branching history. The
    chopping up was a bit arbitrary, but I think it's good. The commit
    messages may be a little weak, but may also be OK. I've also double
    checked the style and made fixes upstream for them as well. Claude also
    reviewed all these changes and found a few bugs that I've fixed. I've
    personally read through them all and haven't found anything glaring. I
    fixed all the bugs that were found, in most cases differently than
    claude's suggestions.

    I've added 'Assisted-by: Claude...' to all these commits to reflect my
    leaning on Claude so hard. This use falls within the 'non-creative' use
    that the Qemu project has said is OK. If that's not the right thing to
    do, I can remove them.

    This leaves sysctl translation, the powerpc architecture support,
    coredumps and a transition to 'truss' based system call tracing. With
    these changes applied we'er down from a high of about 30k lines of diffs
    to only 5k (not counting genereted, but checked in files in blitz). The
    changes are 8k, so maybe a bit ambitious from that perspective as well.

    There's a few lines over 80 that I've not cleaned up. Let me know if
    that's a problem. The other warnings are about adding files, and there's
    no new MAINTAINERS entry needed. And the 'arch dependent defines should
    be avoided' are needed to cope with different FreeBSD build systems
    having different system calls.

    Note, this is called out below too, but in v2 I've folded back all the
    fixes based on some out-of-band feedback I recieved to do this the
    normal way and the qemu project isn't interested in the fixes to fixes.

    Note that in v3 I've added a rather long generated file. I generated it
    automatically looking at the type annocations in FreeBSD on the socket
    options in comments. I had to augment the annotations, so I can't just
    generate it within the build from the installed headers until it's
    merged from head and then merges to stable branches and then waiting for
    a release on each of them (6-9 months given FreeBSD's release schedule).
    Also note: there's a couple left over issues from v2, so if I've not
    taken care of them all, please gently remind me if you think action
    is still needed after my comments before.

    And in v3 I've added some random_seed fixes for fork/new threads
    since we're upstreaming those files. These should be correct now,
    but I'm looking for the correction.

    In v4, I've rebased to post 11.1.0 master, and fixed the issues that
    were highlighted in the last review. Some comments I rejected, for now,
    since they were refactoring code that's hard to test. I've also juggled
    many patch hunks between revisions so they all compile w/o warnings.

    I've created annotation in FreeBSD to allow us, in the future, to
    generate os-sockopt.h from the installed headers. It will take a while
    for that to work its way into all the supported releases, so in the mean
    time I'm committing the generated os-sockopt.h file. I've ignored the
    too-long-line warnings and errors for this file because there's no
    reason for this file to conform to style.

    To: qemu-devel@nongnu.org
    Cc: Kyle Evans <kevans@freebsd.org>
    Cc: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com>
    Cc: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
    Signed-off-by: Warner Losh <imp@bsdimp.com>

    ---
    Changes in v5:
    - EDITME: describe what is new in this series revision.
    - EDITME: use bulletpoints and terse descriptions.
    - Link to v4: https://lore.kernel.org/qemu-devel/20260818-misc-2026q2-v4-0-09bf5647c98e@bsdimp.com

    Changes in v4:
    - Fix the rebase errors in v3.
    - Rebase to post 11.1.0.
    - Fix overly large chunking with syscalls-defs.h by breaking it up
    - Tweak syscalls-defs.h with an eye toward diff reduction to blitz
    - Break out realpath fix
    - Various chunks shuffled to make each patch compile w/o warnings
    - better get/setsockopt implementaiton
    - Link to v3: https://lore.kernel.org/qemu-devel/20260620-misc-2026q2-v3-0-f6ce23ad8dda@bsdimp.com

    Changes in v3:
    - refactor get/setsockopt, including new generated file
    - add random_seed fixes to fork
    - move adding of .c files to meson.build to where we add the file.
    - Fix acl bounds checking
    - Fix indentation and other misc nits
    - copy_to/from_user needs to be abi_long
    - Fix toggling of the _ at the end of BSD_PROC_H
    - Fix leak in error paths in do_freebsd_ktimer_create
    - Don't write back on ktimer_gettime errors
    - Be more careful about EINTR returns
    - do_freebsd_ntp_adjtime needs to return failures from h2t_freebsd_timex
    - do_freebsd_ktimer_gettime shouldn't writeback on error
    - t2h_freebsd_umtx_time needs to unlock_user on error path
    - Prefer abi_long for all pointers in extattr
    - Remove accidentally duplicated prototypes.
    - Don't writeback the eventlist, we're just reading it
    - Add missing 'do' to the macro
    - Byte swap sival_ptr in convertion
    - Add missing get_errno call to safe___umtx_op
    - Don't write back if getsockopt fails
    - Write back correct number of bytes for do_bsd_recvfrom
    - Loop through cnt, not maxcnt for acl conversion
    - Fix getsockopt size computation
    - Return ret, not errno, since do_freebsd_new_thr doesn't touch errno
    - Fixed off by one in connectat: we need the bug compat fix here too
    - Fixed error in preadv: copy params backwards
    - Link to v2: https://lore.kernel.org/qemu-devel/20260518-misc-2026q2-v2-0-6c16fe448301@bsdimp.com

    Changes in v2:
    - don't write offsets on errors for copy_file_range
    - pipe2: Check the raw system call value directly
    - setsockopt: Check target_to_host_ip_mreq return value
    - <several places>: Check return value of host_to_target_sockaddr
    - do_bsd_setsockopt: Read in the socket option
    - ntp_gettime: write back time on non-errors, not just 0
    - do_freebsd_sigtimedwait check t2h_freebsd_timespec return
    - do_freebsd_swapcontext writing incorrectly, readonly data (0 to user_unlock)
    - do_thr_set_name needs get_errno()
    - Have ntp_adjtime write back the structure
    - kevent_freebsd11 no need to explicitly mask, datatypes do this for us
    - do_freebsd_setcontext just reads the mcontext, 0 in unlock_user
    - target_to_host_sigevent is read-only, so pass 0 in unlock_user
    - target_to_host_ip_mreq needs tswap32 for int32_t
    - use get_errno on kenv return values to report errors better
    - kevent: only copy the number of events returns, not whole buffer
    - Copy tolerance field of timex
    - freebsd_umtx_sem_wake use VERIFY_READ instead of write to read struct
    - Avoid double g2h_untagged mistakes in !_UMTX_OPTIMIZED
    - Fixed additional missing unlock in freebsd_rw_rdlock and freebsd_rw_wrlock in !_UMTX_OPTIMIZED
    - Squashed all the bug commit back to the appropriate earleir patch
    - Link to v1: https://lore.kernel.org/qemu-devel/20260515-misc-2026q2-v1-0-5438ca41b27a@bsdimp.com

    # -----BEGIN PGP SIGNATURE-----
    # Comment: GPGTools - https://gpgtools.org
    #
    # iQJPBAABCgA5FiEEIDX4lLAKo898zeG3bBzRKH2wEQAFAmqsvHsbFIAAAAAABAAO
    # bWFudTIsMi41KzEuMTIsMiwzAAoJEGwc0Sh9sBEAhSgP/2ZXhHkkhQVUYzUhhM5K
    # vsOO/cJXMoTdvGlW8fG1bofHm4znS/WQvMxTaCOW6b472YLmRWkg+DSp5LqwZp/n
    # 4VjQE0guaxUS9fQloPKFslfCmWaeszfiFR3W3VX2qxIZngMDbBLPJwwj5m8HHorG
    # oEYNTxW9kEIXBMlDeFW0A/rU+tQJSlfjaktbmCB03AvS9NpJNt0l1koA4IFwA0bO
    # 9dK1hIXTQp/7iDcukRg6Q0PY12N0plI359hEz1O4A/sOcc9tFJ747Jeltw7TBCIH
    # A9sKPhwXsQYeWecCvSjyeYVa0A8BEC+bL2Ii2/g4waf6eYLy5UR6vLzQwsNsRy5w
    # CkLb614MXlpPPmxlWIo7Kr2aM6ZC8ictg0LBofxlqUz2Fn7rNVpEMFM23GgW+wgW
    # LeA4QVmN7jrMNdW0gOnsbMp8XPtJXkgaYj6xFzlRlI0PMTLMiwy2EF+9uuoRy+4k
    # 2gnmcwOvZ3bnNRkCootzSGrrPQ1myUlqQlrHTCDPJxuPMRPP/mG9vYk0QcKAtZ5o
    # qR3El++zg0W+/kYH1/VQK+ekST07R161uOyItm8zPqq4SikhGRRujHUu0nLiL8t5
    # UU1ARZ63rDXZSnrS/ZI5iHkdFhM71Bf+wsHRjLsqtla1nbjp6Tmc4i19NX8PZwTW
    # 0x8IkZhNH3ewbdFWb9p3MeTU
    # =DGJO
    # -----END PGP SIGNATURE-----
    # gpg: Signature made Thu 17 Sep 2026 06:22:19 PM HST
    # gpg:                using RSA key 2035F894B00AA3CF7CCDE1B76C1CD1287DB01100
    # gpg: Good signature from "Warner Losh <wlosh@netflix.com>" [unknown]
    # gpg:                 aka "Warner Losh <imp@bsdimp.com>" [unknown]
    # gpg:                 aka "Warner Losh <imp@freebsd.org>" [unknown]
    # gpg:                 aka "Warner Losh <imp@village.org>" [unknown]
    # gpg:                 aka "Warner Losh <wlosh@bsdimp.com>" [unknown]
    # gpg: Signature notation: manu=2,2.5+1.12,2,3
    # gpg: WARNING: This key is not certified with a trusted signature!
    # gpg:          There is no indication that the signature belongs to the owner.
    # Primary key fingerprint: 2035 F894 B00A A3CF 7CCD  E1B7 6C1C D128 7DB0 1100

    * tag 'misc-2026q2-v4-pull-request' of gitlab.com:bsdimp/qemu-from-official: (41 commits)
      bsd-user Update random_seed on thread creation
      bsd-user: Move qemu_guest_random_seed_main to same as linux-user
      bsd-user: Add scheduler, cpuset, kmod, and misc syscall dispatch
      bsd-user: Add scheduler and cpuset functions to os-misc.h
      bsd-user: Add extended attribute and ACL system call dispatch
      bsd-user: Add os-extattr.c with ACL conversion functions
      bsd-user: Add ACL system call shims to os-extattr.h
      bsd-user: Add link and list extattr functions to os-extattr.h
      bsd-user: Add os-extattr.h with file and fd extattr functions
      bsd-user: Add thread system call dispatch
      bsd-user: Add do_freebsd__umtx_op to os-thread.h
      bsd-user: Add os-thread.h with thr and context functions
      bsd-user: Add cpu_copy and make init_task_state non-static
      bsd-user: Add time system call dispatch
      bsd-user: Add os-time.c and time-related type definitions
      bsd-user: Add sigtimedwait, itimer, and futimens to os-time.h
      bsd-user: Add kqueue and kevent functions to os-time.h
      bsd-user: Add select, pselect, and ppoll to os-time.h
      bsd-user: Add utimes, futimes, and ktimer functions to os-time.h
      bsd-user: Add os-time.h with clock and time-of-day functions
      ...

    Signed-off-by: Richard Henderson <richard.henderson@linaro.org>