All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] cifs.upcall: fix UAF in get_cachename_from_process_env()
@ 2024-03-08 15:06 Paulo Alcantara
  2024-03-26  1:43 ` Pavel Shilovsky
  0 siblings, 1 reply; 2+ messages in thread
From: Paulo Alcantara @ 2024-03-08 15:06 UTC (permalink / raw)
  To: piastryyy; +Cc: linux-cifs, Paulo Alcantara

Whether lseek(2) fails or @bufsize * 2 > ENV_BUF_MAX, then @buf would
end up being freed twice.  For instance:

  cifs-utils-7.0/cifs.upcall.c:501: freed_arg: "free" frees "buf".
  cifs-utils-7.0/cifs.upcall.c:524: double_free: Calling "free" frees
  pointer "buf" which has already been freed.
    522|           }
    523|   out_close:
    524|->         free(buf);
    525|           close(fd);
    526|           return cachename;

Fix this by setting @buf to NULL after freeing it to prevent UAF.

Fixes: ed97e4ecab4e ("cifs.upcall: allow scraping of KRB5CCNAME out of initiating task's /proc/<pid>/environ file")
Signed-off-by: Paulo Alcantara (Red Hat) <pc@manguebit.com>
---
 cifs.upcall.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/cifs.upcall.c b/cifs.upcall.c
index 52c03280dbe0..ff6f2bd271bc 100644
--- a/cifs.upcall.c
+++ b/cifs.upcall.c
@@ -498,10 +498,11 @@ retry:
 		/* We read to the end of the buffer. Double and try again */
 		syslog(LOG_DEBUG, "%s: read to end of buffer (%zu bytes)\n",
 					__func__, bufsize);
-		free(buf);
-		bufsize *= 2;
 		if (lseek(fd, 0, SEEK_SET) < 0)
 			goto out_close;
+		free(buf);
+		buf = NULL;
+		bufsize *= 2;
 		goto retry;
 	}
 
-- 
2.44.0


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

* Re: [PATCH] cifs.upcall: fix UAF in get_cachename_from_process_env()
  2024-03-08 15:06 [PATCH] cifs.upcall: fix UAF in get_cachename_from_process_env() Paulo Alcantara
@ 2024-03-26  1:43 ` Pavel Shilovsky
  0 siblings, 0 replies; 2+ messages in thread
From: Pavel Shilovsky @ 2024-03-26  1:43 UTC (permalink / raw)
  To: Paulo Alcantara; +Cc: linux-cifs

Merged this and the other patch to the next branch. Thanks!
--
Best regards,
Pavel Shilovsky

пт, 8 мар. 2024 г. в 07:06, Paulo Alcantara <pc@manguebit.com>:
>
> Whether lseek(2) fails or @bufsize * 2 > ENV_BUF_MAX, then @buf would
> end up being freed twice.  For instance:
>
>   cifs-utils-7.0/cifs.upcall.c:501: freed_arg: "free" frees "buf".
>   cifs-utils-7.0/cifs.upcall.c:524: double_free: Calling "free" frees
>   pointer "buf" which has already been freed.
>     522|           }
>     523|   out_close:
>     524|->         free(buf);
>     525|           close(fd);
>     526|           return cachename;
>
> Fix this by setting @buf to NULL after freeing it to prevent UAF.
>
> Fixes: ed97e4ecab4e ("cifs.upcall: allow scraping of KRB5CCNAME out of initiating task's /proc/<pid>/environ file")
> Signed-off-by: Paulo Alcantara (Red Hat) <pc@manguebit.com>
> ---
>  cifs.upcall.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/cifs.upcall.c b/cifs.upcall.c
> index 52c03280dbe0..ff6f2bd271bc 100644
> --- a/cifs.upcall.c
> +++ b/cifs.upcall.c
> @@ -498,10 +498,11 @@ retry:
>                 /* We read to the end of the buffer. Double and try again */
>                 syslog(LOG_DEBUG, "%s: read to end of buffer (%zu bytes)\n",
>                                         __func__, bufsize);
> -               free(buf);
> -               bufsize *= 2;
>                 if (lseek(fd, 0, SEEK_SET) < 0)
>                         goto out_close;
> +               free(buf);
> +               buf = NULL;
> +               bufsize *= 2;
>                 goto retry;
>         }
>
> --
> 2.44.0
>

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

end of thread, other threads:[~2024-03-26  1:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-08 15:06 [PATCH] cifs.upcall: fix UAF in get_cachename_from_process_env() Paulo Alcantara
2024-03-26  1:43 ` Pavel Shilovsky

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.