mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Dave Hansen <dave.hansen@linux.intel.com>
To: Jiang Biao <jiang.biao2@zte.com.cn>,
	tglx@linutronix.de, mingo@redhat.com
Cc: luto@kernel.org, hpa@zytor.com, x86@kernel.org,
	albcamus@gmail.com, linux-kernel@vger.kernel.org,
	zhong.weidong@zte.com.cn
Subject: Re: [PATCH v2 2/2] x86/pti: check the return value of pti_user_pagetable_walk_pmd
Date: Tue, 17 Jul 2018 11:03:39 -0700	[thread overview]
Message-ID: <582ce2a4-072d-5744-5465-fbd07b68b53e@linux.intel.com> (raw)
In-Reply-To: <1531812202-37778-2-git-send-email-jiang.biao2@zte.com.cn>

On 07/17/2018 12:23 AM, Jiang Biao wrote:
> Check the return value of pti_user_pagetable_walk_pmd() to avoid
> NULL pointer dereference. And add warning for fail allocation.

For both of these:

Acked-by: Dave Hansen <dave.hansen@intel.com>

It's minor, but if you redo these, I'd appreciate a slightly different
form.  Instead of:

> @@ -239,8 +239,10 @@ static pmd_t *pti_user_pagetable_walk_pmd(unsigned long address)
>  static __init pte_t *pti_user_pagetable_walk_pte(unsigned long address)
>  {
>  	gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
> -	pmd_t *pmd = pti_user_pagetable_walk_pmd(address);
>  	pte_t *pte;
> +	pmd_t *pmd = pti_user_pagetable_walk_pmd(address);
> +	if (!pmd)
> +		return NULL;

I'd much rather see separation of code -- especially _important_ code
like an allocation -- from local variable definitions.  Like this:

	gfp_t gfp = (GFP_KERNEL | __GFP_NOTRACK | __GFP_ZERO);
	pmd_t *pmd;
  	pte_t *pte;

	pmd = pti_user_pagetable_walk_pmd(address);
	if (!pmd)
		return NULL;

That clearly separtes the variables from the _code_ and also nicely
pairs the action with the check for that action being successful.

      reply	other threads:[~2018-07-17 18:03 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-17  7:23 [PATCH v2 1/2] x86/pti: check the return value of pti_user_pagetable_walk_p4d Jiang Biao
2018-07-17  7:23 ` [PATCH v2 2/2] x86/pti: check the return value of pti_user_pagetable_walk_pmd Jiang Biao
2018-07-17 18:03   ` Dave Hansen [this message]

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=582ce2a4-072d-5744-5465-fbd07b68b53e@linux.intel.com \
    --to=dave.hansen@linux.intel.com \
    --cc=albcamus@gmail.com \
    --cc=hpa@zytor.com \
    --cc=jiang.biao2@zte.com.cn \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=zhong.weidong@zte.com.cn \
    /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

all inboxes | Powered by JetHome®