Received: by 2002:a05:6a10:206:0:0:0:0 with SMTP id 6csp5679630pxj; Wed, 23 Jun 2021 06:48:15 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxKyqkTRdXMrlCJgHY4n9UKMK1teFMBpKqhWSmg8cAZXsChCRG4wSbpIpvaS3pjv/y79rkD X-Received: by 2002:a05:6402:198:: with SMTP id r24mr3262341edv.93.1624456095593; Wed, 23 Jun 2021 06:48:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1624456095; cv=none; d=google.com; s=arc-20160816; b=DmVAqfc8L+cQGKZ2Dl9io2YxDDDTBAh4SQ67QRvkMfPvlQCmxRqk5ME+ptj3/NdXKG Bx+8LxHawHo19DLVvlsStam5O2NnbCBwNXjLOYoo9K7yCR6tS0tTa309fcXbtX+PgFxT zENdEvkKpKpxySylN6Xm1M6ob5I+IVBtYNNPNC1rfAJe44trS0BT7Ph1ENpR1pziPo34 cHLi+w7jbQu9xgv189nFJcSXGaAKgec1IJmuhOcBaaCgFJh0+JYZOCMrHUVpsuhL7CAH U9jWZevisd5Ql7sx/rubFYk424HEaNYkqAHRhkC0M4l9MErVqpAfYWC1PjXkEPe5VloA tK7w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=kBlelMXFtags9reEVWXWIIQ3MQDewMt8qFPhzH390XA=; b=L6XJpX93X4l8GBMAesBJncsWHXQnnKxNL0Utck3jrFCfPOvGmtqYtGP7EpLqd/TQPH 4Q4CXHB3bLjGlNoj8CwQ8ZUybwTO71nZNX5JLJhq7Uowk6llCHJ1mkLlnn13Ura8ZUqq 1eHYsVq4gHjyUF7hrWoNjaFwzP9KGuikS3QexXWBZqMDicr0//aNfl8IsYlPLyjbS5fh SOljXrxWOf0b9behh5Bqo/gTRLiOBc01lnxN7MLmmXSaxnNyr5MFAzclC+0+HIYbOGDo Dt+NH2EikepyeFuMbG4d1xC8gcTihLWsYjI7igFTmm3E/oSub9xe9P69s0Nd2x4m5yzd rYbg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id l19si17997761eje.408.2021.06.23.06.47.53; Wed, 23 Jun 2021 06:48:15 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230306AbhFWNrG (ORCPT + 99 others); Wed, 23 Jun 2021 09:47:06 -0400 Received: from foss.arm.com ([217.140.110.172]:35574 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230206AbhFWNrG (ORCPT ); Wed, 23 Jun 2021 09:47:06 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 840CEED1; Wed, 23 Jun 2021 06:44:48 -0700 (PDT) Received: from localhost (unknown [10.1.195.40]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 238D33F718; Wed, 23 Jun 2021 06:44:48 -0700 (PDT) Date: Wed, 23 Jun 2021 14:44:46 +0100 From: Ionela Voinescu To: Viresh Kumar Cc: Rafael Wysocki , linux-pm@vger.kernel.org, Vincent Guittot , Qian Cai , "Rafael J. Wysocki" , linux-kernel@vger.kernel.org Subject: Re: [PATCH V3 1/4] cpufreq: cppc: Fix potential memleak in cppc_cpufreq_cpu_init Message-ID: <20210623134446.GA12411@arm.com> References: <579689469ed8a7dfd68dcbb41e9191472799a326.1624266901.git.viresh.kumar@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <579689469ed8a7dfd68dcbb41e9191472799a326.1624266901.git.viresh.kumar@linaro.org> User-Agent: Mutt/1.9.4 (2018-02-28) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Monday 21 Jun 2021 at 14:49:34 (+0530), Viresh Kumar wrote: > It's a classic example of memleak, we allocate something, we fail and > never free the resources. > > Make sure we free all resources on policy ->init() failures. > > Fixes: a28b2bfc099c ("cppc_cpufreq: replace per-cpu data array with a list") This is on me, thanks for the fix! Might be better for this to be separate from the series, but I suppose all will be going in 5.14 anyway. > Tested-by: Vincent Guittot > Signed-off-by: Viresh Kumar > --- > drivers/cpufreq/cppc_cpufreq.c | 30 ++++++++++++++++++++---------- > 1 file changed, 20 insertions(+), 10 deletions(-) > > diff --git a/drivers/cpufreq/cppc_cpufreq.c b/drivers/cpufreq/cppc_cpufreq.c > index be4f62e2c5f1..35b8ae66d1fb 100644 > --- a/drivers/cpufreq/cppc_cpufreq.c > +++ b/drivers/cpufreq/cppc_cpufreq.c > @@ -256,6 +256,16 @@ static struct cppc_cpudata *cppc_cpufreq_get_cpu_data(unsigned int cpu) > return NULL; > } > > +static void cppc_cpufreq_put_cpu_data(struct cpufreq_policy *policy) > +{ > + struct cppc_cpudata *cpu_data = policy->driver_data; > + > + list_del(&cpu_data->node); > + free_cpumask_var(cpu_data->shared_cpu_map); > + kfree(cpu_data); > + policy->driver_data = NULL; > +} > + > static int cppc_cpufreq_cpu_init(struct cpufreq_policy *policy) > { > unsigned int cpu = policy->cpu; > @@ -309,7 +319,8 @@ static int cppc_cpufreq_cpu_init(struct cpufreq_policy *policy) > default: > pr_debug("Unsupported CPU co-ord type: %d\n", > policy->shared_type); > - return -EFAULT; > + ret = -EFAULT; > + goto out; > } > > /* > @@ -324,10 +335,14 @@ static int cppc_cpufreq_cpu_init(struct cpufreq_policy *policy) > cpu_data->perf_ctrls.desired_perf = caps->highest_perf; > > ret = cppc_set_perf(cpu, &cpu_data->perf_ctrls); > - if (ret) > - pr_debug("Err setting perf value:%d on CPU:%d. ret:%d\n", > - caps->highest_perf, cpu, ret); > + if (!ret) > + return 0; > > + pr_debug("Err setting perf value:%d on CPU:%d. ret:%d\n", > + caps->highest_perf, cpu, ret); > + Nit: I would have preferred the more traditional: if (ret) { pr_debug(); goto out; } return 0; It's always easier to read. Thanks, Ionela. > +out: > + cppc_cpufreq_put_cpu_data(policy); > return ret; > } > > @@ -345,12 +360,7 @@ static int cppc_cpufreq_cpu_exit(struct cpufreq_policy *policy) > pr_debug("Err setting perf value:%d on CPU:%d. ret:%d\n", > caps->lowest_perf, cpu, ret); > > - /* Remove CPU node from list and free driver data for policy */ > - free_cpumask_var(cpu_data->shared_cpu_map); > - list_del(&cpu_data->node); > - kfree(policy->driver_data); > - policy->driver_data = NULL; > - > + cppc_cpufreq_put_cpu_data(policy); > return 0; > } > > -- > 2.31.1.272.g89b43f80a514 >