public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] buffer array one byte too short in drivers/acpi/system.c
@ 2008-03-06 14:30 Johann Felix Soden
  2008-03-11  7:05 ` Len Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Johann Felix Soden @ 2008-03-06 14:30 UTC (permalink / raw)
  To: Len Brown; +Cc: linux-acpi

From: Johann Felix Soden <johfel@users.sourceforge.net>

Since "ff_gbl_lock" has a length of 10 chars and is copied with sprintf to
char buffer[10], there is a problem because of the closing zero byte. We
need char buffer[11].

Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
---
 drivers/acpi/system.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c
index 55cf4c0..037b679 100644
--- a/drivers/acpi/system.c
+++ b/drivers/acpi/system.c
@@ -319,7 +319,7 @@ void acpi_irq_stats_init(void)
 		goto fail;
 
 	for (i = 0; i < num_counters; ++i) {
-		char buffer[10];
+		char buffer[11];
 		char *name;
 
 		if (i < num_gpes)
-- 
1.5.4.3




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

* Re: [PATCH] buffer array one byte too short in drivers/acpi/system.c
  2008-03-06 14:30 [PATCH] buffer array one byte too short in drivers/acpi/system.c Johann Felix Soden
@ 2008-03-11  7:05 ` Len Brown
  2008-03-11 15:44   ` Johann Felix Soden
  0 siblings, 1 reply; 4+ messages in thread
From: Len Brown @ 2008-03-11  7:05 UTC (permalink / raw)
  To: Johann Felix Soden; +Cc: linux-acpi

On Thursday 06 March 2008, Johann Felix Soden wrote:
> From: Johann Felix Soden <johfel@users.sourceforge.net>
> 
> Since "ff_gbl_lock" has a length of 10 chars and is copied with sprintf to
> char buffer[10], there is a problem because of the closing zero byte. We
> need char buffer[11].

"ff_gbl_lock" is 11 characters, and sprintf adds a null, so
buffer should be 12, yes?

looking at this code, i think i must have been asleep when i wrote it.
the strings such as "ff_gbl_lock" are in kernel data, and then
we copy to a local stack buffer, and then we copy to a heap
buffer -- when we should have just pointed to the data.
oh well, cleanup for .26...

> 
> Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
> ---
>  drivers/acpi/system.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c
> index 55cf4c0..037b679 100644
> --- a/drivers/acpi/system.c
> +++ b/drivers/acpi/system.c
> @@ -319,7 +319,7 @@ void acpi_irq_stats_init(void)
>  		goto fail;
>  
>  	for (i = 0; i < num_counters; ++i) {
> -		char buffer[10];
> +		char buffer[11];
>  		char *name;
>  
>  		if (i < num_gpes)



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

* Re: [PATCH] buffer array one byte too short in drivers/acpi/system.c
  2008-03-11  7:05 ` Len Brown
@ 2008-03-11 15:44   ` Johann Felix Soden
  2008-03-12 22:23     ` Len Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Johann Felix Soden @ 2008-03-11 15:44 UTC (permalink / raw)
  To: Len Brown; +Cc: linux-acpi

On Tuesday 11 March 2008, Len Brown wrote:
> On Thursday 06 March 2008, Johann Felix Soden wrote:
> > From: Johann Felix Soden <johfel@users.sourceforge.net>
> > 
> > Since "ff_gbl_lock" has a length of 10 chars and is copied with sprintf to
> > char buffer[10], there is a problem because of the closing zero byte. We
> > need char buffer[11].
> 
> "ff_gbl_lock" is 11 characters, and sprintf adds a null, so
> buffer should be 12, yes?

I have noticed my miscounting and have sent a new patch to you, Len
Brown, some days ago. If it is needed anymore, below is the corrected
patch again.

---
From: Johann Felix Soden <johfel@users.sourceforge.net>

Since "ff_gbl_lock" has a length of 11 chars and is copied with sprintf
to char buffer[10], there is a problem. We need char buffer[12] because
of the closing zero byte.

Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
---
 drivers/acpi/system.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c
index 55cf4c0..4749f37 100644
--- a/drivers/acpi/system.c
+++ b/drivers/acpi/system.c
@@ -319,7 +319,7 @@ void acpi_irq_stats_init(void)
                goto fail;
 
        for (i = 0; i < num_counters; ++i) {
-               char buffer[10];
+               char buffer[12];
                char *name;
 
                if (i < num_gpes)
-- 
1.5.4.3



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

* Re: [PATCH] buffer array one byte too short in drivers/acpi/system.c
  2008-03-11 15:44   ` Johann Felix Soden
@ 2008-03-12 22:23     ` Len Brown
  0 siblings, 0 replies; 4+ messages in thread
From: Len Brown @ 2008-03-12 22:23 UTC (permalink / raw)
  To: Johann Felix Soden; +Cc: linux-acpi

On Tuesday 11 March 2008, Johann Felix Soden wrote:
> On Tuesday 11 March 2008, Len Brown wrote:
> > On Thursday 06 March 2008, Johann Felix Soden wrote:
> > > From: Johann Felix Soden <johfel@users.sourceforge.net>
> > > 
> > > Since "ff_gbl_lock" has a length of 10 chars and is copied with sprintf to
> > > char buffer[10], there is a problem because of the closing zero byte. We
> > > need char buffer[11].
> > 
> > "ff_gbl_lock" is 11 characters, and sprintf adds a null, so
> > buffer should be 12, yes?
> 
> I have noticed my miscounting and have sent a new patch to you, Len
> Brown, some days ago. If it is needed anymore, below is the corrected
> patch again.
> 
> ---
> From: Johann Felix Soden <johfel@users.sourceforge.net>
> 
> Since "ff_gbl_lock" has a length of 11 chars and is copied with sprintf
> to char buffer[10], there is a problem. We need char buffer[12] because
> of the closing zero byte.
> 
> Signed-off-by: Johann Felix Soden <johfel@users.sourceforge.net>
> ---
>  drivers/acpi/system.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c
> index 55cf4c0..4749f37 100644
> --- a/drivers/acpi/system.c
> +++ b/drivers/acpi/system.c
> @@ -319,7 +319,7 @@ void acpi_irq_stats_init(void)
>                 goto fail;
>  
>         for (i = 0; i < num_counters; ++i) {
> -               char buffer[10];
> +               char buffer[12];
>                 char *name;
>  
>                 if (i < num_gpes)

thanks for re-sending, i fixed the whitespace damage and checked it in.

BTW. the reason i didn't see your private re-send to my intel.com account
is b/c my intel.com mailbox is not the ideal place to send patches.
per http://www.lesswatts.org/projects/acpi/submitting-patches.php
I see patches send to the list, and patches sent to my kernel.org account.

thanks,
-Len


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

end of thread, other threads:[~2008-03-12 22:23 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-06 14:30 [PATCH] buffer array one byte too short in drivers/acpi/system.c Johann Felix Soden
2008-03-11  7:05 ` Len Brown
2008-03-11 15:44   ` Johann Felix Soden
2008-03-12 22:23     ` Len Brown

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