All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions
@ 2018-11-13 22:55 Simon Glass
  2018-11-14 10:43 ` Alexander Graf
  2018-11-29 17:42 ` sjg at google.com
  0 siblings, 2 replies; 3+ messages in thread
From: Simon Glass @ 2018-11-13 22:55 UTC (permalink / raw)
  To: u-boot

The use of strcpy() to remove characters at the start of a string is safe
in U-Boot, since we know the implementation. But in os.c we are using the
C library's strcpy() function, where this behaviour is not permitted.

Update the code to use memmove() instead.

Reported-by: Coverity (CID: 173279)
Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v3:
- Fix commit message to say memmove() instead of memcpy()

Changes in v2:
- Also remove the leading / from the "/spl" path
- Correct the string calculation

 arch/sandbox/cpu/os.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c
index 07e46471fe5..04669bfc177 100644
--- a/arch/sandbox/cpu/os.c
+++ b/arch/sandbox/cpu/os.c
@@ -641,9 +641,10 @@ int os_find_u_boot(char *fname, int maxlen)
 	}
 
 	/* Look for 'u-boot' in the parent directory of spl/ */
-	p = strstr(fname, "/spl/");
+	p = strstr(fname, "spl/");
 	if (p) {
-		strcpy(p, p + 4);
+		/* Remove the "spl" characters */
+		memmove(p, p + 4, strlen(p + 4) + 1);
 		fd = os_open(fname, O_RDONLY);
 		if (fd >= 0) {
 			close(fd);
-- 
2.19.1.930.g4563a0d9d0-goog

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

* [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions
  2018-11-13 22:55 [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions Simon Glass
@ 2018-11-14 10:43 ` Alexander Graf
  2018-11-29 17:42 ` sjg at google.com
  1 sibling, 0 replies; 3+ messages in thread
From: Alexander Graf @ 2018-11-14 10:43 UTC (permalink / raw)
  To: u-boot

On 11/13/2018 11:55 PM, Simon Glass wrote:
> The use of strcpy() to remove characters at the start of a string is safe
> in U-Boot, since we know the implementation. But in os.c we are using the
> C library's strcpy() function, where this behaviour is not permitted.
>
> Update the code to use memmove() instead.
>
> Reported-by: Coverity (CID: 173279)
> Signed-off-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Alexander Graf <agraf@suse.de>

Alex

> ---
>
> Changes in v3:
> - Fix commit message to say memmove() instead of memcpy()
>
> Changes in v2:
> - Also remove the leading / from the "/spl" path
> - Correct the string calculation
>
>   arch/sandbox/cpu/os.c | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/arch/sandbox/cpu/os.c b/arch/sandbox/cpu/os.c
> index 07e46471fe5..04669bfc177 100644
> --- a/arch/sandbox/cpu/os.c
> +++ b/arch/sandbox/cpu/os.c
> @@ -641,9 +641,10 @@ int os_find_u_boot(char *fname, int maxlen)
>   	}
>   
>   	/* Look for 'u-boot' in the parent directory of spl/ */
> -	p = strstr(fname, "/spl/");
> +	p = strstr(fname, "spl/");
>   	if (p) {
> -		strcpy(p, p + 4);
> +		/* Remove the "spl" characters */
> +		memmove(p, p + 4, strlen(p + 4) + 1);
>   		fd = os_open(fname, O_RDONLY);
>   		if (fd >= 0) {
>   			close(fd);

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

* [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions
  2018-11-13 22:55 [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions Simon Glass
  2018-11-14 10:43 ` Alexander Graf
@ 2018-11-29 17:42 ` sjg at google.com
  1 sibling, 0 replies; 3+ messages in thread
From: sjg at google.com @ 2018-11-29 17:42 UTC (permalink / raw)
  To: u-boot

On 11/13/2018 11:55 PM, Simon Glass wrote:
> The use of strcpy() to remove characters at the start of a string is safe
> in U-Boot, since we know the implementation. But in os.c we are using the
> C library's strcpy() function, where this behaviour is not permitted.
>
> Update the code to use memmove() instead.
>
> Reported-by: Coverity (CID: 173279)
> Signed-off-by: Simon Glass <sjg@chromium.org>

Reviewed-by: Alexander Graf <agraf@suse.de>

Alex

> ---
>
> Changes in v3:
> - Fix commit message to say memmove() instead of memcpy()
>
> Changes in v2:
> - Also remove the leading / from the "/spl" path
> - Correct the string calculation
>
>   arch/sandbox/cpu/os.c | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
>
Applied to u-boot-dm/master, thanks!

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

end of thread, other threads:[~2018-11-29 17:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-13 22:55 [U-Boot] [PATCH v3] sandbox: Use memmove() to move overlapping regions Simon Glass
2018-11-14 10:43 ` Alexander Graf
2018-11-29 17:42 ` sjg at google.com

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.