vishalmishra434 / rpms / openssh

Forked from rpms/openssh a month ago
Clone
Petr Lautrbach 0a3f4e
diff --git a/canohost.c b/canohost.c
Petr Lautrbach 0a3f4e
index 97ce58c..1f9320a 100644
Petr Lautrbach 0a3f4e
--- a/canohost.c
Petr Lautrbach 0a3f4e
+++ b/canohost.c
Petr Lautrbach 0a3f4e
@@ -338,6 +338,21 @@ clear_cached_addr(void)
Petr Lautrbach 0a3f4e
 	cached_port = -1;
Petr Lautrbach 0a3f4e
 }
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
+void set_remote_ipaddr(void) {
Petr Lautrbach 0a3f4e
+	if (canonical_host_ip != NULL)
Petr Lautrbach 0a3f4e
+		free(canonical_host_ip);
Petr Lautrbach 0a3f4e
+
Petr Lautrbach 0a3f4e
+	if (packet_connection_is_on_socket()) {
Petr Lautrbach 0a3f4e
+		canonical_host_ip =
Petr Lautrbach 0a3f4e
+		    get_peer_ipaddr(packet_get_connection_in());
Petr Lautrbach 0a3f4e
+		if (canonical_host_ip == NULL)
Petr Lautrbach 0a3f4e
+			cleanup_exit(255);
Petr Lautrbach 0a3f4e
+	} else {
Petr Lautrbach 0a3f4e
+		/* If not on socket, return UNKNOWN. */
Petr Lautrbach 0a3f4e
+		canonical_host_ip = xstrdup("UNKNOWN");
Petr Lautrbach 0a3f4e
+	}
Petr Lautrbach 0a3f4e
+}
Petr Lautrbach 0a3f4e
+
Petr Lautrbach 0a3f4e
 /*
Petr Lautrbach 0a3f4e
  * Returns the IP-address of the remote host as a string.  The returned
Petr Lautrbach 0a3f4e
  * string must not be freed.
Petr Lautrbach 0a3f4e
@@ -347,17 +362,9 @@ const char *
Petr Lautrbach 0a3f4e
 get_remote_ipaddr(void)
Petr Lautrbach 0a3f4e
 {
Petr Lautrbach 0a3f4e
 	/* Check whether we have cached the ipaddr. */
Petr Lautrbach 0a3f4e
-	if (canonical_host_ip == NULL) {
Petr Lautrbach 0a3f4e
-		if (packet_connection_is_on_socket()) {
Petr Lautrbach 0a3f4e
-			canonical_host_ip =
Petr Lautrbach 0a3f4e
-			    get_peer_ipaddr(packet_get_connection_in());
Petr Lautrbach 0a3f4e
-			if (canonical_host_ip == NULL)
Petr Lautrbach 0a3f4e
-				cleanup_exit(255);
Petr Lautrbach 0a3f4e
-		} else {
Petr Lautrbach 0a3f4e
-			/* If not on socket, return UNKNOWN. */
Petr Lautrbach 0a3f4e
-			canonical_host_ip = xstrdup("UNKNOWN");
Petr Lautrbach 0a3f4e
-		}
Petr Lautrbach 0a3f4e
-	}
Petr Lautrbach 0a3f4e
+	if (canonical_host_ip == NULL)
Petr Lautrbach 0a3f4e
+		set_remote_ipaddr();
Petr Lautrbach 0a3f4e
+
Petr Lautrbach 0a3f4e
 	return canonical_host_ip;
Petr Lautrbach 0a3f4e
 }
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
diff --git a/canohost.h b/canohost.h
Petr Lautrbach 0a3f4e
index 4c8636f..4079953 100644
Petr Lautrbach 0a3f4e
--- a/canohost.h
Petr Lautrbach 0a3f4e
+++ b/canohost.h
Petr Lautrbach 0a3f4e
@@ -13,6 +13,7 @@
Petr Lautrbach 0a3f4e
  */
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 const char	*get_canonical_hostname(int);
Petr Lautrbach 0a3f4e
+void		 set_remote_ipaddr(void);
Petr Lautrbach 0a3f4e
 const char	*get_remote_ipaddr(void);
Petr Lautrbach 0a3f4e
 const char	*get_remote_name_or_ip(u_int, int);
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
diff --git a/sshconnect.c b/sshconnect.c
Petr Lautrbach 0a3f4e
index e636f33..451a58b 100644
Petr Lautrbach 0a3f4e
--- a/sshconnect.c
Petr Lautrbach 0a3f4e
+++ b/sshconnect.c
Petr Lautrbach 0a3f4e
@@ -62,6 +62,7 @@
Petr Lautrbach 0a3f4e
 #include "monitor_fdpass.h"
Petr Lautrbach 0a3f4e
 #include "ssh2.h"
Petr Lautrbach 0a3f4e
 #include "version.h"
Petr Lautrbach 0a3f4e
+#include "canohost.h"
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 char *client_version_string = NULL;
Petr Lautrbach 0a3f4e
 char *server_version_string = NULL;
Petr Lautrbach 0a3f4e
@@ -170,6 +171,7 @@ ssh_proxy_fdpass_connect(const char *host, u_short port,
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 	/* Set the connection file descriptors. */
Petr Lautrbach 0a3f4e
 	packet_set_connection(sock, sock);
Petr Lautrbach 0a3f4e
+	set_remote_ipaddr();
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 	return 0;
Petr Lautrbach 0a3f4e
 }
Petr Lautrbach 0a3f4e
@@ -492,6 +494,7 @@ ssh_connect_direct(const char *host, struct addrinfo *aitop,
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 	/* Set the connection. */
Petr Lautrbach 0a3f4e
 	packet_set_connection(sock, sock);
Petr Lautrbach 0a3f4e
+	set_remote_ipaddr();
Petr Lautrbach 0a3f4e
 
Petr Lautrbach 0a3f4e
 	return 0;
Petr Lautrbach 0a3f4e
 }