1 /* $NetBSD: scaffold.c,v 1.9 2002/12/26 14:11:28 itojun Exp $ */
4 * Routines for testing only. Not really industrial strength.
6 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
12 static char sccs_id
[] = "@(#) scaffold.c 1.6 97/03/21 19:27:24";
14 __RCSID("$NetBSD: scaffold.c,v 1.9 2002/12/26 14:11:28 itojun Exp $");
18 /* System libraries. */
20 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
33 #define INADDR_NONE (-1) /* XXX should be 0xffffffff */
36 /* Application-specific. */
42 * These are referenced by the options module and by rfc931.c.
44 int allow_severity
= SEVERITY
;
45 int deny_severity
= LOG_WARNING
;
46 extern int rfc931_timeout
; /* = RFC931_TIMEOUT; */
48 /* find_inet_addr - find all addresses for this host, result to free() */
50 struct addrinfo
*find_inet_addr(host
, flags
)
54 struct addrinfo hints
, *res
;
57 memset(&hints
, 0, sizeof(hints
));
58 hints
.ai_socktype
= SOCK_DGRAM
;
59 hints
.ai_flags
= AI_CANONNAME
| flags
;
60 error
= getaddrinfo(host
, "0", &hints
, &res
);
62 tcpd_warn("%s: %s", host
, gai_strerror(error
));
66 if (res
->ai_canonname
&& STR_NE(host
, res
->ai_canonname
)) {
67 tcpd_warn("%s: hostname alias", host
);
68 tcpd_warn("(official name: %.*s)", STRING_LENGTH
, res
->ai_canonname
);
73 /* check_dns - give each address thorough workout, return address count */
78 struct request_info request
;
79 struct sockaddr_storage ss
;
80 struct addrinfo
*res0
, *res
;
83 if ((res0
= find_inet_addr(host
, 0)) == NULL
)
85 memset(&ss
, 0, sizeof(ss
));
86 request_init(&request
, RQ_CLIENT_SIN
, &ss
, 0);
87 sock_methods(&request
);
90 for (res
= res0
; res
; res
= res
->ai_next
) {
92 if (res
->ai_addrlen
> sizeof(ss
))
94 memcpy(&ss
, res
->ai_addr
, res
->ai_addrlen
);
97 * Force host name and address conversions. Use the request structure
98 * as a cache. Detect hostname lookup problems. Any name/name or
99 * name/address conflicts will be reported while eval_hostname() does
102 request_set(&request
, RQ_CLIENT_ADDR
, "", RQ_CLIENT_NAME
, "", 0);
103 if (STR_EQ(eval_hostname(request
.client
), unknown
))
104 tcpd_warn("host address %s->name lookup failed",
105 eval_hostaddr(request
.client
));
111 /* dummy function to intercept the real shell_cmd() */
115 void shell_cmd(command
)
118 if (hosts_access_verbose
)
119 printf("command: %s", command
);
122 /* dummy function to intercept the real clean_exit() */
126 void clean_exit(request
)
127 struct request_info
*request
;
133 /* dummy function to intercept the real rfc931() */
138 struct request_info
*request
;
140 strlcpy(request
->user
, unknown
, sizeof(request
->user
));
144 /* check_path - examine accessibility */
146 int check_path(path
, st
)
153 if (stat(path
, st
) < 0)
157 tcpd_warn("%s: not owned by root", path
);
158 if (st
->st_mode
& 020)
159 tcpd_warn("%s: group writable", path
);
161 if (st
->st_mode
& 002)
162 tcpd_warn("%s: world writable", path
);
163 if (path
[0] == '/' && path
[1] != 0) {
164 strlcpy(buf
, path
, sizeof(buf
));
165 strrchr(buf
, '/')[0] = 0;
166 (void) check_path(buf
[0] ? buf
: "/", &stbuf
);