ip_divert.c revision 37334
1/*
2 * Copyright (c) 1982, 1986, 1988, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 *    must display the following acknowledgement:
15 *	This product includes software developed by the University of
16 *	California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 *    may be used to endorse or promote products derived from this software
19 *    without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 *	$Id: ip_divert.c,v 1.32 1998/07/02 05:49:07 julian Exp $
34 */
35
36#include "opt_inet.h"
37#include "opt_ipfw.h"
38#include "opt_ipdivert.h"
39
40#ifndef INET
41#error "IPDIVERT requires INET."
42#endif
43
44#include <sys/param.h>
45#include <sys/malloc.h>
46#include <sys/mbuf.h>
47#include <sys/socket.h>
48#include <sys/protosw.h>
49#include <sys/socketvar.h>
50#include <sys/systm.h>
51#include <sys/proc.h>
52
53#include <vm/vm_zone.h>
54
55#include <net/if.h>
56#include <net/route.h>
57
58#include <netinet/in.h>
59#include <netinet/in_systm.h>
60#include <netinet/ip.h>
61#include <netinet/in_pcb.h>
62#include <netinet/in_var.h>
63#include <netinet/ip_var.h>
64
65/*
66 * Divert sockets
67 */
68
69/*
70 * Allocate enough space to hold a full IP packet
71 */
72#define	DIVSNDQ		(65536 + 100)
73#define	DIVRCVQ		(65536 + 100)
74
75/* Global variables */
76
77/*
78 * ip_input() and ip_output() set this secret value before calling us to
79 * let us know which divert port to divert a packet to; this is done so
80 * we can use the existing prototype for struct protosw's pr_input().
81 * This is stored in host order.
82 */
83u_short ip_divert_port;
84
85/*
86 * A 16 bit cookie is passed to the user process.
87 * The user process can send it back to help the caller know something
88 * about where the packet came from.
89 *
90 * If IPFW is the caller then the cookie is the rule that sent
91 * us here. On reinjection is is the rule after which processing
92 * should continue. Leaving it the same will make processing start
93 * at the rule number after that which sent it here. Setting it to
94 * 0 will restart processing at the beginning.
95 */
96u_int16_t ip_divert_cookie;
97
98/* Internal variables */
99
100static struct inpcbhead divcb;
101static struct inpcbinfo divcbinfo;
102
103static u_long	div_sendspace = DIVSNDQ;	/* XXX sysctl ? */
104static u_long	div_recvspace = DIVRCVQ;	/* XXX sysctl ? */
105
106/* Optimization: have this preinitialized */
107static struct sockaddr_in divsrc = { sizeof(divsrc), AF_INET };
108
109/* Internal functions */
110
111static int div_output(struct socket *so,
112		struct mbuf *m, struct sockaddr *addr, struct mbuf *control);
113
114/*
115 * Initialize divert connection block queue.
116 */
117void
118div_init(void)
119{
120	LIST_INIT(&divcb);
121	divcbinfo.listhead = &divcb;
122	/*
123	 * XXX We don't use the hash list for divert IP, but it's easier
124	 * to allocate a one entry hash list than it is to check all
125	 * over the place for hashbase == NULL.
126	 */
127	divcbinfo.hashbase = hashinit(1, M_PCB, &divcbinfo.hashmask);
128	divcbinfo.porthashbase = hashinit(1, M_PCB, &divcbinfo.porthashmask);
129	divcbinfo.ipi_zone = zinit("divcb", sizeof(struct inpcb),
130				   maxsockets, ZONE_INTERRUPT, 0);
131}
132
133/*
134 * Setup generic address and protocol structures
135 * for div_input routine, then pass them along with
136 * mbuf chain. ip->ip_len is assumed to have had
137 * the header length (hlen) subtracted out already.
138 * We tell whether the packet was incoming or outgoing
139 * by seeing if hlen == 0, which is a hack.
140 */
141void
142div_input(struct mbuf *m, int hlen)
143{
144	struct ip *ip;
145	struct inpcb *inp;
146	struct socket *sa;
147
148	/* Sanity check */
149	if (ip_divert_port == 0)
150		panic("div_input: port is 0");
151
152	/* Assure header */
153	if (m->m_len < sizeof(struct ip) &&
154	    (m = m_pullup(m, sizeof(struct ip))) == 0) {
155		return;
156	}
157	ip = mtod(m, struct ip *);
158
159	/* Record divert port */
160	divsrc.sin_port = ip_divert_cookie;
161	ip_divert_cookie = 0;
162
163	/* Restore packet header fields */
164	ip->ip_len += hlen;
165	HTONS(ip->ip_len);
166	HTONS(ip->ip_off);
167
168	/* Record receive interface address, if any */
169	divsrc.sin_addr.s_addr = 0;
170	if (hlen) {
171		struct ifaddr *ifa;
172
173#ifdef DIAGNOSTIC
174		/* Sanity check */
175		if (!(m->m_flags & M_PKTHDR))
176			panic("div_input: no pkt hdr");
177#endif
178
179		/* More fields affected by ip_input() */
180		HTONS(ip->ip_id);
181
182		/* Find IP address for receive interface */
183		for (ifa = m->m_pkthdr.rcvif->if_addrhead.tqh_first;
184		    ifa != NULL; ifa = ifa->ifa_link.tqe_next) {
185			if (ifa->ifa_addr == NULL)
186				continue;
187			if (ifa->ifa_addr->sa_family != AF_INET)
188				continue;
189			divsrc.sin_addr =
190			    ((struct sockaddr_in *) ifa->ifa_addr)->sin_addr;
191			break;
192		}
193	}
194	if (m->m_pkthdr.rcvif) {
195		char	name[32];
196		/*
197		 * Hide the actual interface name in there in the
198		 * sin_zero array. XXX This needs to be moved to a
199		 * different sockaddr type for divert, e.g.
200		 * sockaddr_div with multiple fields like
201		 * sockaddr_dl. Presently we have only 7 bytes
202		 * but that will do for now as most interfaces
203		 * are 4 or less + 2 or less bytes for unit.
204		 * There is probably a faster way of doing this,
205		 * possibly taking it from the sockaddr_dl on the iface.
206		 * This solves the problem of a P2P link and a LAN interface
207		 * having the same address, which can result in the wrong
208		 * interface being assigned to the packet when fed back
209		 * into the divert socket. Theoretically if the daemon saves
210		 * and re-uses the sockaddr_in as suggested in the man pages,
211		 * this iface name will come along for the ride.
212		 * (see div_output for the other half of this.)
213		 */
214		sprintf(name, "%s%d",
215			m->m_pkthdr.rcvif->if_name, m->m_pkthdr.rcvif->if_unit);
216		strncpy(divsrc.sin_zero, name, 7);
217	}
218
219	/* Put packet on socket queue, if any */
220	sa = NULL;
221	for (inp = divcb.lh_first; inp != NULL; inp = inp->inp_list.le_next) {
222		if (inp->inp_lport == htons(ip_divert_port))
223			sa = inp->inp_socket;
224	}
225	if (sa) {
226		if (sbappendaddr(&sa->so_rcv, (struct sockaddr *)&divsrc,
227				m, (struct mbuf *)0) == 0)
228			m_freem(m);
229		else
230			sorwakeup(sa);
231	} else {
232		m_freem(m);
233		ipstat.ips_noproto++;
234		ipstat.ips_delivered--;
235        }
236}
237
238/*
239 * Deliver packet back into the IP processing machinery.
240 *
241 * If no address specified, or address is 0.0.0.0, send to ip_output();
242 * otherwise, send to ip_input() and mark as having been received on
243 * the interface with that address.
244 */
245static int
246div_output(so, m, addr, control)
247	struct socket *so;
248	register struct mbuf *m;
249	struct sockaddr *addr;
250	struct mbuf *control;
251{
252	register struct inpcb *const inp = sotoinpcb(so);
253	register struct ip *const ip = mtod(m, struct ip *);
254	struct sockaddr_in *sin = (struct sockaddr_in *)addr;
255	int error = 0;
256
257	if (control)
258		m_freem(control);		/* XXX */
259
260	/* Loopback avoidance and state recovery */
261	if (sin) {
262		int	len = 0;
263		char	*c = sin->sin_zero;
264		ip_divert_cookie = sin->sin_port;
265
266		/*
267		 * Find receive interface with the given name or IP address.
268		 * The name is user supplied data so don't trust it's size or
269		 * that it is zero terminated. The name has priority.
270		 * We are presently assuming that the sockaddr_in
271		 * has not been replaced by a sockaddr_div, so we limit it
272		 * to 16 bytes in total. the name is stuffed (if it exists)
273		 * in the sin_zero[] field.
274		 */
275		while (*c++ && (len++ < sizeof(sin->sin_zero)));
276		if ((len > 0) && (len < sizeof(sin->sin_zero)))
277			m->m_pkthdr.rcvif = ifunit(sin->sin_zero);
278	} else {
279		ip_divert_cookie = 0;
280	}
281
282	/* Reinject packet into the system as incoming or outgoing */
283	if (!sin || sin->sin_addr.s_addr == 0) {
284		/*
285		 * Don't allow both user specified and setsockopt options,
286		 * and don't allow packet length sizes that will crash
287		 */
288		if (((ip->ip_hl != (sizeof (*ip) >> 2)) && inp->inp_options) ||
289		     ((u_short)ntohs(ip->ip_len) > m->m_pkthdr.len)) {
290			error = EINVAL;
291			goto cantsend;
292		}
293
294		/* Convert fields to host order for ip_output() */
295		NTOHS(ip->ip_len);
296		NTOHS(ip->ip_off);
297
298		/* Send packet to output processing */
299		ipstat.ips_rawout++;			/* XXX */
300		error = ip_output(m, inp->inp_options, &inp->inp_route,
301			(so->so_options & SO_DONTROUTE) |
302			IP_ALLOWBROADCAST | IP_RAWOUTPUT, inp->inp_moptions);
303	} else {
304		struct	ifaddr *ifa;
305
306		/* If no luck with the name above. check by IP address.  */
307		if (m->m_pkthdr.rcvif == NULL) {
308			if (!(ifa = ifa_ifwithaddr((struct sockaddr *) sin))) {
309				error = EADDRNOTAVAIL;
310				goto cantsend;
311			}
312			m->m_pkthdr.rcvif = ifa->ifa_ifp;
313		}
314
315		/* Send packet to input processing */
316		ip_input(m);
317	}
318
319	/* paranoid: Reset for next time (and other packets) */
320	/* almost definitly already done in the ipfw filter but.. */
321	ip_divert_cookie = 0;
322	return error;
323
324cantsend:
325	ip_divert_cookie = 0;
326	m_freem(m);
327	return error;
328}
329
330static int
331div_attach(struct socket *so, int proto, struct proc *p)
332{
333	struct inpcb *inp;
334	int error, s;
335
336	inp  = sotoinpcb(so);
337	if (inp)
338		panic("div_attach");
339	if (p && (error = suser(p->p_ucred, &p->p_acflag)) != 0)
340		return error;
341
342	s = splnet();
343	error = in_pcballoc(so, &divcbinfo, p);
344	splx(s);
345	if (error)
346		return error;
347	error = soreserve(so, div_sendspace, div_recvspace);
348	if (error)
349		return error;
350	inp = (struct inpcb *)so->so_pcb;
351	inp->inp_ip_p = proto;
352	inp->inp_flags |= INP_HDRINCL;
353	/* The socket is always "connected" because
354	   we always know "where" to send the packet */
355	so->so_state |= SS_ISCONNECTED;
356	return 0;
357}
358
359static int
360div_detach(struct socket *so)
361{
362	struct inpcb *inp;
363
364	inp = sotoinpcb(so);
365	if (inp == 0)
366		panic("div_detach");
367	in_pcbdetach(inp);
368	return 0;
369}
370
371static int
372div_abort(struct socket *so)
373{
374	soisdisconnected(so);
375	return div_detach(so);
376}
377
378static int
379div_disconnect(struct socket *so)
380{
381	if ((so->so_state & SS_ISCONNECTED) == 0)
382		return ENOTCONN;
383	return div_abort(so);
384}
385
386static int
387div_bind(struct socket *so, struct sockaddr *nam, struct proc *p)
388{
389	struct inpcb *inp;
390	int s;
391	int error;
392
393	s = splnet();
394	inp = sotoinpcb(so);
395	error = in_pcbbind(inp, nam, p);
396	splx(s);
397	return 0;
398}
399
400static int
401div_shutdown(struct socket *so)
402{
403	socantsendmore(so);
404	return 0;
405}
406
407static int
408div_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
409	 struct mbuf *control, struct proc *p)
410{
411	/* Packet must have a header (but that's about it) */
412	if (m->m_len < sizeof (struct ip) ||
413	    (m = m_pullup(m, sizeof (struct ip))) == 0) {
414		ipstat.ips_toosmall++;
415		m_freem(m);
416		return EINVAL;
417	}
418
419	/* Send packet */
420	return div_output(so, m, nam, control);
421}
422
423struct pr_usrreqs div_usrreqs = {
424	div_abort, pru_accept_notsupp, div_attach, div_bind,
425	pru_connect_notsupp, pru_connect2_notsupp, in_control, div_detach,
426	div_disconnect, pru_listen_notsupp, in_setpeeraddr, pru_rcvd_notsupp,
427	pru_rcvoob_notsupp, div_send, pru_sense_null, div_shutdown,
428	in_setsockaddr, sosend, soreceive, sopoll
429};
430