b1dca6
commit b31d4355ae817aa3caf9414f842cc07465bca028
b1dca6
Author: Florian Weimer <fweimer@redhat.com>
b1dca6
Date:   Wed Oct 7 16:39:50 2020 +0200
b1dca6
b1dca6
    elf: Implement _dl_write
b1dca6
    
b1dca6
    The generic version is parallel to _dl_writev.  It cannot use
b1dca6
    _dl_writev directly because the errno value needs to be obtained
b1dca6
    under a lock.
b1dca6
    
b1dca6
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
b1dca6
b1dca6
Backport adjusted for different INTERNAL_SYSCALL_CALL definition
b1dca6
downstream.
b1dca6
b1dca6
diff --git a/elf/Makefile b/elf/Makefile
b1dca6
index ef655630d50b07aa..e2078f6bc325b7e0 100644
b1dca6
--- a/elf/Makefile
b1dca6
+++ b/elf/Makefile
b1dca6
@@ -34,7 +34,7 @@ dl-routines	= $(addprefix dl-,load lookup object reloc deps \
b1dca6
 				  version profile tls origin scope \
b1dca6
 				  execstack open close trampoline \
b1dca6
 				  exception sort-maps lookup-direct \
b1dca6
-				  call-libc-early-init)
b1dca6
+				  call-libc-early-init write)
b1dca6
 ifeq (yes,$(use-ldconfig))
b1dca6
 dl-routines += dl-cache
b1dca6
 endif
b1dca6
diff --git a/elf/dl-write.c b/elf/dl-write.c
b1dca6
new file mode 100644
b1dca6
index 0000000000000000..7350aff0035d4fbc
b1dca6
--- /dev/null
b1dca6
+++ b/elf/dl-write.c
b1dca6
@@ -0,0 +1,56 @@
b1dca6
+/* Implementation of the _dl_write function.  Generic version.
b1dca6
+   Copyright (C) 2020 Free Software Foundation, Inc.
b1dca6
+   This file is part of the GNU C Library.
b1dca6
+
b1dca6
+   The GNU C Library is free software; you can redistribute it and/or
b1dca6
+   modify it under the terms of the GNU Lesser General Public
b1dca6
+   License as published by the Free Software Foundation; either
b1dca6
+   version 2.1 of the License, or (at your option) any later version.
b1dca6
+
b1dca6
+   The GNU C Library is distributed in the hope that it will be useful,
b1dca6
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b1dca6
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
b1dca6
+   Lesser General Public License for more details.
b1dca6
+
b1dca6
+   You should have received a copy of the GNU Lesser General Public
b1dca6
+   License along with the GNU C Library; if not, see
b1dca6
+   <https://www.gnu.org/licenses/>.  */
b1dca6
+
b1dca6
+#include <errno.h>
b1dca6
+#include <ldsodefs.h>
b1dca6
+#include <libc-lock.h>
b1dca6
+#include <sys/uio.h>
b1dca6
+
b1dca6
+ssize_t
b1dca6
+_dl_write (int fd, const void *buffer, size_t length)
b1dca6
+{
b1dca6
+  struct iovec iov = { .iov_base = (void *) buffer, .iov_len = length };
b1dca6
+  ssize_t ret;
b1dca6
+
b1dca6
+#if RTLD_PRIVATE_ERRNO
b1dca6
+  /* We have to take this lock just to be sure we don't clobber the private
b1dca6
+     errno when it's being used by another thread that cares about it.
b1dca6
+     Yet we must be sure not to try calling the lock functions before
b1dca6
+     the thread library is fully initialized.  */
b1dca6
+  if (__glibc_unlikely (_dl_starting_up))
b1dca6
+    {
b1dca6
+      ret = __writev (fd, &iov, 1);
b1dca6
+      if (ret < 0)
b1dca6
+        ret = -errno;
b1dca6
+    }
b1dca6
+  else
b1dca6
+    {
b1dca6
+      __rtld_lock_lock_recursive (GL(dl_load_lock));
b1dca6
+      __writev (fd, &iov, 1);
b1dca6
+      if (ret < 0)
b1dca6
+        ret = -errno;
b1dca6
+      __rtld_lock_unlock_recursive (GL(dl_load_lock));
b1dca6
+    }
b1dca6
+#else
b1dca6
+  ret = __writev (fd, &iov, 1);
b1dca6
+  if (ret < 0)
b1dca6
+    ret = -errno;
b1dca6
+#endif
b1dca6
+
b1dca6
+  return ret;
b1dca6
+}
b1dca6
diff --git a/sysdeps/generic/ldsodefs.h b/sysdeps/generic/ldsodefs.h
b1dca6
index 37f1915b0c75a020..4aa28b0229e0b339 100644
b1dca6
--- a/sysdeps/generic/ldsodefs.h
b1dca6
+++ b/sysdeps/generic/ldsodefs.h
b1dca6
@@ -754,6 +754,12 @@ _dl_dprintf (int fd, const char *fmt, ...)
b1dca6
 }
b1dca6
 #endif
b1dca6
 
b1dca6
+/* Write LENGTH bytes at BUFFER to FD, like write.  Returns the number
b1dca6
+   of bytes written on success, or a negative error constant on
b1dca6
+   failure.  */
b1dca6
+ssize_t _dl_write (int fd, const void *buffer, size_t length)
b1dca6
+  attribute_hidden;
b1dca6
+
b1dca6
 /* Write a message on the specified descriptor standard output.  The
b1dca6
    parameters are interpreted as for a `printf' call.  */
b1dca6
 #define _dl_printf(fmt, args...) \
b1dca6
diff --git a/sysdeps/unix/sysv/linux/dl-write.c b/sysdeps/unix/sysv/linux/dl-write.c
b1dca6
new file mode 100644
b1dca6
index 0000000000000000..2c670a8059077076
b1dca6
--- /dev/null
b1dca6
+++ b/sysdeps/unix/sysv/linux/dl-write.c
b1dca6
@@ -0,0 +1,31 @@
b1dca6
+/* Implementation of the _dl_write function.  Linux version.
b1dca6
+   Copyright (C) 2020 Free Software Foundation, Inc.
b1dca6
+   This file is part of the GNU C Library.
b1dca6
+
b1dca6
+   The GNU C Library is free software; you can redistribute it and/or
b1dca6
+   modify it under the terms of the GNU Lesser General Public
b1dca6
+   License as published by the Free Software Foundation; either
b1dca6
+   version 2.1 of the License, or (at your option) any later version.
b1dca6
+
b1dca6
+   The GNU C Library is distributed in the hope that it will be useful,
b1dca6
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
b1dca6
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
b1dca6
+   Lesser General Public License for more details.
b1dca6
+
b1dca6
+   You should have received a copy of the GNU Lesser General Public
b1dca6
+   License along with the GNU C Library; if not, see
b1dca6
+   <https://www.gnu.org/licenses/>.  */
b1dca6
+
b1dca6
+#include <sysdep.h>
b1dca6
+#include <unistd.h>
b1dca6
+#include <ldsodefs.h>
b1dca6
+
b1dca6
+ssize_t
b1dca6
+_dl_write (int fd, const void *buffer, size_t length)
b1dca6
+{
b1dca6
+  INTERNAL_SYSCALL_DECL (err);
b1dca6
+  long int r = INTERNAL_SYSCALL_CALL (write, err, fd, buffer, length);
b1dca6
+  if (INTERNAL_SYSCALL_ERROR_P (r, err))
b1dca6
+    r = - INTERNAL_SYSCALL_ERRNO (r, err);
b1dca6
+  return r;
b1dca6
+}