public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@oracle.com>
To: kernel-janitors@vger.kernel.org
Subject: Re: [bug report] net: hns: Fix ping failed when use net bridge and send multicast
Date: Fri, 21 Dec 2018 09:59:20 +0000	[thread overview]
Message-ID: <20181221095920.GB2240@kadam> (raw)
In-Reply-To: <20181220094600.GA13233@kadam>

On Fri, Dec 21, 2018 at 11:40:36AM +0800, liuyonglong wrote:
> Hi, Dan Carpenter:
> 
> On 2018/12/20 17:46, Dan Carpenter wrote:
> > Hello Yonglong Liu,
> > 
> > The patch 6adafc356e20: "net: hns: Fix ping failed when use net
> > bridge and send multicast" from Dec 15, 2018, leads to the following
> > static checker warning:
> > 
> > 	drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.c:2822 set_promisc_tcam_enable()
> > 	error: testing array offset 'port' after use.
> > 
> > drivers/net/ethernet/hisilicon/hns/hns_dsaf_main.c
> >   2786  
> >   2787          mac_cb = dsaf_dev->mac_cb[port];
> >                                    ^^^^^^^^^^^^
> > The ->mac_cb[] array has 6 elements.
> > 
> >   2788          (void)hns_mac_get_inner_port_num(mac_cb, 0, &port_num);
> >   2789          tbl_tcam_ucast.tbl_ucast_out_port = port_num;
> >   2790  
> >   2791          /* config uc vague table */
> >   2792          hns_dsaf_tcam_uc_cfg_vague(dsaf_dev, entry_index, &tbl_tcam_data_uc,
> >   2793                                     &tbl_tcam_mask_uc, &tbl_tcam_ucast);
> >   2794  
> >   2795          /* update software entry */
> >   2796          soft_mac_entry = priv->soft_mac_tbl;
> >   2797          soft_mac_entry += entry_index;
> >   2798          soft_mac_entry->index = entry_index;
> >   2799          soft_mac_entry->tcam_key.high.val = mac_key.high.val;
> >   2800          soft_mac_entry->tcam_key.low.val = mac_key.low.val;
> >   2801          /* step back to the START for mc. */
> >   2802          soft_mac_entry = priv->soft_mac_tbl;
> >   2803  
> >   2804          /* 2. set promisc multicast vague tcam entry. */
> >   2805          entry_index = hns_dsaf_find_empty_mac_entry_reverse(dsaf_dev);
> >   2806          if (entry_index = DSAF_INVALID_ENTRY_IDX) {
> >   2807                  dev_err(dsaf_dev->dev,
> >   2808                          "enable mc promisc failed (port:%#x)\n",
> >   2809                          port);
> >   2810                  return;
> >   2811          }
> >   2812  
> >   2813          memset(&mask_entry, 0x0, sizeof(mask_entry));
> >   2814          memset(&mask_key, 0x0, sizeof(mask_key));
> >   2815          memset(&temp_key, 0x0, sizeof(temp_key));
> >   2816          mask_entry.addr[0] = 0x01;
> >   2817          hns_dsaf_set_mac_key(dsaf_dev, &mask_key, mask_entry.in_vlan_id,
> >   2818                               port, mask_entry.addr);
> >   2819          tbl_tcam_mcast.tbl_mcast_item_vld = 1;
> >   2820          tbl_tcam_mcast.tbl_mcast_old_en = 0;
> >   2821  
> >   2822          if (port < DSAF_SERVICE_NW_NUM) {
> >                     ^^^^^^^^^^^^^^^^^^^^^^^^^^
> > 
> >   2823                  mskid = port;
> >   2824          } else if (port >= DSAF_BASE_INNER_PORT_NUM) {
> >                            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> > 
> > Here we are testing if "port" is over 127 but we are so toasted if
> > that condition is true.
> > 
> 
> set_promisc_tcam_enable is only called by hns_dsaf_set_promisc_tcam,
> and hns_dsaf_set_promisc_tcam is only called by hns_mac_set_promisc.
> hns_mac_set_promisc pass "mac_cb->mac_id" to the parameter "port", so the range of "port" is equals to "mac_cb->mac_id".
> 
> When hns_mac_init, "mac_cb->mac_id" is limited to smaller than 6, so it's no problem.

If it's 6 then it is one element past the end of the array.

> 
> So maybe this case "port >= DSAF_BASE_INNER_PORT_NUM" can never touch, need delete.
> 
> I wanna know if u just test this function only, and pass 127 to the parameter "port"?
> 

This is from static analysis not testing.  Also I looked lower in the
function and just removing the conditions is not enough to fix the bugs.

  2821  
  2822          if (port < DSAF_SERVICE_NW_NUM) {
  2823                  mskid = port;
  2824          } else if (port >= DSAF_BASE_INNER_PORT_NUM) {
  2825                  mskid = port - DSAF_BASE_INNER_PORT_NUM + DSAF_SERVICE_NW_NUM;
  2826          } else {
  2827                  dev_err(dsaf_dev->dev, "%s,pnum(%d)error,key(%#x:%#x)\n",
  2828                          dsaf_dev->ae_dev.name, port,
  2829                          mask_key.high.val, mask_key.low.val);
  2830                  return;
  2831          }
  2832  
  2833          dsaf_set_bit(tbl_tcam_mcast.tbl_mcast_port_msk[mskid / 32],
                                                               ^^^^^^^^^^
Since mskid is alway 0-5, that means that mskid / 32 is always zero.

  2834                       mskid % 32, 1);
  2835          memcpy(&temp_key, &mask_key, sizeof(mask_key));
  2836          hns_dsaf_tcam_mc_cfg_vague(dsaf_dev, entry_index, &tbl_tcam_data_mc,
  2837                                     (struct dsaf_tbl_tcam_data *)(&mask_key),
  2838                                     &tbl_tcam_mcast);
  2839  

regards,
dan carpenter

  parent reply	other threads:[~2018-12-21  9:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-20  9:46 [bug report] net: hns: Fix ping failed when use net bridge and send multicast Dan Carpenter
2018-12-21  6:18 ` liuyonglong
2018-12-21  9:59 ` Dan Carpenter [this message]
2018-12-21 10:00 ` Dan Carpenter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20181221095920.GB2240@kadam \
    --to=dan.carpenter@oracle.com \
    --cc=kernel-janitors@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox