Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755765AbdLVBvF (ORCPT ); Thu, 21 Dec 2017 20:51:05 -0500 Received: from LGEAMRELO12.lge.com ([156.147.23.52]:53134 "EHLO lgeamrelo12.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753656AbdLVBvE (ORCPT ); Thu, 21 Dec 2017 20:51:04 -0500 X-Original-SENDERIP: 156.147.1.127 X-Original-MAILFROM: iamjoonsoo.kim@lge.com X-Original-SENDERIP: 10.177.222.180 X-Original-MAILFROM: iamjoonsoo.kim@lge.com Date: Fri, 22 Dec 2017 10:51:15 +0900 From: Joonsoo Kim To: Andrew Morton Cc: Andrey Ryabinin , Alexander Potapenko , Dmitry Vyukov , kasan-dev@googlegroups.com, linux-mm@kvack.org, linux-kernel@vger.kernel.org, Namhyung Kim , Wengang Wang Subject: Re: [PATCH 00/18] introduce a new tool, valid access checker Message-ID: <20171222015114.GC1729@js1304-P5Q-DELUXE> References: <1511855333-3570-1-git-send-email-iamjoonsoo.kim@lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1511855333-3570-1-git-send-email-iamjoonsoo.kim@lge.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1863 Lines: 48 On Tue, Nov 28, 2017 at 04:48:35PM +0900, js1304@gmail.com wrote: > From: Joonsoo Kim > > Hello, > > This patchset introduces a new tool, valid access checker. > > Vchecker is a dynamic memory error detector. It provides a new debug feature > that can find out an un-intended access to valid area. Valid area here means > the memory which is allocated and allowed to be accessed by memory owner and > un-intended access means the read/write that is initiated by non-owner. > Usual problem of this class is memory overwritten. > > Most of debug feature focused on finding out un-intended access to > in-valid area, for example, out-of-bound access and use-after-free, and, > there are many good tools for it. But, as far as I know, there is no good tool > to find out un-intended access to valid area. This kind of problem is really > hard to solve so this tool would be very useful. > > This tool doesn't automatically catch a problem. Manual runtime configuration > to specify the target object is required. > > Note that there was a similar attempt for the debugging overwritten problem > however it requires manual code modifying and recompile. > > http://lkml.kernel.org/r/<20171117223043.7277-1-wen.gang.wang@oracle.com> > > To get more information about vchecker, please see a documention at > the last patch. > > Patchset can also be available at > > https://github.com/JoonsooKim/linux/tree/vchecker-master-v1.0-next-20171122 > > Enjoy it. > > Thanks. Hello, Andrew. Before the fixing some build failure on this patchset, I'd like to know other reviewer's opinion on this patchset, especially, yours. :) There are some interests on this patchset from some developers. Wengang come up with a very similar change and Andi said that this looks useful. Do you think that this tool is useful and can be merged? Thanks.