[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Minios-devel] [UNIKRAFT PATCH] lib/{ukmmap, vfscore}: fix null pointer dereferences
mmap and futimesat allocate buffers via malloc and dereference returned pointers without NULL checking, causing crashes in OOM situations. Signed-off-by: Hugo Lefeuvre <hugo.lefeuvre@xxxxxxxxx> --- lib/ukmmap/mmap.c | 6 ++++++ lib/vfscore/main.c | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/lib/ukmmap/mmap.c b/lib/ukmmap/mmap.c index 7cee8dc..39ecbef 100644 --- a/lib/ukmmap/mmap.c +++ b/lib/ukmmap/mmap.c @@ -101,6 +101,12 @@ void *mmap(void *addr, size_t len, int prot, return (void *) -1; } new = uk_malloc(uk_alloc_get_default(), sizeof(struct mmap_addr)); + + if (!new) { + uk_free(uk_alloc_get_default(), mem); + errno = ENOMEM; + return (void *) -1; + } new->begin = mem; new->end = mem + len; new->next = NULL; diff --git a/lib/vfscore/main.c b/lib/vfscore/main.c index 7a7a54c..371290e 100644 --- a/lib/vfscore/main.c +++ b/lib/vfscore/main.c @@ -1803,6 +1803,12 @@ int futimesat(int dirfd, const char *pathname, const struct timeval times[2]) /* build absolute path */ absolute_path = (char*)malloc(PATH_MAX); + if (!absolute_path) { + fdrop(fp); + error = ENOMEM; + goto out_errno; + } + strlcpy(absolute_path, fp->f_dentry->d_mount->m_path, PATH_MAX); strlcat(absolute_path, fp->f_dentry->d_path, PATH_MAX); -- 2.25.0 Attachment:
signature.asc _______________________________________________ Minios-devel mailing list Minios-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/minios-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |