public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Arjun Shankar <arjun@redhat.com>
To: Sergey Kolosov <skolosov@redhat.com>
Cc: libc-alpha@sourceware.org
Subject: Re: [PATCH 1/2] libsupport: Add xgetpeername
Date: Tue, 9 Apr 2024 14:31:35 +0200	[thread overview]
Message-ID: <CAG_osaa0_3T1pejN2mGsD6Zhe5Y43ZsqZ1eJ3uB9vR_v5Afu8w@mail.gmail.com> (raw)
In-Reply-To: <20240408102543.18143-1-skolosov@redhat.com>

Hi Sergey,

> The patch adds redirections for getpeername.

This looks good to me.

Reviewed-by: Arjun Shankar <arjun@redhat.com>

> diff --git a/support/Makefile b/support/Makefile
> index 362a51f882..aa57207bdc 100644
> --- a/support/Makefile
> +++ b/support/Makefile
> @@ -131,6 +131,7 @@ libsupport-routines = \
>    xfreopen \
>    xftruncate \
>    xgetline \
> +  xgetpeername \
>    xgetsockname \
>    xlisten \
>    xlseek \

OK. New routine.

> diff --git a/support/xgetpeername.c b/support/xgetpeername.c
> new file mode 100644
> index 0000000000..6f448e456a
> --- /dev/null
> +++ b/support/xgetpeername.c
> @@ -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);
> +}

OK. I compared this with xgetsockname and it's in line with that.

> diff --git a/support/xsocket.h b/support/xsocket.h
> index 3e44103546..4ac0e1f5ff 100644
> --- a/support/xsocket.h
> +++ b/support/xsocket.h
> @@ -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);

OK.


      parent reply	other threads:[~2024-04-09 12:31 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-08 10:25 Sergey Kolosov
2024-04-08 10:25 ` [PATCH 2/2] socket: Add new test for connect Sergey Kolosov
2024-04-10 10:51   ` Arjun Shankar
2024-04-09 12:31 ` Arjun Shankar [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAG_osaa0_3T1pejN2mGsD6Zhe5Y43ZsqZ1eJ3uB9vR_v5Afu8w@mail.gmail.com \
    --to=arjun@redhat.com \
    --cc=libc-alpha@sourceware.org \
    --cc=skolosov@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).