From dev-return-68426-archive-asf-public=cust-asf.ponee.io@zookeeper.apache.org Mon Mar 26 11:17:14 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E2CB7180649 for ; Mon, 26 Mar 2018 11:17:13 +0200 (CEST) Received: (qmail 17116 invoked by uid 500); 26 Mar 2018 09:17:12 -0000 Mailing-List: contact dev-help@zookeeper.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zookeeper.apache.org Delivered-To: mailing list dev@zookeeper.apache.org Received: (qmail 17104 invoked by uid 99); 26 Mar 2018 09:17:12 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Mar 2018 09:17:12 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id CC952C1241 for ; Mon, 26 Mar 2018 09:17:11 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -109.511 X-Spam-Level: X-Spam-Status: No, score=-109.511 tagged_above=-999 required=6.31 tests=[ENV_AND_HDR_SPF_MATCH=-0.5, KAM_ASCII_DIVIDERS=0.8, RCVD_IN_DNSWL_MED=-2.3, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01, USER_IN_DEF_SPF_WL=-7.5, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id fpMXXQwHYUHj for ; Mon, 26 Mar 2018 09:17:11 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 36FCA60E04 for ; Mon, 26 Mar 2018 09:17:02 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 67EA5E017A for ; Mon, 26 Mar 2018 09:17:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 22688214F3 for ; Mon, 26 Mar 2018 09:17:00 +0000 (UTC) Date: Mon, 26 Mar 2018 09:17:00 +0000 (UTC) From: "lujie (JIRA)" To: dev@zookeeper.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (ZOOKEEPER-3009) Potential NPE: class NIOServerCnxn has two method can return null MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/ZOOKEEPER-3009?page=3Dcom.atla= ssian.jira.plugin.system.issuetabpanels:all-tabpanel ] lujie updated ZOOKEEPER-3009: ----------------------------- Description:=20 After ZK-3006 ,=C2=A0I develop a very simple static analysis tool to find o= ther Potential NPE like ZK-3006. This bug is found by this tool , I careful= ly studied it,=C2=A0 but i am a=C2=A0newbie here so i may be wrong, hopeful= ly someone can confirm this bug and help me=C2=A0improve this tool. h2. Bug=C2=A0description: =C2=A0class NIOServerCnxn has three method :getSocketAddress,getRemoteSocke= tAddress can return null just like : {code:java} // code placeholder if (sock.isOpen() =3D=3D false) { return null; } {code} some of their caller give null checker, some(total 3 list in below) are not= .=C2=A0 {code:java} // ServerCnxn#getConnectionInfo Map info =3D new LinkedHashMap(); info.put("remote_socket_address", getRemoteSocketAddress());// Map.put will= throw NPE if parameter is null //IPAuthenticationProvider#handleAuthentication tring id =3D cnxn.getRemoteSocketAddress().getAddress().getHostAddress(); cnxn.addAuthInfo(new Id(getScheme(), id));// finally call Set.add(it will t= hrow NPE if parameter is null ) //NIOServerCnxnFactory#addCnxn InetAddress addr =3D cnxn.getSocketAddress(); Set set =3D ipMap.get(addr);// Map.get will throw NPE if par= ameter is null{code} I think we should add null check in above three caller . =C2=A0 was: After ZK-3006 ,=C2=A0I develop a very simple static analysis tool to find o= ther Potential NPE like ZK-3006, this bug is found by this tool ;Although i= carefully studied it, but due to i am a=C2=A0newbie here, hopefully someon= e can confirm it and help me=C2=A0improve this tool. h2. Bug=C2=A0description: =C2=A0class NIOServerCnxn has three method :getSocketAddress,getRemoteSocke= tAddress can return null just like : {code:java} // code placeholder if (sock.isOpen() =3D=3D false) { return null; } {code} some of their caller give null checker, some(total 3 list in below) are not= .=C2=A0 {code:java} // ServerCnxn#getConnectionInfo Map info =3D new LinkedHashMap(); info.put("remote_socket_address", getRemoteSocketAddress());// Map.put will= throw NPE if parameter is null //IPAuthenticationProvider#handleAuthentication tring id =3D cnxn.getRemoteSocketAddress().getAddress().getHostAddress(); cnxn.addAuthInfo(new Id(getScheme(), id));// finally call Set.add(it will t= hrow NPE if parameter is null ) //NIOServerCnxnFactory#addCnxn InetAddress addr =3D cnxn.getSocketAddress(); Set set =3D ipMap.get(addr);// Map.get will throw NPE if par= ameter is null{code} I think we should add null check in above three caller . =C2=A0 > Potential NPE: class NIOServerCnxn has two method can return null > ----------------------------------------------------------------- > > Key: ZOOKEEPER-3009 > URL: https://issues.apache.org/jira/browse/ZOOKEEPER-3009 > Project: ZooKeeper > Issue Type: Bug > Reporter: lujie > Priority: Major > > After ZK-3006 ,=C2=A0I develop a very simple static analysis tool to find= other Potential NPE like ZK-3006. This bug is found by this tool , I caref= ully studied it,=C2=A0 but i am a=C2=A0newbie here so i may be wrong, hopef= ully someone can confirm this bug and help me=C2=A0improve this tool. > h2. Bug=C2=A0description: > =C2=A0class NIOServerCnxn has three method :getSocketAddress,getRemoteSoc= ketAddress can return null just like : > {code:java} > // code placeholder > if (sock.isOpen() =3D=3D false) { > return null; > } > {code} > some of their caller give null checker, some(total 3 list in below) are n= ot.=C2=A0 > {code:java} > // ServerCnxn#getConnectionInfo > Map info =3D new LinkedHashMap(); > info.put("remote_socket_address", getRemoteSocketAddress());// Map.put wi= ll throw NPE if parameter is null > //IPAuthenticationProvider#handleAuthentication > tring id =3D cnxn.getRemoteSocketAddress().getAddress().getHostAddress(); > cnxn.addAuthInfo(new Id(getScheme(), id));// finally call Set.add(it will= throw NPE if parameter is null ) > //NIOServerCnxnFactory#addCnxn > InetAddress addr =3D cnxn.getSocketAddress(); > Set set =3D ipMap.get(addr);// Map.get will throw NPE if p= arameter is null{code} > I think we should add null check in above three caller . > =C2=A0 -- This message was sent by Atlassian JIRA (v7.6.3#76005)