* [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy()
@ 2013-05-30 1:18 Chen Gang
2013-05-30 15:06 ` Wang YanQing
2013-05-30 15:35 ` Kyle McMartin
0 siblings, 2 replies; 5+ messages in thread
From: Chen Gang @ 2013-05-30 1:18 UTC (permalink / raw)
To: James E.J. Bottomley, Helge Deller, udknight
Cc: Greg KH, Parisc List, linux-kernel@vger.kernel.org, Linux-Arch
'boot_args' is an input args, and 'boot_command_line' has a fix length.
So need use strlcpy() instead of strcpy() to avoid memory overflow.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
arch/parisc/kernel/setup.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/arch/parisc/kernel/setup.c b/arch/parisc/kernel/setup.c
index 60c1ae6..7349a3f 100644
--- a/arch/parisc/kernel/setup.c
+++ b/arch/parisc/kernel/setup.c
@@ -69,7 +69,8 @@ void __init setup_cmdline(char **cmdline_p)
/* called from hpux boot loader */
boot_command_line[0] = '\0';
} else {
- strcpy(boot_command_line, (char *)__va(boot_args[1]));
+ strlcpy(boot_command_line, (char *)__va(boot_args[1]),
+ COMMAND_LINE_SIZE);
#ifdef CONFIG_BLK_DEV_INITRD
if (boot_args[2] != 0) /* did palo pass us a ramdisk? */
--
1.7.7.6
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy()
2013-05-30 1:18 [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy() Chen Gang
@ 2013-05-30 15:06 ` Wang YanQing
2013-06-03 8:50 ` Chen Gang
2013-05-30 15:35 ` Kyle McMartin
1 sibling, 1 reply; 5+ messages in thread
From: Wang YanQing @ 2013-05-30 15:06 UTC (permalink / raw)
To: Chen Gang
Cc: James E.J. Bottomley, Helge Deller, Greg KH, Parisc List,
linux-kernel@vger.kernel.org, Linux-Arch
On Thu, May 30, 2013 at 09:18:43AM +0800, Chen Gang wrote:
>
> 'boot_args' is an input args, and 'boot_command_line' has a fix length.
>
> So need use strlcpy() instead of strcpy() to avoid memory overflow.
>
>
> Signed-off-by: Chen Gang <gang.chen@asianux.com>
> ---
> arch/parisc/kernel/setup.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/arch/parisc/kernel/setup.c b/arch/parisc/kernel/setup.c
> index 60c1ae6..7349a3f 100644
> --- a/arch/parisc/kernel/setup.c
> +++ b/arch/parisc/kernel/setup.c
> @@ -69,7 +69,8 @@ void __init setup_cmdline(char **cmdline_p)
> /* called from hpux boot loader */
> boot_command_line[0] = '\0';
> } else {
> - strcpy(boot_command_line, (char *)__va(boot_args[1]));
> + strlcpy(boot_command_line, (char *)__va(boot_args[1]),
> + COMMAND_LINE_SIZE);
What about add
boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
to protect the following another strcpy?
"
strcpy(command_line, boot_command_line);
"
>
> #ifdef CONFIG_BLK_DEV_INITRD
> if (boot_args[2] != 0) /* did palo pass us a ramdisk? */
> --
> 1.7.7.6
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy()
2013-05-30 1:18 [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy() Chen Gang
2013-05-30 15:06 ` Wang YanQing
@ 2013-05-30 15:35 ` Kyle McMartin
2013-06-03 8:55 ` Chen Gang
1 sibling, 1 reply; 5+ messages in thread
From: Kyle McMartin @ 2013-05-30 15:35 UTC (permalink / raw)
To: Chen Gang
Cc: James E.J. Bottomley, Helge Deller, udknight, Greg KH,
Parisc List, linux-kernel@vger.kernel.org, Linux-Arch
On Thu, May 30, 2013 at 09:18:43AM +0800, Chen Gang wrote:
>
> 'boot_args' is an input args, and 'boot_command_line' has a fix length.
>
> So need use strlcpy() instead of strcpy() to avoid memory overflow.
>
This is basically impossible, since boot_args is fixed in size by palo,
initialized to zero, and length checked in the bootloader. It's also
only 256+4 bytes compared to the 1024 bytes set aside for
boot_command_line.
That said, it's harmless to use strlcpy here, and obviously (more)
correct. Thanks!
Acked-by: Kyle McMartin <kyle@mcmartin.ca>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy()
2013-05-30 15:06 ` Wang YanQing
@ 2013-06-03 8:50 ` Chen Gang
0 siblings, 0 replies; 5+ messages in thread
From: Chen Gang @ 2013-06-03 8:50 UTC (permalink / raw)
To: Wang YanQing, James E.J. Bottomley, Helge Deller, Greg KH,
Parisc List, linux-kernel@vger.kernel.org, Linux-Arch
On 05/30/2013 11:06 PM, Wang YanQing wrote:
> What about add
> boot_command_line[COMMAND_LINE_SIZE - 1] = '\0';
> to protect the following another strcpy?
>
> "
> strcpy(command_line, boot_command_line);
> "
If the 'dest' length is not less than COMMAND_LINE_SIZE, the strlcpy()
will copy 'COMMAND_LINE_SIZE - 1' contents, and always set '\0' in the end.
So the next strcpy() will be safe.
Thanks.
--
Chen Gang
Asianux Corporation
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy()
2013-05-30 15:35 ` Kyle McMartin
@ 2013-06-03 8:55 ` Chen Gang
0 siblings, 0 replies; 5+ messages in thread
From: Chen Gang @ 2013-06-03 8:55 UTC (permalink / raw)
To: Kyle McMartin
Cc: James E.J. Bottomley, Helge Deller, udknight, Greg KH,
Parisc List, linux-kernel@vger.kernel.org, Linux-Arch
On 05/30/2013 11:35 PM, Kyle McMartin wrote:
> On Thu, May 30, 2013 at 09:18:43AM +0800, Chen Gang wrote:
>> >
>> > 'boot_args' is an input args, and 'boot_command_line' has a fix length.
>> >
>> > So need use strlcpy() instead of strcpy() to avoid memory overflow.
>> >
> This is basically impossible, since boot_args is fixed in size by palo,
> initialized to zero, and length checked in the bootloader. It's also
> only 256+4 bytes compared to the 1024 bytes set aside for
> boot_command_line.
>
> That said, it's harmless to use strlcpy here, and obviously (more)
> correct. Thanks!
>
OK, thanks.
> Acked-by: Kyle McMartin <kyle@mcmartin.ca>
>
>
Thank you. :-)
--
Chen Gang
Asianux Corporation
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-06-03 8:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-30 1:18 [PATCH] arch: parisc: kernel: using strlcpy() instead of strcpy() Chen Gang
2013-05-30 15:06 ` Wang YanQing
2013-06-03 8:50 ` Chen Gang
2013-05-30 15:35 ` Kyle McMartin
2013-06-03 8:55 ` Chen Gang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox