Received: by 10.223.185.116 with SMTP id b49csp2557216wrg; Thu, 15 Feb 2018 13:35:51 -0800 (PST) X-Google-Smtp-Source: AH8x227zitFCbjeyEaA8w1RCZfm/XrZy2fZMLZe/3f0iPO3CjSqD5aSU+27IlqwkvWhHkpgn+JnS X-Received: by 2002:a17:902:6f08:: with SMTP id w8-v6mr3779565plk.155.1518730551250; Thu, 15 Feb 2018 13:35:51 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1518730551; cv=none; d=google.com; s=arc-20160816; b=RPVYos0JGgDEfdAdlvgxEDRUdHqh+F3GBc2BfsOrdP4rowF23OqoFAWFVZN7OxuX+4 cbhTYx3ydSiVvLBXEV9EAn4DKG0KnIXkh5pcc+cdmg2hHBfKQHIEKJyv7+a3i5w87Zbk wyzn605QtHUxm+1/grN5/yESL5L5Xau8oMbPYPmNxlzdTkfYe4VpbDtGD9iSkA/KYfwu xl78qJLnuXHJDFMBVne5u5arX8fSP5vI8tedYTZBxar3SI4sBr4zbQX1Dfg3cq+xr4+0 Vxn2DNZlvR8Z47OUbbm8dwd7IavPUYNgTJ4qhocpeme8U1TP8bh5wMZr36MmfO9htqE6 RvYw== 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 :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=rX4TrAITbric8WLnOHAyXG2oeUwM/qMus53sohZJrM8=; b=qi9JiLtuZ05dYQJTyWsnzg3kPju8qfkZ4Xi9hEXfRcHpXTloEZ8g+yKBHlIreVcKWY GVe+1KMUQTUGg0h+03CauvhTS0dosI0lxo8uqzXYcamqH+6csNfIT3BTCW97e1qPV+VD 7jiYyvI9PVQx7m6La30aLo6U0q9M4I5FDTUF6Le7/Kctw6uARxuE+8E1UMq9CsZ3FHK7 B4BpS3ukjHwamidoOgGIm8PFJhamJZlCEdswC6GukWsn5/L8Mf1jcYG2e4SpnEayhG0d +QsoENtsk2HLFVNgsZnPJOWHSKHMZ+xyA+O1Uxvld+ulKoXFnSsQ6jDhF6jctS9FRKZR nVEw== 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 s21si4402460pfm.325.2018.02.15.13.35.37; Thu, 15 Feb 2018 13:35:51 -0800 (PST) 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 S1162854AbeBOP3F (ORCPT + 99 others); Thu, 15 Feb 2018 10:29:05 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:54254 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1163926AbeBOP3B (ORCPT ); Thu, 15 Feb 2018 10:29:01 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id C3340BD1; Thu, 15 Feb 2018 15:29:00 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Benjamin Gaignard , Daniel Lezcano , Alexandre Torgue , Linus Torvalds , Maxime Coquelin , Peter Zijlstra , Thomas Gleixner , Ingo Molnar Subject: [PATCH 4.9 79/88] clocksource/drivers/stm32: Fix kernel panic with multiple timers Date: Thu, 15 Feb 2018 16:17:46 +0100 Message-Id: <20180215151233.379185763@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180215151222.437136975@linuxfoundation.org> References: <20180215151222.437136975@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Daniel Lezcano commit e0aeca3d8cbaea514eb98df1149faa918f9ec42d upstream. The current code hides a couple of bugs: - The global variable 'clock_event_ddata' is overwritten each time the init function is invoked. This is fixed with a kmemdup() instead of assigning the global variable. That prevents a memory corruption when several timers are defined in the DT. - The clockevent's event_handler is NULL if the time framework does not select the clockevent when registering it, this is fine but the init code generates in any case an interrupt leading to dereference this NULL pointer. The stm32 timer works with shadow registers, a mechanism to cache the registers. When a change is done in one buffered register, we need to artificially generate an event to force the timer to copy the content of the register to the shadowed register. The auto-reload register (ARR) is one of the shadowed register as well as the prescaler register (PSC), so in order to force the copy, we issue an event which in turn leads to an interrupt and the NULL dereference. This is fixed by inverting two lines where we clear the status register before enabling the update event interrupt. As this kernel crash is resulting from the combination of these two bugs, the fixes are grouped into a single patch. Tested-by: Benjamin Gaignard Signed-off-by: Daniel Lezcano Acked-by: Benjamin Gaignard Cc: Alexandre Torgue Cc: Linus Torvalds Cc: Maxime Coquelin Cc: Peter Zijlstra Cc: Thomas Gleixner Link: http://lkml.kernel.org/r/1515418139-23276-11-git-send-email-daniel.lezcano@linaro.org Signed-off-by: Ingo Molnar Signed-off-by: Greg Kroah-Hartman --- drivers/clocksource/timer-stm32.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) --- a/drivers/clocksource/timer-stm32.c +++ b/drivers/clocksource/timer-stm32.c @@ -106,6 +106,10 @@ static int __init stm32_clockevent_init( unsigned long rate, max_delta; int irq, ret, bits, prescaler = 1; + data = kmemdup(&clock_event_ddata, sizeof(*data), GFP_KERNEL); + if (!data) + return -ENOMEM; + clk = of_clk_get(np, 0); if (IS_ERR(clk)) { ret = PTR_ERR(clk); @@ -156,8 +160,8 @@ static int __init stm32_clockevent_init( writel_relaxed(prescaler - 1, data->base + TIM_PSC); writel_relaxed(TIM_EGR_UG, data->base + TIM_EGR); - writel_relaxed(TIM_DIER_UIE, data->base + TIM_DIER); writel_relaxed(0, data->base + TIM_SR); + writel_relaxed(TIM_DIER_UIE, data->base + TIM_DIER); data->periodic_top = DIV_ROUND_CLOSEST(rate, prescaler * HZ); @@ -184,6 +188,7 @@ err_iomap: err_clk_enable: clk_put(clk); err_clk_get: + kfree(data); return ret; }