Skip to content

Commit 19a5bf5

Browse files
ldoraubratpiorka
authored andcommitted
Fix: size_fd has to be read under a lock
Signed-off-by: Lukasz Dorau <[email protected]>
1 parent d3fad20 commit 19a5bf5

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/provider/provider_os_memory.c

+10-9
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,8 @@ static inline void assert_is_page_aligned(uintptr_t ptr, size_t page_size) {
637637
static int os_mmap_aligned(void *hint_addr, size_t length, size_t alignment,
638638
size_t page_size, int prot, int flag, int fd,
639639
size_t max_fd_size, os_mutex_t *lock_fd,
640-
void **out_addr, size_t *fd_size) {
640+
void **out_addr, size_t *fd_size,
641+
size_t *fd_offset) {
641642
assert(out_addr);
642643

643644
size_t extended_length = length;
@@ -650,7 +651,7 @@ static int os_mmap_aligned(void *hint_addr, size_t length, size_t alignment,
650651
extended_length += alignment;
651652
}
652653

653-
size_t fd_offset = 0;
654+
*fd_offset = 0;
654655

655656
if (fd > 0) {
656657
if (util_mutex_lock(lock_fd)) {
@@ -664,12 +665,12 @@ static int os_mmap_aligned(void *hint_addr, size_t length, size_t alignment,
664665
return -1;
665666
}
666667

667-
fd_offset = *fd_size;
668+
*fd_offset = *fd_size;
668669
*fd_size += extended_length;
669670
util_mutex_unlock(lock_fd);
670671
}
671672

672-
void *ptr = os_mmap(hint_addr, extended_length, prot, flag, fd, fd_offset);
673+
void *ptr = os_mmap(hint_addr, extended_length, prot, flag, fd, *fd_offset);
673674
if (ptr == NULL) {
674675
LOG_PDEBUG("memory mapping failed");
675676
return -1;
@@ -912,14 +913,14 @@ static umf_result_t os_alloc(void *provider, size_t size, size_t alignment,
912913
return UMF_RESULT_ERROR_INVALID_ARGUMENT;
913914
}
914915

915-
size_t fd_offset = os_provider->size_fd; // needed for critnib_insert()
916+
size_t fd_offset; // needed for critnib_insert()
916917

917918
void *addr = NULL;
918919
errno = 0;
919-
ret = os_mmap_aligned(NULL, size, alignment, page_size,
920-
os_provider->protection, os_provider->visibility,
921-
os_provider->fd, os_provider->max_size_fd,
922-
&os_provider->lock_fd, &addr, &os_provider->size_fd);
920+
ret = os_mmap_aligned(
921+
NULL, size, alignment, page_size, os_provider->protection,
922+
os_provider->visibility, os_provider->fd, os_provider->max_size_fd,
923+
&os_provider->lock_fd, &addr, &os_provider->size_fd, &fd_offset);
923924
if (ret) {
924925
os_store_last_native_error(UMF_OS_RESULT_ERROR_ALLOC_FAILED, 0);
925926
LOG_ERR("memory allocation failed");

0 commit comments

Comments
 (0)