]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
libsupport: Add xgetpeername
authorSergey Kolosov <skolosov@redhat.com>
Wed, 10 Apr 2024 15:58:04 +0000 (17:58 +0200)
committerArjun Shankar <arjun@redhat.com>
Wed, 10 Apr 2024 16:10:22 +0000 (18:10 +0200)
The patch adds redirections for getpeername.

Reviewed-by: Arjun Shankar <arjun@redhat.com>
support/Makefile
support/xgetpeername.c [new file with mode: 0644]
support/xsocket.h

index 362a51f882787f2b46a34535b59054d3ab847ccd..aa57207bdccc852ddd37729868d8c2307df4c4d8 100644 (file)
@@ -131,6 +131,7 @@ libsupport-routines = \
   xfreopen \
   xftruncate \
   xgetline \
+  xgetpeername \
   xgetsockname \
   xlisten \
   xlseek \
diff --git a/support/xgetpeername.c b/support/xgetpeername.c
new file mode 100644 (file)
index 0000000..6f448e4
--- /dev/null
@@ -0,0 +1,30 @@
+/* getpeername with error checking.
+   Copyright (C) 2024 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 <support/xsocket.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <support/check.h>
+
+void
+xgetpeername (int fd, struct sockaddr *sa, socklen_t *plen)
+{
+  if (getpeername (fd, sa, plen) != 0)
+    FAIL_EXIT1 ("getpeername (%d): %m", fd);
+}
index 3e4410354676cb2a2499b7402766aa770fe2e67b..4ac0e1f5ffe35dc2cc871b9e94b643420a500788 100644 (file)
@@ -26,6 +26,7 @@
 int xsocket (int, int, int);
 void xsetsockopt (int, int, int, const void *, socklen_t);
 void xgetsockname (int, struct sockaddr *, socklen_t *);
+void xgetpeername (int, struct sockaddr *, socklen_t *);
 void xconnect (int, const struct sockaddr *, socklen_t);
 void xbind (int, const struct sockaddr *, socklen_t);
 void xlisten (int, int);