2 * Copyright (c) 1995-2000, Index Data
3 * See the file LICENSE for details.
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.1 2003-10-27 12:21:35 adam
8 * Source restructure. yaz-marcdump part of installation
10 * Revision 1.5 2000/02/28 11:20:06 adam
11 * Using autoconf. New definitions: YAZ_BEGIN_CDECL/YAZ_END_CDECL.
13 * Revision 1.4 1999/11/30 13:47:12 adam
14 * Improved installation. Moved header files to include/yaz.
16 * Revision 1.3 1999/08/27 09:40:32 adam
17 * Renamed logf function to yaz_log. Removed VC++ project files.
19 * Revision 1.2 1999/04/20 09:56:48 adam
20 * Added 'name' paramter to encoder/decoder routines (typedef Odr_fun).
21 * Modified all encoders/decoders to reflect this change.
23 * Revision 1.1 1999/04/16 14:45:55 adam
24 * Added interface for tcpd wrapper for access control.
31 #include <yaz/yconfig.h>
32 #include <yaz/comstack.h>
39 int allow_severity = LOG_INFO;
40 int deny_severity = LOG_WARNING;
51 #include <yaz/statserv.h>
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 (LOG_DEBUG, "access denied from %s",
90 host_name ? host_name : host_addr);
93 yaz_log (LOG_DEBUG, "access granted from %s",
94 host_name ? host_name : host_addr);