[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7e6cfce8-7fad-a55f-c1b6-47db62da4344@oracle.com>
Date: Tue, 7 Sep 2021 13:35:12 -0700
From: Stephen Brennan <stephen.s.brennan@...cle.com>
To: Al Viro <viro@...iv.linux.org.uk>
Cc: linux-fsdevel@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 3/3] namei: Standardize callers of filename_create()
On 9/7/21 1:13 PM, Al Viro wrote:
> On Wed, Sep 01, 2021 at 10:51:43AM -0700, Stephen Brennan wrote:
>> inline struct dentry *user_path_create(int dfd, const char __user *pathname,
>> struct path *path, unsigned int lookup_flags)
>> {
>> - return filename_create(dfd, getname(pathname), path, lookup_flags);
>> + struct filename *filename;
>> + struct dentry *dentry;
>> +
>> + filename = getname(pathname);
>> + dentry = filename_create(dfd, getname(pathname), path, lookup_flags);
>> + putname(filename);
>> + return dentry;
>
> Leaks, obviously...
>
Ouch, thanks for the catch. I'll send v2 shortly.
Powered by blists - more mailing lists