All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1 v2] binder: free memory on error
@ 2017-08-21 14:13 Christian Brauner
  2017-08-21 14:13 ` [PATCH 1/1 " Christian Brauner
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Brauner @ 2017-08-21 14:13 UTC (permalink / raw)
  To: gregkh, arve, riandrews, devel, linux-kernel, dan.carpenter
  Cc: Christian Brauner

On binder_init() the devices string is duplicated and smashed into individual
device names which are passed along. However, if I'm not mistaken the original
duplicated string wasn't freed in case binder_init() failed.

Christian

Changelog v2 2017-08-21 (Thanks Dan!)
- use more descriptive commit message
- call kfree(device_names) on correct position

Christian Brauner (1):
  binder: free memory on error

 drivers/android/binder.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

-- 
2.13.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1 v2] binder: free memory on error
  2017-08-21 14:13 [PATCH 0/1 v2] binder: free memory on error Christian Brauner
@ 2017-08-21 14:13 ` Christian Brauner
  2017-08-21 14:54   ` Dan Carpenter
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Brauner @ 2017-08-21 14:13 UTC (permalink / raw)
  To: gregkh, arve, riandrews, devel, linux-kernel, dan.carpenter
  Cc: Christian Brauner

On binder_init() the devices string is duplicated and smashed into individual
device names which are passed along. However, the original duplicated string
wasn't freed in case binder_init() failed. Let's free it on error.

Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
---
Changelog v2 2017-08-21:
- use more descriptive commit message
- call kfree(device_names) on correct position
---
 drivers/android/binder.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index f7665c31feca..a6ae339223f6 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
@@ -4215,7 +4215,7 @@ static int __init init_binder_device(const char *name)
 static int __init binder_init(void)
 {
 	int ret;
-	char *device_name, *device_names;
+	char *device_name, *device_names, *device_tmp;
 	struct binder_device *device;
 	struct hlist_node *tmp;
 
@@ -4263,7 +4263,8 @@ static int __init binder_init(void)
 	}
 	strcpy(device_names, binder_devices_param);
 
-	while ((device_name = strsep(&device_names, ","))) {
+	device_tmp = device_names;
+	while ((device_name = strsep(&device_tmp, ","))) {
 		ret = init_binder_device(device_name);
 		if (ret)
 			goto err_init_binder_device_failed;
@@ -4277,6 +4278,9 @@ static int __init binder_init(void)
 		hlist_del(&device->hlist);
 		kfree(device);
 	}
+
+	kfree(device_names);
+
 err_alloc_device_names_failed:
 	debugfs_remove_recursive(binder_debugfs_dir_entry_root);
 
-- 
2.13.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1 v2] binder: free memory on error
  2017-08-21 14:13 ` [PATCH 1/1 " Christian Brauner
@ 2017-08-21 14:54   ` Dan Carpenter
  0 siblings, 0 replies; 3+ messages in thread
From: Dan Carpenter @ 2017-08-21 14:54 UTC (permalink / raw)
  To: Christian Brauner; +Cc: gregkh, arve, riandrews, devel, linux-kernel

On Mon, Aug 21, 2017 at 04:13:28PM +0200, Christian Brauner wrote:
> On binder_init() the devices string is duplicated and smashed into individual
> device names which are passed along. However, the original duplicated string
> wasn't freed in case binder_init() failed. Let's free it on error.
> 
> Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>

Looks good.  Thanks.

regards,
dan carpenter

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-08-21 14:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-21 14:13 [PATCH 0/1 v2] binder: free memory on error Christian Brauner
2017-08-21 14:13 ` [PATCH 1/1 " Christian Brauner
2017-08-21 14:54   ` Dan Carpenter

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.