Git development
 help / color / mirror / Atom feed
From: Elia Pinto <gitter.spiros@gmail.com>
To: git@vger.kernel.org
Cc: peff@peff.net, sunshine@sunshineco.com,
	Elia Pinto <gitter.spiros@gmail.com>
Subject: [PATCHv3] ident.c: add support for IPv6
Date: Fri, 27 Nov 2015 14:08:27 +0000	[thread overview]
Message-ID: <1448633307-43339-1-git-send-email-gitter.spiros@gmail.com> (raw)

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

             reply	other threads:[~2015-11-27 14:08 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-27 14:08 Elia Pinto [this message]
2015-11-28 17:23 ` [PATCHv3] ident.c: add support for IPv6 Jeff King
2015-11-28 20:48   ` Elia Pinto

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=1448633307-43339-1-git-send-email-gitter.spiros@gmail.com \
    --to=gitter.spiros@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=peff@peff.net \
    --cc=sunshine@sunshineco.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