]> git.decadent.org.uk Git - nfs-utils.git/blob - support/misc/tcpwrapper.c
e4f453bc93c6a95ca2de560b865037064751ae54
[nfs-utils.git] / support / misc / tcpwrapper.c
1 /* This is copied from portmap 4.0-29 in RedHat. */
2
3  /*
4   * pmap_check - additional portmap security.
5   * 
6   * Always reject non-local requests to update the portmapper tables.
7   * 
8   * Refuse to forward mount requests to the nfs mount daemon. Otherwise, the
9   * requests would appear to come from the local system, and nfs export
10   * restrictions could be bypassed.
11   * 
12   * Refuse to forward requests to the nfsd process.
13   * 
14   * Refuse to forward requests to NIS (YP) daemons; The only exception is the
15   * YPPROC_DOMAIN_NONACK broadcast rpc call that is used to establish initial
16   * contact with the NIS server.
17   * 
18   * Always allocate an unprivileged port when forwarding a request.
19   * 
20   * If compiled with -DCHECK_PORT, require that requests to register or
21   * unregister a privileged port come from a privileged port. This makes it
22   * more difficult to replace a critical service by a trojan.
23   * 
24   * If compiled with -DHOSTS_ACCESS, reject requests from hosts that are not
25   * authorized by the /etc/hosts.{allow,deny} files. The local system is
26   * always treated as an authorized host. The access control tables are never
27   * consulted for requests from the local system, and are always consulted
28   * for requests from other hosts.
29   * 
30   * Author: Wietse Venema (wietse@wzv.win.tue.nl), dept. of Mathematics and
31   * Computing Science, Eindhoven University of Technology, The Netherlands.
32   */
33
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
37 #include <tcpwrapper.h>
38 #include <unistd.h>
39 #include <string.h>
40 #include <rpc/rpc.h>
41 #include <rpc/pmap_prot.h>
42 #include <syslog.h>
43 #include <netdb.h>
44 #include <pwd.h>
45 #include <sys/types.h>
46 #include <sys/signal.h>
47 #ifdef SYSV40
48 #include <netinet/in.h>
49 #include <rpc/rpcent.h>
50 #endif
51
52 static void logit(int severity, struct sockaddr_in *addr,
53                   u_long procnum, u_long prognum, char *text);
54 static void toggle_verboselog(int sig);
55 int     verboselog = 0;
56 int     allow_severity = LOG_INFO;
57 int     deny_severity = LOG_WARNING;
58
59 /* A handful of macros for "readability". */
60
61 #ifdef HAVE_LIBWRAP
62 /* coming from libwrap.a (tcp_wrappers) */
63 extern int hosts_ctl(char *daemon, char *name, char *addr, char *user);
64 #else
65 int hosts_ctl(char *daemon, char *name, char *addr, char *user)
66 {
67         return 0;
68 }
69 #endif
70
71 #define legal_port(a,p) \
72   (ntohs((a)->sin_port) < IPPORT_RESERVED || (p) >= IPPORT_RESERVED)
73
74 #define log_bad_port(addr, proc, prog) \
75   logit(deny_severity, addr, proc, prog, ": request from unprivileged port")
76
77 #define log_bad_host(addr, proc, prog) \
78   logit(deny_severity, addr, proc, prog, ": request from unauthorized host")
79
80 #define log_bad_owner(addr, proc, prog) \
81   logit(deny_severity, addr, proc, prog, ": request from non-local host")
82
83 #define log_no_forward(addr, proc, prog) \
84   logit(deny_severity, addr, proc, prog, ": request not forwarded")
85
86 #define log_client(addr, proc, prog) \
87   logit(allow_severity, addr, proc, prog, "")
88
89 int
90 good_client(daemon, addr)
91 char *daemon;
92 struct sockaddr_in *addr;
93 {
94     struct hostent *hp;
95     char **sp;
96     char *tmpname;
97
98     /* Check the IP address first. */
99     if (hosts_ctl(daemon, "", inet_ntoa(addr->sin_addr), ""))
100         return 1;
101
102     /* Check the hostname. */
103     hp = gethostbyaddr ((const char *) &(addr->sin_addr),
104                         sizeof (addr->sin_addr), AF_INET);
105
106     if (!hp)
107         return 0;
108
109     /* must make sure the hostent is authorative. */
110     tmpname = alloca (strlen (hp->h_name) + 1);
111     strcpy (tmpname, hp->h_name);
112     hp = gethostbyname(tmpname);
113     if (hp) {
114         /* now make sure the "addr->sin_addr" is on the list */
115         for (sp = hp->h_addr_list ; *sp ; sp++) {
116             if (memcmp(*sp, &(addr->sin_addr), hp->h_length)==0)
117                 break;
118         }
119         if (!*sp)
120             /* it was a FAKE. */
121             return 0;
122     }
123     else
124            /* never heard of it. misconfigured DNS? */
125            return 0;
126
127    /* Check the official name first. */
128    if (hosts_ctl(daemon, hp->h_name, "", ""))
129         return 1;
130
131    /* Check aliases. */
132    for (sp = hp->h_aliases; *sp ; sp++) {
133         if (hosts_ctl(daemon, *sp, "", ""))
134             return 1;
135    }
136
137    /* No match */
138    return 0;
139 }
140
141 /* check_startup - additional startup code */
142
143 void    check_startup(void)
144 {
145
146     /*
147      * Give up root privileges so that we can never allocate a privileged
148      * port when forwarding an rpc request.
149      *
150      * Fix 8/3/00 Philipp Knirsch: First lookup our rpc user. If we find it,
151      * switch to that uid, otherwise simply resue the old bin user and print
152      * out a warning in syslog.
153      */
154
155     struct passwd *pwent;
156
157     pwent = getpwnam("rpc");
158     if (pwent == NULL) {
159         syslog(LOG_WARNING, "user rpc not found, reverting to user bin");
160         if (setuid(1) == -1) {
161             syslog(LOG_ERR, "setuid(1) failed: %m");
162             exit(1);
163         }
164     }
165     else {
166         if (setuid(pwent->pw_uid) == -1) {
167             syslog(LOG_WARNING, "setuid() to rpc user failed: %m");
168             if (setuid(1) == -1) {
169                 syslog(LOG_ERR, "setuid(1) failed: %m");
170                 exit(1);
171             }
172         }
173     }
174
175     (void) signal(SIGINT, toggle_verboselog);
176 }
177
178 /* check_default - additional checks for NULL, DUMP, GETPORT and unknown */
179
180 int
181 check_default(daemon, addr, proc, prog)
182 char *daemon;
183 struct sockaddr_in *addr;
184 u_long  proc;
185 u_long  prog;
186 {
187     if (!(from_local(addr) || good_client(daemon, addr))) {
188         log_bad_host(addr, proc, prog);
189         return (FALSE);
190     }
191     if (verboselog)
192         log_client(addr, proc, prog);
193     return (TRUE);
194 }
195
196 /* check_privileged_port - additional checks for privileged-port updates */
197 int
198 check_privileged_port(struct sockaddr_in *addr, 
199                       u_long proc, u_long prog, u_long port)
200 {
201 #ifdef CHECK_PORT
202     if (!legal_port(addr, port)) {
203         log_bad_port(addr, proc, prog);
204         return (FALSE);
205     }
206 #endif
207     return (TRUE);
208 }
209
210 /* toggle_verboselog - toggle verbose logging flag */
211
212 static void toggle_verboselog(int sig)
213 {
214     (void) signal(sig, toggle_verboselog);
215     verboselog = !verboselog;
216 }
217
218 /* logit - report events of interest via the syslog daemon */
219
220 static void logit(int severity, struct sockaddr_in *addr,
221                   u_long procnum, u_long prognum, char *text)
222 {
223     char   *procname;
224     char    procbuf[16 + 4 * sizeof(u_long)];
225     char   *progname;
226     char    progbuf[16 + 4 * sizeof(u_long)];
227     struct rpcent *rpc;
228
229     /*
230      * Fork off a process or the portmap daemon might hang while
231      * getrpcbynumber() or syslog() does its thing.
232      *
233      * Don't forget to wait for the children, too...
234      */
235
236     if (fork() == 0) {
237
238         /* Try to map program number to name. */
239
240         if (prognum == 0) {
241             progname = "";
242         } else if ((rpc = getrpcbynumber((int) prognum))) {
243             progname = rpc->r_name;
244         } else {
245             snprintf(progname = progbuf, sizeof (progbuf),
246                      "prog (%lu)", prognum);
247         }
248
249         /* Try to map procedure number to name. */
250
251         snprintf(procname = procbuf, sizeof (procbuf),
252                  "proc (%lu)", (u_long) procnum);
253
254         /* Write syslog record. */
255
256         syslog(severity, "connect from %s to %s in %s%s",
257                inet_ntoa(addr->sin_addr), procname, progname, text);
258         exit(0);
259     }
260 }