From mboxrd@z Thu Jan 1 00:00:00 1970 From: Joe Perches Subject: Re: KASAN: use-after-free Read in rds_tcp_tune Date: Wed, 14 Feb 2018 09:02:08 -0800 Message-ID: <1518627728.3678.2.camel@perches.com> References: <001a1141a524c513ca05628d8ad4@google.com> <20180112183046.GA26098@oracle.com> <20180214152109.GF11528@oracle.com> <20180214153555.GG11528@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Cc: syzbot , David Miller , LKML , linux-rdma@vger.kernel.org, netdev , rds-devel@oss.oracle.com, Santosh Shilimkar , syzkaller-bugs@googlegroups.com To: Dmitry Vyukov , Sowmini Varadhan Return-path: Received: from smtprelay0220.hostedemail.com ([216.40.44.220]:38725 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1032907AbeBNRCN (ORCPT ); Wed, 14 Feb 2018 12:02:13 -0500 In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On Wed, 2018-02-14 at 16:55 +0100, Dmitry Vyukov wrote: > On Wed, Feb 14, 2018 at 4:35 PM, Sowmini Varadhan wrote: > > btw, checkpatch.pl complains about the syzbot*@syzkaller.appspotmail.com > > addresses as "Unrecognized email address", we should fix that > > error from checkpatch at some point. > > Interesting. Looking at checkpatch.pl I think it wants all addresses > to be in <>, i.e. > Reported-by: > There probably was some reason to enforce this, so I think I will > change the syzbot email template to include <>. > Thanks! Not really. It's the somewhat unusual + in the address that perl needs quoted before a substitution. I believe this fixes it in checkpatch. --- scripts/checkpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 3d4040322ae1..2b8397da39d3 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1075,7 +1075,7 @@ sub parse_email { } elsif ($formatted_email =~ /(\S+\@\S+)(.*)$/) { $address = $1; $comment = $2 if defined $2; - $formatted_email =~ s/$address.*$//; + $formatted_email =~ s/\Q$address\E.*$//; $name = $formatted_email; $name = trim($name); $name =~ s/^\"|\"$//g;