Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752342AbdLGBWv (ORCPT ); Wed, 6 Dec 2017 20:22:51 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:11520 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752160AbdLGBWu (ORCPT ); Wed, 6 Dec 2017 20:22:50 -0500 From: Ding Tianhong Subject: [PATCH v3] ubsan: don't handle misaligned address when support unaligned access To: , Andrey Ryabinin , "linux-kernel@vger.kernel.org" , LinuxArm , David Laight Message-ID: <63dca1ee-bfd4-a5a0-050d-f0e3c94c6ae7@huawei.com> Date: Thu, 7 Dec 2017 09:21:10 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.177.23.32] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020205.5A2897D3.017B,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2014-11-16 11:51:01, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 74999e7c34bd1b538e16069f1884dfb9 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1812 Lines: 52 The ubsan always report Warning just like: UBSAN: Undefined behaviour in ../include/linux/etherdevice.h:386:9 load of misaligned address ffffffc069ba0482 for type 'long unsigned int' which requires 8 byte alignment CPU: 0 PID: 901 Comm: sshd Not tainted 4.xx+ #1 Hardware name: linux,dummy-virt (DT) Call trace: [] dump_backtrace+0x0/0x348 [] show_stack+0x20/0x30 [] dump_stack+0x144/0x1b4 [] ubsan_epilogue+0x18/0x74 [] __ubsan_handle_type_mismatch+0x1a0/0x25c [] dev_gro_receive+0x17d8/0x1830 [] napi_gro_receive+0x30/0x158 [] virtnet_receive+0xad4/0x1fa8 The reason is that when enable the CONFIG_UBSAN_ALIGNMENT, the ubsan will report the unaligned access even if the system support it (CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y), it will produce a lot of noise in the log and cause confusion. This patch will close the detection of unaligned access when the system support unaligned access. Signed-off-by: Ding Tianhong --- lib/ubsan.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/ubsan.c b/lib/ubsan.c index fb0409d..0799678 100644 --- a/lib/ubsan.c +++ b/lib/ubsan.c @@ -321,9 +321,10 @@ void __ubsan_handle_type_mismatch(struct type_mismatch_data *data, if (!ptr) handle_null_ptr_deref(data); - else if (data->alignment && !IS_ALIGNED(ptr, data->alignment)) - handle_missaligned_access(data, ptr); - else + else if (data->alignment && !IS_ALIGNED(ptr, data->alignment)) { + if (!IS_ENABLED(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)) + handle_missaligned_access(data, ptr); + } else handle_object_size_mismatch(data, ptr); } EXPORT_SYMBOL(__ubsan_handle_type_mismatch); -- 1.8.3.1