git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] daemon: handle gethostbyname() error
@ 2014-10-01 10:16 René Scharfe
  2014-10-01 10:18 ` [PATCH 2/3] daemon: fix error message after bind() René Scharfe
  2014-10-01 20:35 ` [PATCH 1/3] daemon: handle gethostbyname() error Junio C Hamano
  0 siblings, 2 replies; 4+ messages in thread
From: René Scharfe @ 2014-10-01 10:16 UTC (permalink / raw)
  To: Git Mailing List; +Cc: Junio C Hamano

If the user-supplied hostname can't be found then we should not use it.
We already avoid doing that in the non-NO_IPV6 case by checking if the
return value of getaddrinfo() is zero (success).  Do the same in the
NO_IPV6 case and make sure the return value of gethostbyname() isn't
NULL before dereferencing this pointer.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
---
Most lines are just re-indented, not actually changed.

 daemon.c | 27 ++++++++++++++-------------
 1 file changed, 14 insertions(+), 13 deletions(-)

diff --git a/daemon.c b/daemon.c
index 4dcfff9..a6f467e 100644
--- a/daemon.c
+++ b/daemon.c
@@ -553,20 +553,21 @@ static void parse_host_arg(char *extra_args, int buflen)
 		static char addrbuf[HOST_NAME_MAX + 1];
 
 		hent = gethostbyname(hostname);
+		if (hent) {
+			ap = hent->h_addr_list;
+			memset(&sa, 0, sizeof sa);
+			sa.sin_family = hent->h_addrtype;
+			sa.sin_port = htons(0);
+			memcpy(&sa.sin_addr, *ap, hent->h_length);
+
+			inet_ntop(hent->h_addrtype, &sa.sin_addr,
+				  addrbuf, sizeof(addrbuf));
 
-		ap = hent->h_addr_list;
-		memset(&sa, 0, sizeof sa);
-		sa.sin_family = hent->h_addrtype;
-		sa.sin_port = htons(0);
-		memcpy(&sa.sin_addr, *ap, hent->h_length);
-
-		inet_ntop(hent->h_addrtype, &sa.sin_addr,
-			  addrbuf, sizeof(addrbuf));
-
-		free(canon_hostname);
-		canon_hostname = xstrdup(hent->h_name);
-		free(ip_address);
-		ip_address = xstrdup(addrbuf);
+			free(canon_hostname);
+			canon_hostname = xstrdup(hent->h_name);
+			free(ip_address);
+			ip_address = xstrdup(addrbuf);
+		}
 #endif
 	}
 }
-- 
2.1.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-10-01 20:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-01 10:16 [PATCH 1/3] daemon: handle gethostbyname() error René Scharfe
2014-10-01 10:18 ` [PATCH 2/3] daemon: fix error message after bind() René Scharfe
2014-10-01 10:21   ` [PATCH 3/3] daemon: remove write-only variable maxfd René Scharfe
2014-10-01 20:35 ` [PATCH 1/3] daemon: handle gethostbyname() error Junio C Hamano

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 NNTP newsgroup(s).