2 * Copyright (C) 1995-2005, Index Data ApS
3 * See the file LICENSE for details.
5 * $Id: tcpdchk.c,v 1.8 2005-06-25 15:46:06 adam Exp $
9 * \brief Implements TCP WRAPPER check.
16 #include <sys/types.h>
22 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <netinet/tcp.h>
29 #include <sys/socket.h>
32 #include <yaz/yconfig.h>
33 #include <yaz/comstack.h>
34 #include <yaz/statserv.h>
42 int allow_severity = LOG_INFO; /* not YLOG !! */
43 int deny_severity = LOG_WARNING;
54 int check_ip_tcpd(void *cd, const char *addr, int len, int type)
56 const char *daemon_name = (const char *) cd;
60 if (daemon_name && *daemon_name)
63 struct request_info request_info;
66 char *host_name = 0, *host_addr = 0;
69 struct sockaddr_in *addr_in = (struct sockaddr_in *) addr;
71 if ((host = gethostbyaddr((char*)&addr_in->sin_addr,
72 sizeof(addr_in->sin_addr),
74 host_name = (char*) host->h_name;
75 host_addr = inet_ntoa(addr_in->sin_addr);
78 request_init(&request_info, RQ_DAEMON, daemon_name,
79 RQ_CLIENT_NAME, host_name,
80 RQ_CLIENT_SIN, addr_in,
81 RQ_CLIENT_ADDR, host_addr, 0);
83 request_init(&request_info, RQ_DAEMON, daemon_name,
84 RQ_CLIENT_SIN, addr_in,
85 RQ_CLIENT_ADDR, host_addr, 0);
86 i = hosts_access(&request_info);
89 yaz_log (YLOG_DEBUG, "access denied from %s",
90 host_name ? host_name : host_addr);
93 yaz_log (YLOG_DEBUG, "access granted from %s",
94 host_name ? host_name : host_addr);
104 * indent-tabs-mode: nil
106 * vim: shiftwidth=4 tabstop=8 expandtab