mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: [PATCH 2.6.23-rc1] eCryptfs: fix error handling in ecryptfs_init
       [not found] <200708021306.AA00225@paprika.lab.ntt.co.jp>
@ 2007-08-02 13:56 ` Michael Halcrow
  0 siblings, 0 replies; only message in thread
From: Michael Halcrow @ 2007-08-02 13:56 UTC (permalink / raw)
  To: Ryusuke Konishi
  Cc: Andrew Morton, ecryptfs-devel, moriai.satoshi, linux-kernel

On Thu, Aug 02, 2007 at 10:06:19PM +0900, Ryusuke Konishi wrote:
> ecryptfs_init() exits without doing any cleanup jobs if
> ecryptfs_init_messaging() fails.  In that case, eCryptfs leaves
> sysfs entries, leaks memory, and causes an invalid page fault.
> This patch fixes the problem.
> 
> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>

Acked-by: Michael Halcrow <mhalcrow@us.ibm.com>

> ---
>  fs/ecryptfs/main.c |   18 +++++++++++++-----
>  1 files changed, 13 insertions(+), 5 deletions(-)
> 
> diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
> index e557a67..a984972 100644
> --- a/fs/ecryptfs/main.c
> +++ b/fs/ecryptfs/main.c
> @@ -813,6 +813,15 @@ out:
>  	return rc;
>  }
> 
> +static void do_sysfs_unregistration(void)
> +{
> +	sysfs_remove_file(&ecryptfs_subsys.kobj,
> +			  &sysfs_attr_version.attr);
> +	sysfs_remove_file(&ecryptfs_subsys.kobj,
> +			  &sysfs_attr_version_str.attr);
> +	subsystem_unregister(&ecryptfs_subsys);
> +}
> +
>  static int __init ecryptfs_init(void)
>  {
>  	int rc;
> @@ -851,6 +860,9 @@ static int __init ecryptfs_init(void)
>  	if (rc) {
>  		ecryptfs_printk(KERN_ERR, "Failure occured while attempting to "
>  				"initialize the eCryptfs netlink socket\n");
> +		do_sysfs_unregistration();
> +		unregister_filesystem(&ecryptfs_fs_type);
> +		ecryptfs_free_kmem_caches();
>  	}
>  out:
>  	return rc;
> @@ -858,11 +870,7 @@ out:
> 
>  static void __exit ecryptfs_exit(void)
>  {
> -	sysfs_remove_file(&ecryptfs_subsys.kobj,
> -			  &sysfs_attr_version.attr);
> -	sysfs_remove_file(&ecryptfs_subsys.kobj,
> -			  &sysfs_attr_version_str.attr);
> -	subsystem_unregister(&ecryptfs_subsys);
> +	do_sysfs_unregistration();
>  	ecryptfs_release_messaging(ecryptfs_transport);
>  	unregister_filesystem(&ecryptfs_fs_type);
>  	ecryptfs_free_kmem_caches();

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-08-02 13:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <200708021306.AA00225@paprika.lab.ntt.co.jp>
2007-08-02 13:56 ` [PATCH 2.6.23-rc1] eCryptfs: fix error handling in ecryptfs_init Michael Halcrow

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®