* [PATCHv3] ident.c: add support for IPv6
@ 2015-11-27 14:08 Elia Pinto
2015-11-28 17:23 ` Jeff King
0 siblings, 1 reply; 3+ messages in thread
From: Elia Pinto @ 2015-11-27 14:08 UTC (permalink / raw)
To: git; +Cc: peff, sunshine, Elia Pinto
Add IPv6 support by implementing name resolution with the
protocol agnostic getaddrinfo(3) API. The old gethostbyname(3)
code is still available when git is compiled with NO_IPV6.
Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
Helped-by: Jeff King <peff@peff.net>
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
---
This is the third version of the patch ($gmane/280488)
Changes from previous:
- Simplified the implementation, adding the new
function canonical_name (Jeff King) ($gmane/281479).
Fixed a new typo introduced in the second version.
Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
---
ident.c | 32 +++++++++++++++++++++++++++-----
1 file changed, 27 insertions(+), 5 deletions(-)
diff --git a/ident.c b/ident.c
index 5ff1aad..6695537 100644
--- a/ident.c
+++ b/ident.c
@@ -70,10 +70,33 @@ static int add_mailname_host(struct strbuf *buf)
return 0;
}
+static int canonical_name(const char *host, struct strbuf *out)
+{
+ int status=-1;
+#ifndef NO_IPV6
+ struct addrinfo hints, *ai;
+ memset (&hints, '\0', sizeof (hints));
+ hints.ai_flags = AI_CANONNAME;
+ int gai = getaddrinfo(host, NULL, &hints, &ai);
+ if (!gai) {
+ if (ai && strchr(ai->ai_canonname, '.')) {
+ strbuf_addstr(out, ai->ai_canonname);
+ status=0;
+ }
+ freeaddrinfo(ai);
+ }
+#else
+ struct hostent *he = gethostbyname(buf);
+ if (he && strchr(he->h_name, '.')) {
+ strbuf_addstr(out, he->h_name);
+ status=0;
+ }
+#endif /* NO_IPV6 */
+}
+
static void add_domainname(struct strbuf *out)
{
char buf[1024];
- struct hostent *he;
if (gethostname(buf, sizeof(buf))) {
warning("cannot get host name: %s", strerror(errno));
@@ -82,10 +105,9 @@ static void add_domainname(struct strbuf *out)
}
if (strchr(buf, '.'))
strbuf_addstr(out, buf);
- else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.'))
- strbuf_addstr(out, he->h_name);
- else
- strbuf_addf(out, "%s.(none)", buf);
+ else {
+ if (canonical_name(buf,out) != 0) strbuf_addf(out, "%s.(none)", buf);
+ }
}
static void copy_email(const struct passwd *pw, struct strbuf *email)
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCHv3] ident.c: add support for IPv6
2015-11-27 14:08 [PATCHv3] ident.c: add support for IPv6 Elia Pinto
@ 2015-11-28 17:23 ` Jeff King
2015-11-28 20:48 ` Elia Pinto
0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2015-11-28 17:23 UTC (permalink / raw)
To: Elia Pinto; +Cc: git, sunshine
On Fri, Nov 27, 2015 at 02:08:27PM +0000, Elia Pinto wrote:
> This is the third version of the patch ($gmane/280488)
> Changes from previous:
>
> - Simplified the implementation, adding the new
> function canonical_name (Jeff King) ($gmane/281479).
> Fixed a new typo introduced in the second version.
Thanks, I think this keeps add_domainname() a lot cleaner. There are a
few problems:
> +static int canonical_name(const char *host, struct strbuf *out)
> +{
> + int status=-1;
Our style is to put whitespace between operators (so "int status = -1;",
and other places below).
This line (and the others) was also indented with spaces, not tabs.
> +#ifndef NO_IPV6
> + struct addrinfo hints, *ai;
> + memset (&hints, '\0', sizeof (hints));
> + hints.ai_flags = AI_CANONNAME;
> + int gai = getaddrinfo(host, NULL, &hints, &ai);
We do C89-style no-decl-after-statement. But this "gai" is only
used once, so we can just lump it into the next conditional.
> + if (!gai) {
> + if (ai && strchr(ai->ai_canonname, '.')) {
> + strbuf_addstr(out, ai->ai_canonname);
> + status=0;
> + }
> + freeaddrinfo(ai);
> + }
> +#else
> + struct hostent *he = gethostbyname(buf);
> + if (he && strchr(he->h_name, '.')) {
> + strbuf_addstr(out, he->h_name);
> + status=0;
> + }
> +#endif /* NO_IPV6 */
> +}
I think you are missing a "return status" here.
> @@ -82,10 +105,9 @@ static void add_domainname(struct strbuf *out)
> }
> if (strchr(buf, '.'))
> strbuf_addstr(out, buf);
> - else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.'))
> - strbuf_addstr(out, he->h_name);
> - else
> - strbuf_addf(out, "%s.(none)", buf);
> + else {
> + if (canonical_name(buf,out) != 0) strbuf_addf(out, "%s.(none)", buf);
> + }
We always put conditional bodies on the next line, even if they are
one-liners.
Here's what I've queued, addressing those. No need to re-send if you're
happy with it:
-- >8 --
From: Elia Pinto <gitter.spiros@gmail.com>
Subject: [PATCH] ident.c: add support for IPv6
Add IPv6 support by implementing name resolution with the
protocol agnostic getaddrinfo(3) API. The old gethostbyname(3)
code is still available when git is compiled with NO_IPV6.
Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
Helped-by: Jeff King <peff@peff.net>
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Jeff King <peff@peff.net>
---
ident.c | 31 +++++++++++++++++++++++++++----
1 file changed, 27 insertions(+), 4 deletions(-)
diff --git a/ident.c b/ident.c
index 5ff1aad..4e7f99d 100644
--- a/ident.c
+++ b/ident.c
@@ -70,10 +70,35 @@ static int add_mailname_host(struct strbuf *buf)
return 0;
}
+static int canonical_name(const char *host, struct strbuf *out)
+{
+ int status = -1;
+
+#ifndef NO_IPV6
+ struct addrinfo hints, *ai;
+ memset (&hints, '\0', sizeof (hints));
+ hints.ai_flags = AI_CANONNAME;
+ if (!getaddrinfo(host, NULL, &hints, &ai)) {
+ if (ai && strchr(ai->ai_canonname, '.')) {
+ strbuf_addstr(out, ai->ai_canonname);
+ status = 0;
+ }
+ freeaddrinfo(ai);
+ }
+#else
+ struct hostent *he = gethostbyname(buf);
+ if (he && strchr(he->h_name, '.')) {
+ strbuf_addstr(out, he->h_name);
+ status = 0;
+ }
+#endif /* NO_IPV6 */
+
+ return status;
+}
+
static void add_domainname(struct strbuf *out)
{
char buf[1024];
- struct hostent *he;
if (gethostname(buf, sizeof(buf))) {
warning("cannot get host name: %s", strerror(errno));
@@ -82,9 +107,7 @@ static void add_domainname(struct strbuf *out)
}
if (strchr(buf, '.'))
strbuf_addstr(out, buf);
- else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.'))
- strbuf_addstr(out, he->h_name);
- else
+ else if (canonical_name(buf, out) < 0)
strbuf_addf(out, "%s.(none)", buf);
}
--
2.6.3.636.g1460207
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCHv3] ident.c: add support for IPv6
2015-11-28 17:23 ` Jeff King
@ 2015-11-28 20:48 ` Elia Pinto
0 siblings, 0 replies; 3+ messages in thread
From: Elia Pinto @ 2015-11-28 20:48 UTC (permalink / raw)
To: Jeff King; +Cc: git, sunshine
2015-11-28 18:23 GMT+01:00, Jeff King <peff@peff.net>:
> On Fri, Nov 27, 2015 at 02:08:27PM +0000, Elia Pinto wrote:
>
>> This is the third version of the patch ($gmane/280488)
>> Changes from previous:
>>
>> - Simplified the implementation, adding the new
>> function canonical_name (Jeff King) ($gmane/281479).
>> Fixed a new typo introduced in the second version.
>
> Thanks, I think this keeps add_domainname() a lot cleaner. There are a
> few problems:
>
>> +static int canonical_name(const char *host, struct strbuf *out)
>> +{
>> + int status=-1;
>
> Our style is to put whitespace between operators (so "int status = -1;",
> and other places below).
>
> This line (and the others) was also indented with spaces, not tabs.
>
>> +#ifndef NO_IPV6
>> + struct addrinfo hints, *ai;
>> + memset (&hints, '\0', sizeof (hints));
>> + hints.ai_flags = AI_CANONNAME;
>> + int gai = getaddrinfo(host, NULL, &hints, &ai);
>
> We do C89-style no-decl-after-statement. But this "gai" is only
> used once, so we can just lump it into the next conditional.
>
>> + if (!gai) {
>> + if (ai && strchr(ai->ai_canonname, '.')) {
>> + strbuf_addstr(out, ai->ai_canonname);
>> + status=0;
>> + }
>> + freeaddrinfo(ai);
>> + }
>> +#else
>> + struct hostent *he = gethostbyname(buf);
>> + if (he && strchr(he->h_name, '.')) {
>> + strbuf_addstr(out, he->h_name);
>> + status=0;
>> + }
>> +#endif /* NO_IPV6 */
>> +}
>
> I think you are missing a "return status" here.
>
>> @@ -82,10 +105,9 @@ static void add_domainname(struct strbuf *out)
>> }
>> if (strchr(buf, '.'))
>> strbuf_addstr(out, buf);
>> - else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.'))
>> - strbuf_addstr(out, he->h_name);
>> - else
>> - strbuf_addf(out, "%s.(none)", buf);
>> + else {
>> + if (canonical_name(buf,out) != 0) strbuf_addf(out, "%s.(none)", buf);
>> + }
>
> We always put conditional bodies on the next line, even if they are
> one-liners.
>
> Here's what I've queued, addressing those. No need to re-send if you're
> happy with it:
Ok for me. Thank you very much
>
> -- >8 --
> From: Elia Pinto <gitter.spiros@gmail.com>
> Subject: [PATCH] ident.c: add support for IPv6
>
> Add IPv6 support by implementing name resolution with the
> protocol agnostic getaddrinfo(3) API. The old gethostbyname(3)
> code is still available when git is compiled with NO_IPV6.
>
> Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
> Helped-by: Jeff King <peff@peff.net>
> Helped-by: Eric Sunshine <sunshine@sunshineco.com>
> Signed-off-by: Jeff King <peff@peff.net>
> ---
> ident.c | 31 +++++++++++++++++++++++++++----
> 1 file changed, 27 insertions(+), 4 deletions(-)
>
> diff --git a/ident.c b/ident.c
> index 5ff1aad..4e7f99d 100644
> --- a/ident.c
> +++ b/ident.c
> @@ -70,10 +70,35 @@ static int add_mailname_host(struct strbuf *buf)
> return 0;
> }
>
> +static int canonical_name(const char *host, struct strbuf *out)
> +{
> + int status = -1;
> +
> +#ifndef NO_IPV6
> + struct addrinfo hints, *ai;
> + memset (&hints, '\0', sizeof (hints));
> + hints.ai_flags = AI_CANONNAME;
> + if (!getaddrinfo(host, NULL, &hints, &ai)) {
> + if (ai && strchr(ai->ai_canonname, '.')) {
> + strbuf_addstr(out, ai->ai_canonname);
> + status = 0;
> + }
> + freeaddrinfo(ai);
> + }
> +#else
> + struct hostent *he = gethostbyname(buf);
> + if (he && strchr(he->h_name, '.')) {
> + strbuf_addstr(out, he->h_name);
> + status = 0;
> + }
> +#endif /* NO_IPV6 */
> +
> + return status;
> +}
> +
> static void add_domainname(struct strbuf *out)
> {
> char buf[1024];
> - struct hostent *he;
>
> if (gethostname(buf, sizeof(buf))) {
> warning("cannot get host name: %s", strerror(errno));
> @@ -82,9 +107,7 @@ static void add_domainname(struct strbuf *out)
> }
> if (strchr(buf, '.'))
> strbuf_addstr(out, buf);
> - else if ((he = gethostbyname(buf)) && strchr(he->h_name, '.'))
> - strbuf_addstr(out, he->h_name);
> - else
> + else if (canonical_name(buf, out) < 0)
> strbuf_addf(out, "%s.(none)", buf);
> }
>
> --
> 2.6.3.636.g1460207
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-11-28 20:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-27 14:08 [PATCHv3] ident.c: add support for IPv6 Elia Pinto
2015-11-28 17:23 ` Jeff King
2015-11-28 20:48 ` Elia Pinto
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox