about summary refs log tree commit diff
path: root/mach/mig_memcpy.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-11-13 15:56:51 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-11-14 00:52:52 +0100
commit56010b73e81e2cb1082e418699f98353598fe671 (patch)
treee6e4b6e7a05b77e9de56b6c15b2d4997d5ad76eb /mach/mig_memcpy.c
parenta24f414ba11a7acdf3c5ccec3fb327fc72166556 (diff)
downloadglibc-56010b73e81e2cb1082e418699f98353598fe671.tar.gz
glibc-56010b73e81e2cb1082e418699f98353598fe671.tar.xz
glibc-56010b73e81e2cb1082e418699f98353598fe671.zip
hurd: break relocation loop between libc.so and lib{mach,hurd}user.so
See
https://sourceware.org/pipermail/libc-alpha/2020-November/119575.html

lib{mach,hurd}user.so gets relocated before libc.so, but its references
to strpcpy and memcpy would need an ifunc decision, which e.g. on
x86 relies on cpu_features, but libc.so's _rtld_global_ro is not
relocated yet.

We can however just make lib{mach,hurd}user.so only call non-ifunc
functions, which can be relocated before libc.so is relocated.
Diffstat (limited to 'mach/mig_memcpy.c')
-rw-r--r--mach/mig_memcpy.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/mach/mig_memcpy.c b/mach/mig_memcpy.c
new file mode 100644
index 0000000000..df8fd5e9af
--- /dev/null
+++ b/mach/mig_memcpy.c
@@ -0,0 +1,26 @@
+/* memcpy stub for mig stubs in libmachuser and libhurduser.
+   Copyright (C) 2020 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library; if not, see
+   <https://www.gnu.org/licenses/>.  */
+
+#include <mach.h>
+#include <string.h>
+
+void *
+__mig_memcpy (void *dst, const void *src, vm_size_t len)
+{
+  return memcpy (dst, src, len);
+}