Skip to content

Commit

Permalink
Merge pull request #6555 from DimitryAndric/fix-qsort-variants-1
Browse files Browse the repository at this point in the history
util: detect all possible qsort_r and qsort_s variants
  • Loading branch information
ethomson committed May 9, 2023
2 parents fc4c00b + d873966 commit 251408c
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 11 deletions.
20 changes: 17 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,29 @@ add_feature_info(futimens GIT_USE_FUTIMENS "futimens support")

# qsort

# old-style FreeBSD qsort_r() has the 'context' parameter as the first argument
# of the comparison function:
check_prototype_definition(qsort_r
"void qsort_r(void *base, size_t nmemb, size_t size, void *thunk, int (*compar)(void *, const void *, const void *))"
"void (qsort_r)(void *base, size_t nmemb, size_t size, void *context, int (*compar)(void *, const void *, const void *))"
"" "stdlib.h" GIT_QSORT_R_BSD)

# GNU or POSIX qsort_r() has the 'context' parameter as the last argument of the
# comparison function:
check_prototype_definition(qsort_r
"void qsort_r(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *, void *), void *arg)"
"void (qsort_r)(void *base, size_t nmemb, size_t size, int (*compar)(const void *, const void *, void *), void *context)"
"" "stdlib.h" GIT_QSORT_R_GNU)

check_function_exists(qsort_s GIT_QSORT_S)
# C11 qsort_s() has the 'context' parameter as the last argument of the
# comparison function, and returns an error status:
check_prototype_definition(qsort_s
"errno_t (qsort_s)(void *base, rsize_t nmemb, rsize_t size, int (*compar)(const void *, const void *, void *), void *context)"
"0" "stdlib.h" GIT_QSORT_S_C11)

# MSC qsort_s() has the 'context' parameter as the first argument of the
# comparison function, and as the last argument of qsort_s():
check_prototype_definition(qsort_s
"void (qsort_s)(void *base, size_t num, size_t width, int (*compare )(void *, const void *, const void *), void *context)"
"" "stdlib.h" GIT_QSORT_S_MSC)

# random / entropy data

Expand Down
3 changes: 2 additions & 1 deletion src/util/git2_features.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@

#cmakedefine GIT_QSORT_R_BSD
#cmakedefine GIT_QSORT_R_GNU
#cmakedefine GIT_QSORT_S
#cmakedefine GIT_QSORT_S_C11
#cmakedefine GIT_QSORT_S_MSC

#cmakedefine GIT_SSH 1
#cmakedefine GIT_SSH_MEMORY_CREDENTIALS 1
Expand Down
17 changes: 10 additions & 7 deletions src/util/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# endif
# include <windows.h>

# ifdef GIT_QSORT_S
# ifdef GIT_QSORT_S_MSC
# include <search.h>
# endif
#endif
Expand Down Expand Up @@ -673,7 +673,7 @@ size_t git__unescape(char *str)
return (pos - str);
}

#if defined(GIT_QSORT_S) || defined(GIT_QSORT_R_BSD)
#if defined(GIT_QSORT_S_MSC) || defined(GIT_QSORT_R_BSD)
typedef struct {
git__sort_r_cmp cmp;
void *payload;
Expand All @@ -690,7 +690,8 @@ static int GIT_LIBGIT2_CALL git__qsort_r_glue_cmp(

#if !defined(GIT_QSORT_R_BSD) && \
!defined(GIT_QSORT_R_GNU) && \
!defined(GIT_QSORT_S)
!defined(GIT_QSORT_S_C11) && \
!defined(GIT_QSORT_S_MSC)
static void swap(uint8_t *a, uint8_t *b, size_t elsize)
{
char tmp[256];
Expand Down Expand Up @@ -721,12 +722,14 @@ static void insertsort(
void git__qsort_r(
void *els, size_t nel, size_t elsize, git__sort_r_cmp cmp, void *payload)
{
#if defined(GIT_QSORT_R_BSD)
#if defined(GIT_QSORT_R_GNU)
qsort_r(els, nel, elsize, cmp, payload);
#elif defined(GIT_QSORT_S_C11)
qsort_s(els, nel, elsize, cmp, payload);
#elif defined(GIT_QSORT_R_BSD)
git__qsort_r_glue glue = { cmp, payload };
qsort_r(els, nel, elsize, &glue, git__qsort_r_glue_cmp);
#elif defined(GIT_QSORT_R_GNU)
qsort_r(els, nel, elsize, cmp, payload);
#elif defined(GIT_QSORT_S)
#elif defined(GIT_QSORT_S_MSC)
git__qsort_r_glue glue = { cmp, payload };
qsort_s(els, nel, elsize, git__qsort_r_glue_cmp, &glue);
#else
Expand Down

0 comments on commit 251408c

Please sign in to comment.