public inbox for newlib@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix null-pointer dereference in nano-malloc
@ 2022-01-25 15:44 Cyril Yared
  2022-01-25 15:44 ` [PATCH 1/1] " Cyril Yared
  0 siblings, 1 reply; 3+ messages in thread
From: Cyril Yared @ 2022-01-25 15:44 UTC (permalink / raw)
  To: newlib; +Cc: Cyril Yared

Commit 84d068971 introduced a null-pointer dereference in
nano-malloc when the following two conditions are met:

1). The free_list has no items (= NULL).
2). The call to sbrk_aligned returns -1 (failure).

On line 325 of newlib/libc/stdlib/nano-mallocr.c, there is a check:

if ((char *)p + p->size == (char *)_SBRK_R(RCALL 0))
{

If the two conditions are met, then p = free_list = NULL so p->size will be
a null-pointer dereference.

Cyril Yared (1):
  Fix a potential null-pointer dereference in nano-malloc when calling
    malloc() while the free_list is empty and the call to sbrk_aligned
    fails.

 newlib/libc/stdlib/nano-mallocr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.21.0 (Apple Git-122.2)


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

end of thread, other threads:[~2022-01-26 12:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-25 15:44 [PATCH 0/1] Fix null-pointer dereference in nano-malloc Cyril Yared
2022-01-25 15:44 ` [PATCH 1/1] " Cyril Yared
2022-01-26 12:14   ` Corinna Vinschen

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 read-only IMAP folder(s) and NNTP newsgroup(s).