mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Borislav Petkov <bp@amd64.org>
To: Andy Lutomirski <luto@MIT.EDU>
Cc: x86@kernel.org, linux-kernel@vger.kernel.org,
	Ingo Molnar <mingo@elte.hu>
Subject: Re: [PATCH 2/5] x86-64: Allow alternative patching in the vDSO
Date: Wed, 8 Jun 2011 14:33:35 +0200	[thread overview]
Message-ID: <20110608123335.GA21548@gere.osrc.amd.com> (raw)
In-Reply-To: <9f34abb8ee488207e6b1cc2972eee81a4e612a0d.1307474707.git.luto@mit.edu>

On Tue, Jun 07, 2011 at 03:32:39PM -0400, Andy Lutomirski wrote:
> This code is short enough and different enough from the module
> loader that it's not worth trying to share anything.
> 
> Signed-off-by: Andy Lutomirski <luto@mit.edu>
> ---
>  arch/x86/vdso/vma.c |   32 ++++++++++++++++++++++++++++++++
>  1 files changed, 32 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/x86/vdso/vma.c b/arch/x86/vdso/vma.c
> index 7abd2be..b8b074c1 100644
> --- a/arch/x86/vdso/vma.c
> +++ b/arch/x86/vdso/vma.c
> @@ -23,11 +23,43 @@ extern unsigned short vdso_sync_cpuid;
>  static struct page **vdso_pages;
>  static unsigned vdso_size;
>  
> +static void patch_vdso(void *vdso, size_t len)
> +{
> +	Elf64_Ehdr *hdr = vdso;
> +	Elf64_Shdr *sechdrs, *alt_sec = 0;
> +	char *secstrings;
> +	void *alt_data;
> +	int i;
> +
> +	BUG_ON(len < sizeof(Elf64_Ehdr));
> +	BUG_ON(memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0);
> +
> +	sechdrs = (void *)hdr + hdr->e_shoff;
> +	secstrings = (void *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
> +
> +	for (i = 1; i < hdr->e_shnum; i++) {
> +		Elf64_Shdr *shdr = &sechdrs[i];
> +		if (!strcmp(secstrings + shdr->sh_name, ".altinstructions")) {
> +			alt_sec = shdr;
> +			break;
> +		}
> +	}
> +
> +	if (!alt_sec)
> +		return;  /* nothing to patch */

Just a minor nitpick:

Maybe do

	for (.. ) {

		if (!strcmp(...)) {
			alt_sec = shdr;
			goto apply;
		}
	}
	return;

apply:

to save yourself the if (!alt_sec) test and the alt_sec = 0 aka NULL
assignment above.

> +
> +	alt_data = (void *)hdr + alt_sec->sh_offset;
> +
> +	apply_alternatives(alt_data, alt_data + alt_sec->sh_size);
> +}
> +
>  static int __init init_vdso_vars(void)
>  {
>  	int npages = (vdso_end - vdso_start + PAGE_SIZE - 1) / PAGE_SIZE;
>  	int i;
>  
> +	patch_vdso(vdso_start, vdso_end - vdso_start);
> +
>  	vdso_size = npages << PAGE_SHIFT;
>  	vdso_pages = kmalloc(sizeof(struct page *) * npages, GFP_KERNEL);
>  	if (!vdso_pages)
> -- 
> 1.7.5.2

Thanks.

-- 
Regards/Gruss,
Boris.

Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

  reply	other threads:[~2011-06-08 12:33 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-07 19:32 [PATCH 0/5] Remove remaining executable code from x86-64 vsyscall page Andy Lutomirski
2011-06-07 19:32 ` [PATCH 1/5] x86: Make alternative instruction pointers relative Andy Lutomirski
2011-06-07 19:32 ` [PATCH 2/5] x86-64: Allow alternative patching in the vDSO Andy Lutomirski
2011-06-08 12:33   ` Borislav Petkov [this message]
2011-06-07 19:32 ` [PATCH 3/5] x86-64: Add --no-undefined to vDSO build Andy Lutomirski
2011-06-07 19:32 ` [PATCH 4/5] clocksource: Replace vread and fsys_mmio with generic arch data Andy Lutomirski
2011-06-07 20:28   ` john stultz
2011-06-07 20:35     ` Andrew Lutomirski
2011-06-07 21:06       ` john stultz
2011-06-07 21:18         ` Andrew Lutomirski
2011-06-07 19:32 ` [PATCH 5/5] x86-64: Move vread_tsc and vread_hpet into the vDSO Andy Lutomirski

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=20110608123335.GA21548@gere.osrc.amd.com \
    --to=bp@amd64.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@MIT.EDU \
    --cc=mingo@elte.hu \
    --cc=x86@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome