Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751898AbdFKIIx (ORCPT ); Sun, 11 Jun 2017 04:08:53 -0400 Received: from mail-wr0-f170.google.com ([209.85.128.170]:36337 "EHLO mail-wr0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751813AbdFKIIu (ORCPT ); Sun, 11 Jun 2017 04:08:50 -0400 Subject: Re: [PATCH v2] brcmfmac: Fix glom_skb leak in brcmf_sdiod_recv_chain To: Peter Housel Cc: Andy Shevchenko , Franky Lin , Hante Meuleman , Kalle Valo , Pieter-Paul Giesberts , Christian Daudt , Florian Fainelli , Florian Westphal , Martin Blumenstingl , "open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER" , "open list:BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER" , "open list:NETWORKING DRIVERS" , open list References: <1496442569-11307-1-git-send-email-housel@acm.org> <801f5209-f5a0-7414-f8f4-1500178a680b@broadcom.com> <705684CB-D155-45DC-8146-157A536F9FBA@acm.org> From: Arend van Spriel Message-ID: Date: Sun, 11 Jun 2017 10:08:47 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <705684CB-D155-45DC-8146-157A536F9FBA@acm.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1887 Lines: 43 On 11-06-17 02:18, Peter Housel wrote: > >> On Jun 10, 2017, at 12:27 PM, Arend van Spriel wrote: >> >> On 03-06-17 17:36, Andy Shevchenko wrote: >>> On Sat, Jun 3, 2017 at 1:29 AM, Peter S. Housel wrote: >>>> An earlier change to this function (3bdae810721b) fixed a leak in the >>>> case of an unsuccessful call to brcmf_sdiod_buffrw(). However, the >>>> glom_skb buffer, used for emulating a scattering read, is never used >>>> or referenced after its contents are copied into the destination >>>> buffers, and therefore always needs to be freed by the end of the >>>> function. >> >> [snip] >> >>>> + skb_queue_walk(pktq, skb) { >>>> + memcpy(skb->data, glom_skb->data, skb->len); >>>> + skb_pull(glom_skb, skb->len); >>>> + } >>>> } >>> >>>> + brcmu_pkt_buf_free_skb(glom_skb); >>> >>> Can we just add this one line instead or I'm missing something? >> >> I guess. We don't want to walk the packet queue if glom_skb is not >> carrying data due to brcmf_sdiod_buffrw() failure. >> >> So I would go with the patch below as brcmu_pkt_buf_free_skb() simply >> ignores null pointer. > > I’m fine with this, or indeed most of the other proposed solutions. The important thing is that the leak is fixed; in the driver's current state I was able to run our wearable device out of memory in just over 20 seconds running iperf. Sure. The reason behind the suggestion from Franky was to get rid of the label inside branch and I agree with that. To address Andy's comment I think my proposal should tackle that. Just out of curiosity, we added the broken-sg-support thing for OMAP platform. So what platform/mmc-host are you using. I try to keep an overview where this workaround is needed. Regards, Arend