qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org, "Alex Bennée" <alex.bennee@linaro.org>,
	"Anton Johansson" <anjo@rev.ng>
Subject: Re: [PATCH 3/3] semihosting: Restrict to TCG
Date: Tue, 18 Jun 2024 13:33:28 +0200	[thread overview]
Message-ID: <8a22ada3-34e6-4d6d-aebe-67bc07d0f38f@linaro.org> (raw)
In-Reply-To: <5c913504-d917-4fd1-86d5-85d3bc293623@linaro.org>

ping :)

On 12/6/24 15:12, Philippe Mathieu-Daudé wrote:
> Hi Paolo,
> 
> On 30/5/24 15:58, Philippe Mathieu-Daudé wrote:
>> On 30/5/24 09:31, Paolo Bonzini wrote:
>>> On Thu, May 30, 2024 at 9:22 AM Philippe Mathieu-Daudé
>>> <philmd@linaro.org> wrote:
>>>>
>>>> On 30/5/24 08:02, Paolo Bonzini wrote:
>>>>> On Wed, May 29, 2024 at 5:56 PM Philippe Mathieu-Daudé
>>>>> <philmd@linaro.org> wrote:
>>>>>> It is pointless to build semihosting when TCG is not available.
>>>>>
>>>>> Why? I would have naively assumed that a suitable semihosting API
>>>>> could be implemented by KVM. The justification (and thus the commit
>>>>> message) needs to be different for each architecture if it's a matter
>>>>> of instruction set or insufficient KVM userspace API.
>>>>
>>>> I wasn't sure where semihosting could be used so asked on IRC and
>>>> Alex told me TCG only. Maybe the current implementation is TCG
>>>> only, and I can reword. It certainly need some refactor to work
>>>> on KVM, because currently semihosting end calling the TCG probe_access
>>>> API, which I'm trying to restrict to TCG in order to ease linking
>>>> multiple libtcg for the single binary (see
>>>> https://lore.kernel.org/qemu-devel/20240529155918.6221-1-philmd@linaro.org/).
>>>
>>> Ok, that goes in the commit message though.
>>>
>>> "Semihosting currently uses the TCG probe_access API. It is pointless
>>> to have it in the binary when TCG isn't".
>>>
>>> and in the first two patches:
>>>
>>> "Semihosting currently uses the TCG probe_access API. To prepare for
>>> encoding the TCG dependency in Kconfig, do not enable it unless TCG is
>>> available".
>>>
>>> But then, "select FOO if TCG" mean that it can be compiled out; so
>>> perhaps "imply SEMIHOSTING if TCG" is better? Same for RISC-V's
>>> "select ARM_COMPATIBLE_SEMIHOSTING if TCG".
> 
> Building qemu-system-mips configured with --without-default-devices:
> 
> Undefined symbols for architecture arm64:
>    "_qemu_semihosting_console_write", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>    "_semihost_sys_close", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>    "_uaccess_strlen_user", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>    ...
> 
> So this one has to use "select".
> 
> Similarly m68k:
> 
> Undefined symbols for architecture arm64:
>    "_semihost_sys_close", referenced from:
>        _do_m68k_semihosting in target_m68k_m68k-semi.c.o
>    ...
> 
> I can link m68k using semihosting stubs but I'm not sure it is right:
> 
> -- >8 --
> diff --git a/semihosting/stubs-target-all.c 
> b/semihosting/stubs-target-all.c
> new file mode 100644
> index 0000000000..1f33173f43
> --- /dev/null
> +++ b/semihosting/stubs-target-all.c
> @@ -0,0 +1,97 @@
> +/*
> + * Semihosting Stubs
> + *
> + * Copyright (c) 2024 Linaro Ltd
> + *
> + * Stubs for semihosting targets that don't actually do semihosting.
> + *
> + * SPDX-License-Identifier: GPL-2.0-or-later
> + */
> +
> +#include "qemu/osdep.h"
> +#include "exec/exec-all.h"
> +#include "semihosting/syscalls.h"
> +
> +void semihost_sys_open(CPUState *cs, gdb_syscall_complete_cb complete,
> +                       target_ulong fname, target_ulong fname_len,
> +                       int gdb_flags, int mode)
> +{
> +}
> +
> +void semihost_sys_close(CPUState *cs, gdb_syscall_complete_cb complete, 
> int fd)
> +{
> +}
> +
> +void semihost_sys_read_gf(CPUState *cs, gdb_syscall_complete_cb complete,
> +                          GuestFD *gf, target_ulong buf, target_ulong len)
> +{
> +}
> +
> +void semihost_sys_read(CPUState *cs, gdb_syscall_complete_cb complete,
> +                       int fd, target_ulong buf, target_ulong len)
> +{
> +}
> +
> +void semihost_sys_write_gf(CPUState *cs, gdb_syscall_complete_cb complete,
> +                           GuestFD *gf, target_ulong buf, target_ulong 
> len)
> +{
> +}
> +
> +void semihost_sys_write(CPUState *cs, gdb_syscall_complete_cb complete,
> +                        int fd, target_ulong buf, target_ulong len)
> +{
> +}
> +
> +void semihost_sys_lseek(CPUState *cs, gdb_syscall_complete_cb complete,
> +                        int fd, int64_t off, int gdb_whence)
> +{
> +}
> +
> +void semihost_sys_isatty(CPUState *cs, gdb_syscall_complete_cb 
> complete, int fd)
> +{
> +}
> +
> +void semihost_sys_flen(CPUState *cs, gdb_syscall_complete_cb fstat_cb,
> +                       gdb_syscall_complete_cb flen_cb, int fd,
> +                       target_ulong fstat_addr)
> +{
> +}
> +
> +void semihost_sys_fstat(CPUState *cs, gdb_syscall_complete_cb complete,
> +                        int fd, target_ulong addr)
> +{
> +}
> +
> +void semihost_sys_stat(CPUState *cs, gdb_syscall_complete_cb complete,
> +                       target_ulong fname, target_ulong fname_len,
> +                       target_ulong addr)
> +{
> +}
> +
> +void semihost_sys_remove(CPUState *cs, gdb_syscall_complete_cb complete,
> +                         target_ulong fname, target_ulong fname_len)
> +{
> +}
> +
> +void semihost_sys_rename(CPUState *cs, gdb_syscall_complete_cb complete,
> +                         target_ulong oname, target_ulong oname_len,
> +                         target_ulong nname, target_ulong nname_len)
> +{
> +}
> +
> +void semihost_sys_system(CPUState *cs, gdb_syscall_complete_cb complete,
> +                         target_ulong cmd, target_ulong cmd_len)
> +{
> +}
> +
> +void semihost_sys_gettimeofday(CPUState *cs, gdb_syscall_complete_cb 
> complete,
> +                               target_ulong tv_addr, target_ulong tz_addr)
> +{
> +}
> +
> +#ifndef CONFIG_USER_ONLY
> +void semihost_sys_poll_one(CPUState *cs, gdb_syscall_complete_cb complete,
> +                           int fd, GIOCondition cond, int timeout)
> +{
> +}
> +#endif
> diff --git a/semihosting/meson.build b/semihosting/meson.build
> index 34933e5a19..aa8b7a9913 100644
> --- a/semihosting/meson.build
> +++ b/semihosting/meson.build
> @@ -7,7 +7,7 @@ specific_ss.add(when: ['CONFIG_SEMIHOSTING', 
> 'CONFIG_SYSTEM_ONLY'], if_true: fil
>     'config.c',
>     'console.c',
>     'uaccess.c',
> -))
> +), if_false: files('stubs-target-all.c'))
> 
>   common_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SYSTEM_ONLY'], 
> if_false: files('stubs-all.c'))
>   system_ss.add(when: ['CONFIG_SEMIHOSTING'], if_false: 
> files('stubs-system.c'))
> ---
> 
> For mips more stubs are needed:
> 
> Undefined symbols for architecture arm64:
>    "_qemu_semihosting_console_write", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>    "_uaccess_lock_user", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _uhi_fstat_cb in target_mips_tcg_sysemu_mips-semi.c.o
>    "_uaccess_lock_user_string", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting.cold.6 in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting.cold.6 in target_mips_tcg_sysemu_mips-semi.c.o
>    "_uaccess_strlen_user", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>    "_uaccess_unlock_user", referenced from:
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _mips_semihosting in target_mips_tcg_sysemu_mips-semi.c.o
>        _uhi_fstat_cb in target_mips_tcg_sysemu_mips-semi.c.o
>        ...
> 



  reply	other threads:[~2024-06-18 11:33 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-29 15:55 [PATCH 0/3] semihosting: Restrict to TCG Philippe Mathieu-Daudé
2024-05-29 15:55 ` [PATCH 1/3] target/mips: Restrict semihosting " Philippe Mathieu-Daudé
2024-05-29 15:55 ` [PATCH 2/3] target/riscv: " Philippe Mathieu-Daudé
2024-05-29 15:55 ` [PATCH 3/3] semihosting: Restrict " Philippe Mathieu-Daudé
2024-05-30  6:02   ` Paolo Bonzini
2024-05-30  7:22     ` Philippe Mathieu-Daudé
2024-05-30  7:31       ` Paolo Bonzini
2024-05-30 13:58         ` Philippe Mathieu-Daudé
2024-06-12 13:12           ` Philippe Mathieu-Daudé
2024-06-18 11:33             ` Philippe Mathieu-Daudé [this message]
2024-06-18 13:56               ` Alex Bennée
2024-06-18 14:16                 ` Philippe Mathieu-Daudé
2024-06-19  7:49             ` Paolo Bonzini
2024-07-17 10:49               ` Philippe Mathieu-Daudé
2024-05-30  7:27     ` Alex Bennée
2024-05-29 17:40 ` [PATCH 0/3] " Richard Henderson
2024-05-29 19:11 ` Alex Bennée
2024-05-30  6:03   ` Paolo Bonzini
2024-05-30  7:23     ` Philippe Mathieu-Daudé

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=8a22ada3-34e6-4d6d-aebe-67bc07d0f38f@linaro.org \
    --to=philmd@linaro.org \
    --cc=alex.bennee@linaro.org \
    --cc=anjo@rev.ng \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.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).