From: Johannes Weiner <hannes@cmpxchg.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Subject: Re: [patch 7/8] ecryptfs: use kzfree()
Date: Mon, 16 Feb 2009 21:28:22 +0100 [thread overview]
Message-ID: <20090216202822.GA2759@cmpxchg.org> (raw)
In-Reply-To: <20090216120204.44f78aa2.akpm@linux-foundation.org>
On Mon, Feb 16, 2009 at 12:02:04PM -0800, Andrew Morton wrote:
> On Mon, 16 Feb 2009 15:29:33 +0100 Johannes Weiner <hannes@cmpxchg.org> wrote:
>
> > --- a/fs/ecryptfs/keystore.c
> > +++ b/fs/ecryptfs/keystore.c
> > @@ -740,8 +740,7 @@ ecryptfs_write_tag_70_packet(char *dest,
> > out_release_free_unlock:
> > crypto_free_hash(s->hash_desc.tfm);
> > out_free_unlock:
> > - memset(s->block_aligned_filename, 0, s->block_aligned_filename_size);
> > - kfree(s->block_aligned_filename);
> > + kzfree(s->block_aligned_filename);
> > out_unlock:
> > mutex_unlock(s->tfm_mutex);
> > out:
> > --- a/fs/ecryptfs/messaging.c
> > +++ b/fs/ecryptfs/messaging.c
> > @@ -291,8 +291,7 @@ int ecryptfs_exorcise_daemon(struct ecry
> > if (daemon->user_ns)
> > put_user_ns(daemon->user_ns);
> > mutex_unlock(&daemon->mux);
> > - memset(daemon, 0, sizeof(*daemon));
> > - kfree(daemon);
> > + kzfree(daemon);
> > out:
> > return rc;
> > }
>
> Except for this one and the crypto one, which might have been done for
> security reasons.
Actually, only atm is not security related and should probably be
dropped. I didn't convert w1 for the same reason.
> Even though both of them forgot to add a comment explaining this, which
> is bad, wrong, stupid and irritating. Sigh.
Humm, I considered
kfree(stuff->foo);
kzfree(stuff->secret_password);
kfree(stuff);
self-explaining.
Comments could still be added. Even easier, as kzfree() is easier to
grep for then a memset() + kfree() sequence ;)
Hannes
WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Pekka Enberg <penberg@cs.helsinki.fi>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org,
Tyler Hicks <tyhicks@linux.vnet.ibm.com>
Subject: Re: [patch 7/8] ecryptfs: use kzfree()
Date: Mon, 16 Feb 2009 21:28:22 +0100 [thread overview]
Message-ID: <20090216202822.GA2759@cmpxchg.org> (raw)
In-Reply-To: <20090216120204.44f78aa2.akpm@linux-foundation.org>
On Mon, Feb 16, 2009 at 12:02:04PM -0800, Andrew Morton wrote:
> On Mon, 16 Feb 2009 15:29:33 +0100 Johannes Weiner <hannes@cmpxchg.org> wrote:
>
> > --- a/fs/ecryptfs/keystore.c
> > +++ b/fs/ecryptfs/keystore.c
> > @@ -740,8 +740,7 @@ ecryptfs_write_tag_70_packet(char *dest,
> > out_release_free_unlock:
> > crypto_free_hash(s->hash_desc.tfm);
> > out_free_unlock:
> > - memset(s->block_aligned_filename, 0, s->block_aligned_filename_size);
> > - kfree(s->block_aligned_filename);
> > + kzfree(s->block_aligned_filename);
> > out_unlock:
> > mutex_unlock(s->tfm_mutex);
> > out:
> > --- a/fs/ecryptfs/messaging.c
> > +++ b/fs/ecryptfs/messaging.c
> > @@ -291,8 +291,7 @@ int ecryptfs_exorcise_daemon(struct ecry
> > if (daemon->user_ns)
> > put_user_ns(daemon->user_ns);
> > mutex_unlock(&daemon->mux);
> > - memset(daemon, 0, sizeof(*daemon));
> > - kfree(daemon);
> > + kzfree(daemon);
> > out:
> > return rc;
> > }
>
> Except for this one and the crypto one, which might have been done for
> security reasons.
Actually, only atm is not security related and should probably be
dropped. I didn't convert w1 for the same reason.
> Even though both of them forgot to add a comment explaining this, which
> is bad, wrong, stupid and irritating. Sigh.
Humm, I considered
kfree(stuff->foo);
kzfree(stuff->secret_password);
kfree(stuff);
self-explaining.
Comments could still be added. Even easier, as kzfree() is easier to
grep for then a memset() + kfree() sequence ;)
Hannes
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2009-02-16 20:26 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-16 14:29 [patch 0/8] kzfree() Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 14:29 ` [patch 1/8] slab: introduce kzfree() Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 15:27 ` Johannes Weiner
2009-02-16 15:27 ` Johannes Weiner
2009-02-17 15:08 ` Christoph Lameter
2009-02-17 15:08 ` Christoph Lameter
2009-02-17 15:51 ` Pekka Enberg
2009-02-17 15:51 ` Pekka Enberg
2009-02-17 16:01 ` Christoph Lameter
2009-02-17 16:01 ` Christoph Lameter
2009-02-16 14:29 ` [patch 2/8] crypto: use kzfree() Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 14:29 ` [patch 3/8] s390: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 14:29 ` [patch 4/8] md: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 14:29 ` [patch 5/8] usb: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 14:29 ` [patch 6/8] cifs: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 15:13 ` Pekka Enberg
2009-02-16 15:13 ` Pekka Enberg
2009-02-16 15:33 ` Johannes Weiner
2009-02-16 15:33 ` Johannes Weiner
2009-02-16 18:17 ` Pekka Enberg
2009-02-16 18:17 ` Pekka Enberg
2009-02-16 19:01 ` Steve French
2009-02-16 19:02 ` Steve French
2009-02-16 19:02 ` Steve French
2009-02-16 14:29 ` [patch 7/8] ecryptfs: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 20:02 ` Andrew Morton
2009-02-16 20:02 ` Andrew Morton
2009-02-16 20:28 ` Johannes Weiner [this message]
2009-02-16 20:28 ` Johannes Weiner
2009-02-17 7:51 ` Tyler Hicks
2009-02-16 14:29 ` [patch 8/8] atm: " Johannes Weiner
2009-02-16 14:29 ` Johannes Weiner
2009-02-16 19:59 ` [patch 0/8] kzfree() Andrew Morton
2009-02-16 19:59 ` Andrew Morton
2009-02-16 19:58 ` Pekka Enberg
2009-02-16 19:58 ` Pekka Enberg
2009-02-16 20:19 ` Andrew Morton
2009-02-16 20:19 ` Andrew Morton
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=20090216202822.GA2759@cmpxchg.org \
--to=hannes@cmpxchg.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=penberg@cs.helsinki.fi \
--cc=tyhicks@linux.vnet.ibm.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.