All of lore.kernel.org
 help / color / mirror / Atom feed
From: Catalin Marinas <catalin.marinas@arm.com>
To: "Thomas Weißschuh" <thomas.weissschuh@linutronix.de>
Cc: Will Deacon <will@kernel.org>, Nam Cao <namcao@linutronix.de>,
	Anna-Maria Behnsen <anna-maria@linutronix.de>,
	Thomas Gleixner <tglx@linutronix.de>,
	Andy Lutomirski <luto@kernel.org>,
	Vincenzo Frascino <vincenzo.frascino@arm.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, Jan Stancek <jstancek@redhat.com>
Subject: Re: [PATCH v2 1/2] arm64: vdso: Work around invalid absolute relocations from GCC
Date: Fri, 2 May 2025 15:19:51 +0100	[thread overview]
Message-ID: <aBTUh6WwC0_jl5_e@arm.com> (raw)
In-Reply-To: <20250430-vdso-absolute-reloc-v2-1-5efcc3bc4b26@linutronix.de>

Hi Thomas,

On Wed, Apr 30, 2025 at 11:20:13AM +0200, Thomas Weißschuh wrote:
> All vDSO code needs to be completely position independent.
> Symbol references are marked as hidden so the compiler emits
> PC-relative relocations.
> However GCC emits absolute relocations for symbol-relative references with
> an offset >= 64KiB. After recent refactorings in the vDSO code this is the
> case in __arch_get_vdso_u_timens_data() with a page size of 64KiB.
> 
> Work around the issue by preventing the optimizer from seeing the offsets.
> 
> Reported-by: Jan Stancek <jstancek@redhat.com>
> Closes: https://lore.kernel.org/lkml/aApGPAoctq_eoE2g@t14ultra/
> Link: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=120002
> Fixes: 83a2a6b8cfc5 ("vdso/gettimeofday: Prepare do_hres_timens() for introduction of struct vdso_clock")
> Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
> ---
>  arch/arm64/include/asm/vdso/gettimeofday.h | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
> 
> diff --git a/arch/arm64/include/asm/vdso/gettimeofday.h b/arch/arm64/include/asm/vdso/gettimeofday.h
> index 92a2b59a9f3df4d20feb483e6d8ebd1d813b7932..3322c7047d84fecae316a2904f1adec0cb458f6f 100644
> --- a/arch/arm64/include/asm/vdso/gettimeofday.h
> +++ b/arch/arm64/include/asm/vdso/gettimeofday.h
> @@ -99,6 +99,19 @@ static __always_inline u64 __arch_get_hw_counter(s32 clock_mode,
>  	return res;
>  }
>  
> +#if IS_ENABLED(CONFIG_CC_IS_GCC) && IS_ENABLED(CONFIG_PAGE_SIZE_64KB)
> +static __always_inline const struct vdso_time_data *__arch_get_vdso_u_time_data(void)
> +{
> +	const struct vdso_time_data *ret = &vdso_u_time_data;
> +
> +	/* Work around invalid absolute relocations */
> +	OPTIMIZER_HIDE_VAR(ret);
> +
> +	return ret;
> +}
> +#define __arch_get_vdso_u_time_data __arch_get_vdso_u_time_data
> +#endif /* IS_ENABLED(CONFIG_CC_IS_GCC) && IS_ENABLED(CONFIG_PAGE_SIZE_64KB) */

Thanks for the fix. We may have to chase other such cases in the future
but I don't have any better suggestion.

Acked-by: Catalin Marinas <catalin.marinas@arm.com>

Question for the other Thomas (tglx): what's your preference, do you
plan to take these through tip or shall I queue them via the arm64 tree?

Thanks.

-- 
Catalin


  reply	other threads:[~2025-05-02 14:27 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-30  9:20 [PATCH v2 0/2] vdso: Work around and reject absolute relocations Thomas Weißschuh
2025-04-30  9:20 ` [PATCH v2 1/2] arm64: vdso: Work around invalid absolute relocations from GCC Thomas Weißschuh
2025-05-02 14:19   ` Catalin Marinas [this message]
2025-05-02 19:09   ` [tip: timers/urgent] " tip-bot2 for Thomas Weißschuh
2025-04-30  9:20 ` [PATCH v2 2/2] vdso: Reject absolute relocations during build Thomas Weißschuh
2025-05-02 19:09   ` [tip: timers/urgent] " tip-bot2 for Thomas Weißschuh
2025-04-30 15:33 ` [PATCH v2 0/2] vdso: Work around and reject absolute relocations Jan Stancek

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=aBTUh6WwC0_jl5_e@arm.com \
    --to=catalin.marinas@arm.com \
    --cc=anna-maria@linutronix.de \
    --cc=jstancek@redhat.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=namcao@linutronix.de \
    --cc=tglx@linutronix.de \
    --cc=thomas.weissschuh@linutronix.de \
    --cc=vincenzo.frascino@arm.com \
    --cc=will@kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.