Received: by 2002:a25:8b12:0:0:0:0:0 with SMTP id i18csp1385131ybl; Wed, 28 Aug 2019 13:57:31 -0700 (PDT) X-Google-Smtp-Source: APXvYqwtLzaIgmeeVJfp3bTAy2zjGC1OT9xB7q84RAbu+rR3G3sSRRKp28alfTS8B5j62LueV9p3 X-Received: by 2002:a17:90a:bb91:: with SMTP id v17mr5935695pjr.84.1567025850919; Wed, 28 Aug 2019 13:57:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1567025850; cv=none; d=google.com; s=arc-20160816; b=y5365iIVmlzNz3ty7jhEg1pYuusGA5fwyPuL+HSKqPMOWS0QR+LdHmd6gTqhPlF0/E OEzlOofnmXvj3fjF7PXEV/TXMSKnjE71+1koF4jd2TVw3N5g4/h1RQ8+mwrk7ZCWi8SX V1tTmhQoTl8vjgM/yTTVMBOrUUXSgkGnm79i5CSzdoIPd7uT26uPyKozRdVGn7Mijkri 4hycGY52QW/z+LZzhSuu4dVdMk3pgSUEsBY8fW62u+PgruxZIw8QHc40tOgNblD0UZv9 Nyv4NBR0MRQbIwL5qS64gdZXnWEGB4GjEuPouqcKKAHNYfu4H984NkmViMFxh1UkAuvD gRkA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date; bh=snsGLQ2CtVZg6bb1HjX4z8/npFSH9L6574RYEDksL74=; b=P/CU19kaLHjn7mCPUhbCCgVjlmQ3KAJTIWY/dIBL6jq124H5UZukq+BPp51yPCGU7Z Bk19/7VjU1Yv3+uKPPxWqC/mKx0gGLKfo20gGfqcY24MHgstuxe8ViBscv0crhv1qg72 025mvdmrFOTzahIB10LXCZf+ucGUs55C6Tf6QcXh/AmNAZTTxr+ySDlvuBAVz2kylUDS 7I3Pa/1eq1/0QQJySC/mRaobY2mXKPmb2vXD854C1MmlXBKInuZN1gdbD71K/WPE7EHt 9FzSQ0esmxlRKQNl0cG+xIxMVQqREhKthVmuFUGKwgEDRjZnGP42R3XGQc+4zOqjGDFx wApg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v23si141052pgb.496.2019.08.28.13.57.14; Wed, 28 Aug 2019 13:57:30 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727075AbfH1UyR (ORCPT + 99 others); Wed, 28 Aug 2019 16:54:17 -0400 Received: from Galois.linutronix.de ([193.142.43.55]:48508 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726820AbfH1UyQ (ORCPT ); Wed, 28 Aug 2019 16:54:16 -0400 Received: from p5de0b6c5.dip0.t-ipconnect.de ([93.224.182.197] helo=nanos) by Galois.linutronix.de with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1i34xI-0004Oa-0l; Wed, 28 Aug 2019 22:54:12 +0200 Date: Wed, 28 Aug 2019 22:54:11 +0200 (CEST) From: Thomas Gleixner To: LKML cc: x86@kernel.org, Song Liu , Joerg Roedel , Dave Hansen , Andy Lutomirski , Peter Zijlstra , Rik van Riel Subject: [patch V2 1/2] x86/mm/pti: Handle unaligned address gracefully in pti_clone_pagetable() In-Reply-To: <20190828143123.971884723@linutronix.de> Message-ID: References: <20190828142445.454151604@linutronix.de> <20190828143123.971884723@linutronix.de> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-Linutronix-Spam-Score: -1.0 X-Linutronix-Spam-Level: - X-Linutronix-Spam-Status: No , -1.0 points, 5.0 required, ALL_TRUSTED=-1,SHORTCIRCUIT=-0.0001 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Song Liu pti_clone_pmds() assumes that the supplied address is either: - properly PUD/PMD aligned or - the address is actually mapped which means that independent of the mapping level (PUD/PMD/PTE) the next higher mapping exist. If that's not the case the unaligned address can be incremented by PUD or PMD size wrongly. All callers supply mapped and/or aligned addresses, but for robustness sake, it's better to handle that case proper and to emit a warning. [ tglx: Rewrote changelog and added WARN_ON_ONCE() ] Signed-off-by: Song Liu Signed-off-by: Thomas Gleixner --- V2: Negate P[UM]D_MASK for checking whether the offset part is 0 --- arch/x86/mm/pti.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/arch/x86/mm/pti.c +++ b/arch/x86/mm/pti.c @@ -330,13 +330,15 @@ pti_clone_pgtable(unsigned long start, u pud = pud_offset(p4d, addr); if (pud_none(*pud)) { - addr += PUD_SIZE; + WARN_ON_ONCE(addr & ~PUD_MASK); + addr = round_up(addr + 1, PUD_SIZE); continue; } pmd = pmd_offset(pud, addr); if (pmd_none(*pmd)) { - addr += PMD_SIZE; + WARN_ON_ONCE(addr & ~PMD_MASK); + addr = round_up(addr + 1, PMD_SIZE); continue; }