2 * This program can be called via a remote shell command to find out if the
3 * hostname and address are properly recognized, if username lookup works,
4 * and (SysV only) if the TLI on top of IP heuristics work.
6 * Example: "rsh host /some/where/try-from".
8 * Diagnostics are reported through syslog(3) and redirected to stderr.
10 * Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
13 static char sccsid
[] = "@(#) try-from.c 1.2 94/12/28 17:42:55";
15 /* System libraries. */
17 #include <sys/types.h>
23 #include <sys/tiuser.h>
28 #define STDIN_FILENO 0
35 int allow_severity
= SEVERITY
; /* run-time adjustable */
36 int deny_severity
= LOG_WARNING
; /* ditto */
43 struct request_info request
;
48 * Simplify the process name, just like tcpd would.
50 if ((cp
= strrchr(argv
[0], '/')) != 0)
54 * Turn on the "IP-underneath-TLI" detection heuristics.
57 if (ioctl(0, I_FIND
, "timod") == 0)
58 ioctl(0, I_PUSH
, "timod");
62 * Look up the endpoint information.
64 request_init(&request
, RQ_DAEMON
, argv
[0], RQ_FILE
, STDIN_FILENO
, 0);
65 (void) fromhost(&request
);
68 * Show some results. Name and address information is looked up when we
72 #define EXPAND(str) percent_x(buf, sizeof(buf), str, &request)
74 puts(EXPAND("client address (%%a): %a"));
75 puts(EXPAND("client hostname (%%n): %n"));
76 puts(EXPAND("client username (%%u): %u"));
77 puts(EXPAND("client info (%%c): %c"));
78 puts(EXPAND("server address (%%A): %A"));
79 puts(EXPAND("server hostname (%%N): %N"));
80 puts(EXPAND("server process (%%d): %d"));
81 puts(EXPAND("server info (%%s): %s"));