summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/sshd.c b/sshd.c
index 6b85e6c45..186ad5579 100644
--- a/sshd.c
+++ b/sshd.c
@@ -129,6 +129,13 @@
129#include <Security/AuthSession.h> 129#include <Security/AuthSession.h>
130#endif 130#endif
131 131
132#ifdef LIBWRAP
133#include <tcpd.h>
134#include <syslog.h>
135int allow_severity;
136int deny_severity;
137#endif /* LIBWRAP */
138
132#ifndef O_NOCTTY 139#ifndef O_NOCTTY
133#define O_NOCTTY 0 140#define O_NOCTTY 0
134#endif 141#endif
@@ -2141,6 +2148,24 @@ main(int ac, char **av)
2141#ifdef SSH_AUDIT_EVENTS 2148#ifdef SSH_AUDIT_EVENTS
2142 audit_connection_from(remote_ip, remote_port); 2149 audit_connection_from(remote_ip, remote_port);
2143#endif 2150#endif
2151#ifdef LIBWRAP
2152 allow_severity = options.log_facility|LOG_INFO;
2153 deny_severity = options.log_facility|LOG_WARNING;
2154 /* Check whether logins are denied from this host. */
2155 if (packet_connection_is_on_socket()) {
2156 struct request_info req;
2157
2158 request_init(&req, RQ_DAEMON, __progname, RQ_FILE, sock_in, 0);
2159 fromhost(&req);
2160
2161 if (!hosts_access(&req)) {
2162 debug("Connection refused by tcp wrapper");
2163 refuse(&req);
2164 /* NOTREACHED */
2165 fatal("libwrap refuse returns");
2166 }
2167 }
2168#endif /* LIBWRAP */
2144 2169
2145 /* Log the connection. */ 2170 /* Log the connection. */
2146 laddr = get_local_ipaddr(sock_in); 2171 laddr = get_local_ipaddr(sock_in);