Received: by 10.213.65.68 with SMTP id h4csp532048imn; Fri, 16 Mar 2018 10:35:31 -0700 (PDT) X-Google-Smtp-Source: AG47ELv0cmGVWz/wz0vR+OjBpXpk3RfAARnCJWWfKeV0mQFYvlsecDD0JsaJ2cAEA9Eagq6soq2o X-Received: by 2002:a17:902:207:: with SMTP id 7-v6mr3074840plc.261.1521221731723; Fri, 16 Mar 2018 10:35:31 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521221731; cv=none; d=google.com; s=arc-20160816; b=YFJT8nc423/xui3u6JSGEUuRk8fx6KDwmHjgyt3dUUmsZ4RUr8FONA8c0y8YI0uqqJ rA4P5Fnp4ZBjGDjWpUX4tEhX3nW/h3LY77aref6MO2UF6Xa8Yf6Vfq0y3hIxkYqKiGpe b/aPHG3zEXrcBIByKew3INVeG6xiaVBsbPxHvgKJ/QuveWfPjvpsDZK0MHHWr0hHEsbv EBr8ZQpI8s/TnwiDGbepUUNkNQWcxoWxlseWUtBVMxX7vdldX63mVbe/ReFvf5x1P86S 3csFsbhIvkhbzHTVCJ13rPm9T7UHjak3esHDk2PQPRpYwSV3j87dXzYd37AupgBQ4nZE UWEg== 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=jsgowv+yTcENjUYygusZDe63NNUJ9hxZpKJHkrNERwQ=; b=G0ffxMkZCGyJ30/9KVAXCu5zMa5kh437ccL+buTVANlv9Owq/x6rDFV0lXgd4w8cvw lrr6xRYW+EeRIaaGktotRMg5NaoPJCL1Fhyr0v54YzauVScTqFzAUfoRA8GpRa7WVZJE OpXE2lH25ReyJAhc1Xjb3CH8XE9f0LPMSaO/WBL1yeNOBTbQ910KIzFI0W5DWMO2nbwo PKunZ5OUv/FSCJ1VIPV5Zip1xGj5z0E7rE6/GKFXoD55Uc/kh/6GnSpMvgeezHAxMBEJ 3acj6kCBru0CpFz4i4kTNdgFaH/3mt7L+t3DLXXATxnLxo1ZxCbmCtAN6oZQHxRstQsu dGDg== 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 w9-v6si6296318plp.425.2018.03.16.10.35.17; Fri, 16 Mar 2018 10:35:31 -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 S1753760AbeCPRdL (ORCPT + 99 others); Fri, 16 Mar 2018 13:33:11 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:34164 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753464AbeCPP1U (ORCPT ); Fri, 16 Mar 2018 11:27:20 -0400 Received: from localhost (LFbn-1-12247-202.w90-92.abo.wanadoo.fr [90.92.61.202]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 16827124A; Fri, 16 Mar 2018 15:27:19 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Seunghun Han , Borislav Petkov , Thomas Gleixner , Tony Luck , linux-edac Subject: [PATCH 4.4 20/63] x86/MCE: Serialize sysfs changes Date: Fri, 16 Mar 2018 16:22:52 +0100 Message-Id: <20180316152302.324771621@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180316152259.964532775@linuxfoundation.org> References: <20180316152259.964532775@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review 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.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Seunghun Han commit b3b7c4795ccab5be71f080774c45bbbcc75c2aaf upstream. The check_interval file in /sys/devices/system/machinecheck/machinecheck directory is a global timer value for MCE polling. If it is changed by one CPU, mce_restart() broadcasts the event to other CPUs to delete and restart the MCE polling timer and __mcheck_cpu_init_timer() reinitializes the mce_timer variable. If more than one CPU writes a specific value to the check_interval file concurrently, mce_timer is not protected from such concurrent accesses and all kinds of explosions happen. Since only root can write to those sysfs variables, the issue is not a big deal security-wise. However, concurrent writes to these configuration variables is void of reason so the proper thing to do is to serialize the access with a mutex. Boris: - Make store_int_with_restart() use device_store_ulong() to filter out negative intervals - Limit min interval to 1 second - Correct locking - Massage commit message Signed-off-by: Seunghun Han Signed-off-by: Borislav Petkov Signed-off-by: Thomas Gleixner Cc: Greg Kroah-Hartman Cc: Tony Luck Cc: linux-edac Cc: stable@vger.kernel.org Link: http://lkml.kernel.org/r/20180302202706.9434-1-kkamagui@gmail.com Signed-off-by: Greg Kroah-Hartman --- arch/x86/kernel/cpu/mcheck/mce.c | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c @@ -60,6 +60,9 @@ static DEFINE_MUTEX(mce_chrdev_read_mute smp_load_acquire(&(p)); \ }) +/* sysfs synchronization */ +static DEFINE_MUTEX(mce_sysfs_mutex); + #define CREATE_TRACE_POINTS #include @@ -2220,6 +2223,7 @@ static ssize_t set_ignore_ce(struct devi if (kstrtou64(buf, 0, &new) < 0) return -EINVAL; + mutex_lock(&mce_sysfs_mutex); if (mca_cfg.ignore_ce ^ !!new) { if (new) { /* disable ce features */ @@ -2232,6 +2236,8 @@ static ssize_t set_ignore_ce(struct devi on_each_cpu(mce_enable_ce, (void *)1, 1); } } + mutex_unlock(&mce_sysfs_mutex); + return size; } @@ -2244,6 +2250,7 @@ static ssize_t set_cmci_disabled(struct if (kstrtou64(buf, 0, &new) < 0) return -EINVAL; + mutex_lock(&mce_sysfs_mutex); if (mca_cfg.cmci_disabled ^ !!new) { if (new) { /* disable cmci */ @@ -2255,6 +2262,8 @@ static ssize_t set_cmci_disabled(struct on_each_cpu(mce_enable_ce, NULL, 1); } } + mutex_unlock(&mce_sysfs_mutex); + return size; } @@ -2262,8 +2271,19 @@ static ssize_t store_int_with_restart(st struct device_attribute *attr, const char *buf, size_t size) { - ssize_t ret = device_store_int(s, attr, buf, size); + unsigned long old_check_interval = check_interval; + ssize_t ret = device_store_ulong(s, attr, buf, size); + + if (check_interval == old_check_interval) + return ret; + + if (check_interval < 1) + check_interval = 1; + + mutex_lock(&mce_sysfs_mutex); mce_restart(); + mutex_unlock(&mce_sysfs_mutex); + return ret; }