2 * Routines for testing only. Not really industrial strength.
4 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
8 static char sccs_id
[] = "@(#) scaffold.c 1.6 97/03/21 19:27:24";
11 /* System libraries. */
13 #include <sys/types.h>
15 #include <sys/socket.h>
16 #include <netinet/in.h>
17 #include <arpa/inet.h>
25 #define INADDR_NONE (-1) /* XXX should be 0xffffffff */
28 extern char *malloc();
30 /* Application-specific. */
36 * These are referenced by the options module and by rfc931.c.
38 int allow_severity
= SEVERITY
;
39 int deny_severity
= LOG_WARNING
;
40 int rfc931_timeout
= RFC931_TIMEOUT
;
42 /* dup_hostent - create hostent in one memory block */
44 static struct hostent
*dup_hostent(hp
)
47 struct hostent_block
{
51 struct hostent_block
*hb
;
56 for (count
= 0; hp
->h_addr_list
[count
] != 0; count
++)
59 if ((hb
= (struct hostent_block
*) malloc(sizeof(struct hostent_block
)
60 + (hp
->h_length
+ sizeof(char *)) * count
)) == 0) {
61 fprintf(stderr
, "Sorry, out of memory\n");
64 memset((char *) &hb
->host
, 0, sizeof(hb
->host
));
65 hb
->host
.h_addrtype
= hp
->h_addrtype
;;
66 hb
->host
.h_length
= hp
->h_length
;
67 hb
->host
.h_addr_list
= hb
->addr_list
;
68 hb
->host
.h_addr_list
[count
] = 0;
69 data
= (char *) (hb
->host
.h_addr_list
+ count
+ 1);
71 for (count
= 0; (addr
= hp
->h_addr_list
[count
]) != 0; count
++) {
72 hb
->host
.h_addr_list
[count
] = data
+ hp
->h_length
* count
;
73 memcpy(hb
->host
.h_addr_list
[count
], addr
, hp
->h_length
);
78 /* find_inet_addr - find all addresses for this host, result to free() */
80 struct hostent
*find_inet_addr(host
)
85 static struct hostent h
;
86 static char *addr_list
[2];
89 * Host address: translate it to internal form.
91 if (numeric_addr(host
, &addr
, &h
.h_addrtype
, &h
.h_length
) != -1) {
92 h
.h_addr_list
= addr_list
;
93 h
.h_addr_list
[0] = (char *) &addr
;
94 return (dup_hostent(&h
));
98 * Map host name to a series of addresses. Watch out for non-internet
99 * forms or aliases. The NOT_INADDR() is here in case gethostbyname() has
100 * been "enhanced" to accept numeric addresses. Make a copy of the
101 * address list so that later gethostbyXXX() calls will not clobber it.
103 if (NOT_INADDR(host
) == 0) {
104 tcpd_warn("%s: not an internet address", host
);
107 if ((hp
= tcpd_gethostbyname(host
, 0)) == 0) {
108 tcpd_warn("%s: host not found", host
);
111 if (!VALID_ADDRTYPE(hp
->h_addrtype
)) {
112 tcpd_warn("%d: not an internet host", hp
->h_addrtype
);
115 if (STR_NE(host
, hp
->h_name
)) {
116 tcpd_warn("%s: hostname alias", host
);
117 tcpd_warn("(official name: %.*s)", STRING_LENGTH
, hp
->h_name
);
119 return (dup_hostent(hp
));
122 /* check_dns - give each address thorough workout, return address count */
127 struct request_info request
;
128 struct sockaddr_gen sin
;
133 if ((hp
= find_inet_addr(host
)) == 0)
135 request_init(&request
, RQ_CLIENT_SIN
, &sin
, 0);
136 sock_methods(&request
);
137 memset((char *) &sin
, 0, sizeof(sin
));
138 sin
.sg_family
= hp
->h_addrtype
;
140 for (count
= 0; (addr
= hp
->h_addr_list
[count
]) != 0; count
++) {
141 memcpy((char *) SGADDRP(&sin
), addr
, SGADDRSZ(&sin
));
144 * Force host name and address conversions. Use the request structure
145 * as a cache. Detect hostname lookup problems. Any name/name or
146 * name/address conflicts will be reported while eval_hostname() does
149 request_set(&request
, RQ_CLIENT_ADDR
, "", RQ_CLIENT_NAME
, "", 0);
150 if (STR_EQ(eval_hostname(request
.client
), unknown
))
151 tcpd_warn("host address %s->name lookup failed",
152 eval_hostaddr(request
.client
));
158 /* dummy function to intercept the real shell_cmd() */
162 void shell_cmd(command
)
165 if (hosts_access_verbose
)
166 printf("command: %s", command
);
169 /* dummy function to intercept the real clean_exit() */
173 void clean_exit(request
)
174 struct request_info
*request
;
179 /* dummy function to intercept the real rfc931() */
184 struct request_info
*request
;
186 strcpy(request
->user
, unknown
);
189 /* check_path - examine accessibility */
191 int check_path(path
, st
)
198 if (stat(path
, st
) < 0)
202 tcpd_warn("%s: not owned by root", path
);
203 if (st
->st_mode
& 020)
204 tcpd_warn("%s: group writable", path
);
206 if (st
->st_mode
& 002)
207 tcpd_warn("%s: world writable", path
);
208 if (path
[0] == '/' && path
[1] != 0) {
209 strrchr(strcpy(buf
, path
), '/')[0] = 0;
210 (void) check_path(buf
[0] ? buf
: "/", &stbuf
);