* [PATCH] android/client/if-bt.c: Fix memory leak while using realloc()
@ 2015-06-23 8:08 Atul Rai
0 siblings, 0 replies; 3+ messages in thread
From: Atul Rai @ 2015-06-23 8:08 UTC (permalink / raw)
To: linux-bluetooth; +Cc: sachin.dev, anupam.r, Atul Rai
While reallocating space to store additional "remote device set" using
realloc, if realloc() fails, the original block is left untouched but
reference to that block is lost as NULL is assigned to remote_devices.
The original block needs to be freed before return.
Signed-off-by: Atul Rai <a.rai@samsung.com>
---
android/client/if-bt.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/android/client/if-bt.c b/android/client/if-bt.c
index 4723024..4f0c2e9 100644
--- a/android/client/if-bt.c
+++ b/android/client/if-bt.c
@@ -94,6 +94,7 @@ static int remote_devices_capacity = 0;
void add_remote_device(const bt_bdaddr_t *addr)
{
int i;
+ bt_bdaddr_t *tmp = NULL;
if (remote_devices == NULL) {
remote_devices = malloc(4 * sizeof(bt_bdaddr_t));
@@ -119,9 +120,17 @@ void add_remote_device(const bt_bdaddr_t *addr)
/* Realloc space if needed */
if (remote_devices_cnt >= remote_devices_capacity) {
remote_devices_capacity *= 2;
+ /*
+ * Save reference to previously allocated memory block so that
+ * it can be freed in case realloc fails.
+ */
+ tmp = remote_devices;
+
remote_devices = realloc(remote_devices, sizeof(bt_bdaddr_t) *
remote_devices_capacity);
if (remote_devices == NULL) {
+ if (NULL != tmp)
+ free(tmp);
remote_devices_capacity = 0;
remote_devices_cnt = 0;
return;
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] android/client/if-bt.c: Fix memory leak while using realloc()
@ 2015-07-21 12:01 Atul Rai
2015-07-21 12:22 ` Szymon Janc
0 siblings, 1 reply; 3+ messages in thread
From: Atul Rai @ 2015-07-21 12:01 UTC (permalink / raw)
To: linux-bluetooth; +Cc: sachin.dev
ping
> ------- Original Message -------
> Sender : Atul Kumar Rai<a.rai@samsung.com> Lead Engineer (1)/SRI-Delhi-SWC Group/Samsung Electronics
> Date : Jun 23, 2015 13:38 (GMT+05:30)
> Title : [PATCH] android/client/if-bt.c: Fix memory leak while using realloc()
>
> While reallocating space to store additional "remote device set" using
> realloc, if realloc() fails, the original block is left untouched but
> reference to that block is lost as NULL is assigned to remote_devices.
> The original block needs to be freed before return.
>
> Signed-off-by: Atul Rai <a.rai@samsung.com>
> ---
> android/client/if-bt.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/android/client/if-bt.c b/android/client/if-bt.c
> index 4723024..4f0c2e9 100644
> --- a/android/client/if-bt.c
> +++ b/android/client/if-bt.c
> @@ -94,6 +94,7 @@ static int remote_devices_capacity = 0;
> void add_remote_device(const bt_bdaddr_t *addr)
> {
> int i;
> + bt_bdaddr_t *tmp = NULL;
>
> if (remote_devices == NULL) {
> remote_devices = malloc(4 * sizeof(bt_bdaddr_t));
> @@ -119,9 +120,17 @@ void add_remote_device(const bt_bdaddr_t *addr)
> /* Realloc space if needed */
> if (remote_devices_cnt >= remote_devices_capacity) {
> remote_devices_capacity *= 2;
> + /*
> + * Save reference to previously allocated memory block so that
> + * it can be freed in case realloc fails.
> + */
> + tmp = remote_devices;
> +
> remote_devices = realloc(remote_devices, sizeof(bt_bdaddr_t) *
> remote_devices_capacity);
> if (remote_devices == NULL) {
> + if (NULL != tmp)
> + free(tmp);
> remote_devices_capacity = 0;
> remote_devices_cnt = 0;
> return;
> --
> 2.1.4
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] android/client/if-bt.c: Fix memory leak while using realloc()
2015-07-21 12:01 [PATCH] android/client/if-bt.c: Fix memory leak while using realloc() Atul Rai
@ 2015-07-21 12:22 ` Szymon Janc
0 siblings, 0 replies; 3+ messages in thread
From: Szymon Janc @ 2015-07-21 12:22 UTC (permalink / raw)
To: Atul Rai; +Cc: linux-bluetooth, sachin.dev
Hi Atul,
On Tuesday 21 of July 2015 17:31:44 Atul Rai wrote:
> ping
I looks like I never got the original patch.
> > ------- Original Message -------
> > Sender : Atul Kumar Rai<a.rai@samsung.com> Lead Engineer (1)/SRI-Delhi-SWC
> > Group/Samsung Electronics Date : Jun 23, 2015 13:38 (GMT+05:30)
> > Title : [PATCH] android/client/if-bt.c: Fix memory leak while using
> > realloc()
Patch prefix "android/client" should be enough.
> >
> > While reallocating space to store additional "remote device set" using
> > realloc, if realloc() fails, the original block is left untouched but
> > reference to that block is lost as NULL is assigned to remote_devices.
> > The original block needs to be freed before return.
> >
> > Signed-off-by: Atul Rai <a.rai@samsung.com>
Please remove Signed-off-by as we don't use it for userspace patches.
> > ---
> >
> > android/client/if-bt.c | 9 +++++++++
> > 1 file changed, 9 insertions(+)
> >
> > diff --git a/android/client/if-bt.c b/android/client/if-bt.c
> > index 4723024..4f0c2e9 100644
> > --- a/android/client/if-bt.c
> > +++ b/android/client/if-bt.c
> > @@ -94,6 +94,7 @@ static int remote_devices_capacity = 0;
> >
> > void add_remote_device(const bt_bdaddr_t *addr)
> > {
> >
> > int i;
> >
> > + bt_bdaddr_t *tmp = NULL;
No need to initialize it.
> >
> > if (remote_devices == NULL) {
> >
> > remote_devices = malloc(4 * sizeof(bt_bdaddr_t));
> >
> > @@ -119,9 +120,17 @@ void add_remote_device(const bt_bdaddr_t *addr)
> >
> > /* Realloc space if needed */
> > if (remote_devices_cnt >= remote_devices_capacity) {
> >
> > remote_devices_capacity *= 2;
> >
> > + /*
> > + * Save reference to previously allocated memory block so that
> > + * it can be freed in case realloc fails.
> > + */
> > + tmp = remote_devices;
> > +
> >
> > remote_devices = realloc(remote_devices, sizeof(bt_bdaddr_t) *
> >
> > remote_devices_capacity);
> >
> > if (remote_devices == NULL) {
> >
> > + if (NULL != tmp)
> > + free(tmp);
free() already checks for NULL pointer so no need to double check it.
> >
> > remote_devices_capacity = 0;
> > remote_devices_cnt = 0;
> > return;
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth"
> in the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
BR
Szymon Janc
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-21 12:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-21 12:01 [PATCH] android/client/if-bt.c: Fix memory leak while using realloc() Atul Rai
2015-07-21 12:22 ` Szymon Janc
-- strict thread matches above, loose matches on Subject: below --
2015-06-23 8:08 Atul Rai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).