malloc:ImproveMAP_HUGETLBwithglibc.malloc.hugetlb=2
(cherry picked from commit df8d97af7ff7a6b7abb8ac46f48f581f621362cc)
This commit is contained in:
parent
897caba970
commit
b93eaf863f
202
elf-Add-a-way-to-check-if-tunable-is-set-BZ-27069.patch
Normal file
202
elf-Add-a-way-to-check-if-tunable-is-set-BZ-27069.patch
Normal file
@ -0,0 +1,202 @@
|
|||||||
|
From a4c3f5f46e850c977cda81c251036475aab8313c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
Date: Thu, 23 Nov 2023 14:29:14 -0300
|
||||||
|
Subject: [PATCH] elf: Add a way to check if tunable is set (BZ 27069)
|
||||||
|
|
||||||
|
The patch adds two new macros, TUNABLE_GET_DEFAULT and TUNABLE_IS_INITIALIZED,
|
||||||
|
here the former get the default value with a signature similar to
|
||||||
|
TUNABLE_GET, while the later returns whether the tunable was set by
|
||||||
|
the environment variable.
|
||||||
|
|
||||||
|
Checked on x86_64-linux-gnu.
|
||||||
|
Reviewed-by: DJ Delorie <dj@redhat.com>
|
||||||
|
Tested-by: Zhangfei Gao <zhangfei.gao@linaro.org>
|
||||||
|
|
||||||
|
Conflict: this adapt the context of elf/Versions, scripts/gen-tunables.awk and
|
||||||
|
elf/dl-tunables.h
|
||||||
|
---
|
||||||
|
elf/Versions | 1 +
|
||||||
|
elf/dl-tunable-types.h | 1 +
|
||||||
|
elf/dl-tunables.c | 40 ++++++++++++++++++++++++++++++++++++++++
|
||||||
|
elf/dl-tunables.h | 28 ++++++++++++++++++++++++++++
|
||||||
|
elf/dl-tunables.list | 1 +
|
||||||
|
scripts/gen-tunables.awk | 4 ++--
|
||||||
|
6 files changed, 73 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/elf/Versions b/elf/Versions
|
||||||
|
index 2af210b8..9318b44a 100644
|
||||||
|
--- a/elf/Versions
|
||||||
|
+++ b/elf/Versions
|
||||||
|
@@ -74,6 +74,7 @@ ld {
|
||||||
|
_dl_signal_error; _dl_catch_error;
|
||||||
|
|
||||||
|
# Set value of a tunable.
|
||||||
|
+ __tunable_is_initialized;
|
||||||
|
__tunable_get_val;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
diff --git a/elf/dl-tunable-types.h b/elf/dl-tunable-types.h
|
||||||
|
index 39bf738d..d36b0d75 100644
|
||||||
|
--- a/elf/dl-tunable-types.h
|
||||||
|
+++ b/elf/dl-tunable-types.h
|
||||||
|
@@ -61,6 +61,7 @@ struct _tunable
|
||||||
|
{
|
||||||
|
const char name[TUNABLE_NAME_MAX]; /* Internal name of the tunable. */
|
||||||
|
tunable_type_t type; /* Data type of the tunable. */
|
||||||
|
+ const tunable_val_t def; /* The value. */
|
||||||
|
tunable_val_t val; /* The value. */
|
||||||
|
bool initialized; /* Flag to indicate that the tunable is
|
||||||
|
initialized. */
|
||||||
|
diff --git a/elf/dl-tunables.c b/elf/dl-tunables.c
|
||||||
|
index 42631d39..a325e701 100644
|
||||||
|
--- a/elf/dl-tunables.c
|
||||||
|
+++ b/elf/dl-tunables.c
|
||||||
|
@@ -150,6 +150,13 @@ tunable_initialize (tunable_t *cur, const char *strval)
|
||||||
|
do_tunable_update_val (cur, &val, NULL, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
+bool
|
||||||
|
+__tunable_is_initialized (tunable_id_t id)
|
||||||
|
+{
|
||||||
|
+ return tunable_list[id].initialized;
|
||||||
|
+}
|
||||||
|
+rtld_hidden_def (__tunable_is_initialized)
|
||||||
|
+
|
||||||
|
void
|
||||||
|
__tunable_set_val (tunable_id_t id, tunable_val_t *valp, tunable_num_t *minp,
|
||||||
|
tunable_num_t *maxp)
|
||||||
|
@@ -397,6 +404,39 @@ __tunables_print (void)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+__tunable_get_default (tunable_id_t id, void *valp)
|
||||||
|
+{
|
||||||
|
+ tunable_t *cur = &tunable_list[id];
|
||||||
|
+
|
||||||
|
+ switch (cur->type.type_code)
|
||||||
|
+ {
|
||||||
|
+ case TUNABLE_TYPE_UINT_64:
|
||||||
|
+ {
|
||||||
|
+ *((uint64_t *) valp) = (uint64_t) cur->def.numval;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ case TUNABLE_TYPE_INT_32:
|
||||||
|
+ {
|
||||||
|
+ *((int32_t *) valp) = (int32_t) cur->def.numval;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ case TUNABLE_TYPE_SIZE_T:
|
||||||
|
+ {
|
||||||
|
+ *((size_t *) valp) = (size_t) cur->def.numval;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ case TUNABLE_TYPE_STRING:
|
||||||
|
+ {
|
||||||
|
+ *((const char **)valp) = cur->def.strval;
|
||||||
|
+ break;
|
||||||
|
+ }
|
||||||
|
+ default:
|
||||||
|
+ __builtin_unreachable ();
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+rtld_hidden_def (__tunable_get_default)
|
||||||
|
+
|
||||||
|
/* Set the tunable value. This is called by the module that the tunable exists
|
||||||
|
in. */
|
||||||
|
void
|
||||||
|
diff --git a/elf/dl-tunables.h b/elf/dl-tunables.h
|
||||||
|
index 3880e4aa..9873c623 100644
|
||||||
|
--- a/elf/dl-tunables.h
|
||||||
|
+++ b/elf/dl-tunables.h
|
||||||
|
@@ -53,18 +53,26 @@ typedef void (*tunable_callback_t) (tunable_val_t *);
|
||||||
|
|
||||||
|
extern void __tunables_init (char **);
|
||||||
|
extern void __tunables_print (void);
|
||||||
|
+extern bool __tunable_is_initialized (tunable_id_t);
|
||||||
|
extern void __tunable_get_val (tunable_id_t, void *, tunable_callback_t);
|
||||||
|
extern void __tunable_set_val (tunable_id_t, tunable_val_t *, tunable_num_t *,
|
||||||
|
tunable_num_t *);
|
||||||
|
+extern void __tunable_get_default (tunable_id_t id, void *valp);
|
||||||
|
rtld_hidden_proto (__tunables_init)
|
||||||
|
rtld_hidden_proto (__tunables_print)
|
||||||
|
+rtld_hidden_proto (__tunable_is_initialized)
|
||||||
|
rtld_hidden_proto (__tunable_get_val)
|
||||||
|
rtld_hidden_proto (__tunable_set_val)
|
||||||
|
+rtld_hidden_proto (__tunable_get_default)
|
||||||
|
|
||||||
|
/* Define TUNABLE_GET and TUNABLE_SET in short form if TOP_NAMESPACE and
|
||||||
|
TUNABLE_NAMESPACE are defined. This is useful shorthand to get and set
|
||||||
|
tunables within a module. */
|
||||||
|
#if defined TOP_NAMESPACE && defined TUNABLE_NAMESPACE
|
||||||
|
+# define TUNABLE_IS_INITIALIZED(__id) \
|
||||||
|
+ TUNABLE_IS_INITIALIZED_FULL(TOP_NAMESPACE, TUNABLE_NAMESPACE, __id)
|
||||||
|
+# define TUNABLE_GET_DEFAULT(__id, __type) \
|
||||||
|
+ TUNABLE_GET_DEFAULT_FULL(TOP_NAMESPACE, TUNABLE_NAMESPACE,__id, __type)
|
||||||
|
# define TUNABLE_GET(__id, __type, __cb) \
|
||||||
|
TUNABLE_GET_FULL (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id, __type, __cb)
|
||||||
|
# define TUNABLE_SET(__id, __val) \
|
||||||
|
@@ -73,6 +81,10 @@ rtld_hidden_proto (__tunable_set_val)
|
||||||
|
TUNABLE_SET_WITH_BOUNDS_FULL (TOP_NAMESPACE, TUNABLE_NAMESPACE, __id, \
|
||||||
|
__val, __min, __max)
|
||||||
|
#else
|
||||||
|
+# define TUNABLE_IS_INITIALIZED(__top, __ns, __id) \
|
||||||
|
+ TUNABLE_IS_INITIALIZED_FULL(__top, __ns, __id)
|
||||||
|
+# define TUNABLE_GET_DEFAULT(__top, __ns, __type) \
|
||||||
|
+ TUNABLE_GET_DEFAULT_FULL(__top, __ns, __id, __type)
|
||||||
|
# define TUNABLE_GET(__top, __ns, __id, __type, __cb) \
|
||||||
|
TUNABLE_GET_FULL (__top, __ns, __id, __type, __cb)
|
||||||
|
# define TUNABLE_SET(__top, __ns, __id, __val) \
|
||||||
|
@@ -81,6 +93,22 @@ rtld_hidden_proto (__tunable_set_val)
|
||||||
|
TUNABLE_SET_WITH_BOUNDS_FULL (__top, __ns, __id, __val, __min, __max)
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+/* Return whether the tunable was initialized by the environment variable. */
|
||||||
|
+#define TUNABLE_IS_INITIALIZED_FULL(__top, __ns, __id) \
|
||||||
|
+({ \
|
||||||
|
+ tunable_id_t id = TUNABLE_ENUM_NAME (__top, __ns, __id); \
|
||||||
|
+ __tunable_is_initialized (id); \
|
||||||
|
+})
|
||||||
|
+
|
||||||
|
+/* Return the default value of the tunable. */
|
||||||
|
+#define TUNABLE_GET_DEFAULT_FULL(__top, __ns, __id, __type) \
|
||||||
|
+({ \
|
||||||
|
+ tunable_id_t id = TUNABLE_ENUM_NAME (__top, __ns, __id); \
|
||||||
|
+ __type __ret; \
|
||||||
|
+ __tunable_get_default (id, &__ret); \
|
||||||
|
+ __ret; \
|
||||||
|
+})
|
||||||
|
+
|
||||||
|
/* Get and return a tunable value. If the tunable was set externally and __CB
|
||||||
|
is defined then call __CB before returning the value. */
|
||||||
|
# define TUNABLE_GET_FULL(__top, __ns, __id, __type, __cb) \
|
||||||
|
diff --git a/elf/dl-tunables.list b/elf/dl-tunables.list
|
||||||
|
index ea19387d..befecc34 100644
|
||||||
|
--- a/elf/dl-tunables.list
|
||||||
|
+++ b/elf/dl-tunables.list
|
||||||
|
@@ -20,6 +20,7 @@
|
||||||
|
# type: Defaults to STRING
|
||||||
|
# minval: Optional minimum acceptable value
|
||||||
|
# maxval: Optional maximum acceptable value
|
||||||
|
+# default: Optional default value (if not specified it will be 0 or "")
|
||||||
|
# env_alias: An alias environment variable
|
||||||
|
# security_level: Specify security level of the tunable for AT_SECURE binaries.
|
||||||
|
# Valid values are:
|
||||||
|
diff --git a/scripts/gen-tunables.awk b/scripts/gen-tunables.awk
|
||||||
|
index fa63e86d..29f94c63 100644
|
||||||
|
--- a/scripts/gen-tunables.awk
|
||||||
|
+++ b/scripts/gen-tunables.awk
|
||||||
|
@@ -177,8 +177,8 @@ END {
|
||||||
|
n = indices[2];
|
||||||
|
m = indices[3];
|
||||||
|
printf (" {TUNABLE_NAME_S(%s, %s, %s)", t, n, m)
|
||||||
|
- printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, NULL, TUNABLE_SECLEVEL_%s, %s},\n",
|
||||||
|
- types[t,n,m], minvals[t,n,m], maxvals[t,n,m],
|
||||||
|
+ printf (", {TUNABLE_TYPE_%s, %s, %s}, {%s}, {%s}, NULL, TUNABLE_SECLEVEL_%s, %s},\n",
|
||||||
|
+ types[t,n,m], minvals[t,n,m], maxvals[t,n,m], default_val[t,n,m],
|
||||||
|
default_val[t,n,m], security_level[t,n,m], env_alias[t,n,m]);
|
||||||
|
}
|
||||||
|
print "};"
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
@ -66,7 +66,7 @@
|
|||||||
##############################################################################
|
##############################################################################
|
||||||
Name: glibc
|
Name: glibc
|
||||||
Version: 2.34
|
Version: 2.34
|
||||||
Release: 144
|
Release: 145
|
||||||
Summary: The GNU libc libraries
|
Summary: The GNU libc libraries
|
||||||
License: %{all_license}
|
License: %{all_license}
|
||||||
URL: http://www.gnu.org/software/glibc/
|
URL: http://www.gnu.org/software/glibc/
|
||||||
@ -282,6 +282,8 @@ Patch195: backport-posix-Fix-some-crashes-in-wordexp-BZ-18096.patch
|
|||||||
Patch196: backport-elf-Handle-non-directory-name-in-search-path-BZ-3103.patch
|
Patch196: backport-elf-Handle-non-directory-name-in-search-path-BZ-3103.patch
|
||||||
Patch197: backport-Fix-invalid-pointer-dereference-in-wcscpy_chk.patch
|
Patch197: backport-Fix-invalid-pointer-dereference-in-wcscpy_chk.patch
|
||||||
Patch198: backport-Fix-invalid-pointer-dereference-in-wcpcpy_chk.patch
|
Patch198: backport-Fix-invalid-pointer-dereference-in-wcpcpy_chk.patch
|
||||||
|
Patch199: elf-Add-a-way-to-check-if-tunable-is-set-BZ-27069.patch
|
||||||
|
Patch200: malloc-Improve-MAP_HUGETLB-with-glibc.malloc.hugetlb.patch
|
||||||
|
|
||||||
Patch9000: turn-default-value-of-x86_rep_stosb_threshold_form_2K_to_1M.patch
|
Patch9000: turn-default-value-of-x86_rep_stosb_threshold_form_2K_to_1M.patch
|
||||||
Patch9001: delete-no-hard-link-to-avoid-all_language-package-to.patch
|
Patch9001: delete-no-hard-link-to-avoid-all_language-package-to.patch
|
||||||
@ -1497,6 +1499,10 @@ fi
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sat Jan 13 2024 Qingqing Li <liqingqing3@huawei.com> - 2.34-145
|
||||||
|
- elf: Add a way to check if tunable is set (BZ 27069)
|
||||||
|
- malloc: Improve MAP_HUGETLB with glibc.malloc.hugetlb=2
|
||||||
|
|
||||||
* Fri Dec 29 2023 shixuantong <shixuantong1@huawei.com> - 2.34-144
|
* Fri Dec 29 2023 shixuantong <shixuantong1@huawei.com> - 2.34-144
|
||||||
- Fix invalid pointer dereference in wcpcpy_chk and wcscpy_chk
|
- Fix invalid pointer dereference in wcpcpy_chk and wcscpy_chk
|
||||||
|
|
||||||
|
|||||||
50
malloc-Improve-MAP_HUGETLB-with-glibc.malloc.hugetlb.patch
Normal file
50
malloc-Improve-MAP_HUGETLB-with-glibc.malloc.hugetlb.patch
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
From bc6d79f4ae99206e7ec7d6a8c5abf26cdefc8bff Mon Sep 17 00:00:00 2001
|
||||||
|
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||||
|
Date: Thu, 23 Nov 2023 14:29:15 -0300
|
||||||
|
Subject: [PATCH] malloc: Improve MAP_HUGETLB with glibc.malloc.hugetlb=2
|
||||||
|
|
||||||
|
Even for explicit large page support, allocation might use mmap without
|
||||||
|
the hugepage bit set if the requested size is smaller than
|
||||||
|
mmap_threshold. For this case where mmap is issued, MAP_HUGETLB is set
|
||||||
|
iff the allocation size is larger than the used large page.
|
||||||
|
|
||||||
|
To force such allocations to use large pages, also tune the mmap_threhold
|
||||||
|
(if it is not explicit set by a tunable). This forces allocation to
|
||||||
|
follow the sbrk path, which will fall back to mmap (which will try large
|
||||||
|
pages before galling back to default mmap).
|
||||||
|
|
||||||
|
Checked on x86_64-linux-gnu.
|
||||||
|
Reviewed-by: DJ Delorie <dj@redhat.com>
|
||||||
|
Tested-by: Zhangfei Gao <zhangfei.gao@linaro.org>
|
||||||
|
|
||||||
|
Conflict: this adapt the context from the origin commit.
|
||||||
|
---
|
||||||
|
malloc/arena.c | 12 +++++++++---
|
||||||
|
1 file changed, 9 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/malloc/arena.c b/malloc/arena.c
|
||||||
|
index f8e425e1..33dbc5ae 100644
|
||||||
|
--- a/malloc/arena.c
|
||||||
|
+++ b/malloc/arena.c
|
||||||
|
@@ -366,9 +366,15 @@ ptmalloc_init (void)
|
||||||
|
TUNABLE_GET (mxfast, size_t, TUNABLE_CALLBACK (set_mxfast));
|
||||||
|
TUNABLE_GET (hugetlb, size_t, TUNABLE_CALLBACK (set_hugetlb));
|
||||||
|
if (mp_.hp_pagesize > 0)
|
||||||
|
- /* Force mmap for main arena instead of sbrk, so hugepages are explicitly
|
||||||
|
- used. */
|
||||||
|
- __always_fail_morecore = true;
|
||||||
|
+ {
|
||||||
|
+ /* Force mmap for main arena instead of sbrk, so MAP_HUGETLB is always
|
||||||
|
+ tried. Also tune the mmap threshold, so allocation smaller than the
|
||||||
|
+ large page will also try to use large pages by falling back
|
||||||
|
+ to sysmalloc_mmap_fallback on sysmalloc. */
|
||||||
|
+ if (!TUNABLE_IS_INITIALIZED (mmap_threshold))
|
||||||
|
+ do_set_mmap_threshold (mp_.hp_pagesize);
|
||||||
|
+ __always_fail_morecore = true;
|
||||||
|
+ }
|
||||||
|
#else
|
||||||
|
if (__glibc_likely (_environ != NULL))
|
||||||
|
{
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user