ip_divert.c revision 37332
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.31 1998/06/12 02:48:47 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 *
245 * If no address specified, or dest port is 0, allow packet to divert
246 * back to this socket; otherwise, don't.
247 */
248static int
249div_output(so, m, addr, control)
250	struct socket *so;
251	register struct mbuf *m;
252	struct sockaddr *addr;
253	struct mbuf *control;
254{
255	register struct inpcb *const inp = sotoinpcb(so);
256	register struct ip *const ip = mtod(m, struct ip *);
257	struct sockaddr_in *sin = (struct sockaddr_in *)addr;
258	int error = 0;
259
260	if (control)
261		m_freem(control);		/* XXX */
262
263	/* Loopback avoidance and state recovery */
264	if (sin) {
265		int	len = 0;
266		char	*c = sin->sin_zero;
267		ip_divert_cookie = sin->sin_port;
268
269		/*
270		 * Find receive interface with the given name or IP address.
271		 * The name is user supplied data so don't trust it's size or
272		 * that it is zero terminated. The name has priority.
273		 * We are presently assuming that the sockaddr_in
274		 * has not been replaced by a sockaddr_div, so we limit it
275		 * to 16 bytes in total. the name is stuffed (if it exists)
276		 * in the sin_zero[] field.
277		 */
278		while (*c++ && (len++ < sizeof(sin->sin_zero)));
279		if ((len > 0) && (len < sizeof(sin->sin_zero)))
280			m->m_pkthdr.rcvif = ifunit(sin->sin_zero);
281	} else {
282		ip_divert_cookie = 0;
283	}
284
285	/* Reinject packet into the system as incoming or outgoing */
286	if (!sin || sin->sin_addr.s_addr == 0) {
287		/*
288		 * Don't allow both user specified and setsockopt options,
289		 * and don't allow packet length sizes that will crash
290		 */
291		if (((ip->ip_hl != (sizeof (*ip) >> 2)) && inp->inp_options) ||
292		     ((u_short)ntohs(ip->ip_len) > m->m_pkthdr.len)) {
293			error = EINVAL;
294			goto cantsend;
295		}
296
297		/* Convert fields to host order for ip_output() */
298		NTOHS(ip->ip_len);
299		NTOHS(ip->ip_off);
300
301		/* Send packet to output processing */
302		ipstat.ips_rawout++;			/* XXX */
303		error = ip_output(m, inp->inp_options, &inp->inp_route,
304			(so->so_options & SO_DONTROUTE) |
305			IP_ALLOWBROADCAST | IP_RAWOUTPUT, inp->inp_moptions);
306	} else {
307		struct	ifaddr *ifa;
308
309		/* If no luck with the name above. check by IP address.  */
310		if (m->m_pkthdr.rcvif == NULL) {
311			if (!(ifa = ifa_ifwithaddr((struct sockaddr *) sin))) {
312				error = EADDRNOTAVAIL;
313				goto cantsend;
314			}
315			m->m_pkthdr.rcvif = ifa->ifa_ifp;
316		}
317
318		/* Send packet to input processing */
319		ip_input(m);
320	}
321
322	/* paranoid: Reset for next time (and other packets) */
323	/* almost definitly already done in the ipfw filter but.. */
324	ip_divert_cookie = 0;
325	return error;
326
327cantsend:
328	ip_divert_cookie = 0;
329	m_freem(m);
330	return error;
331}
332
333static int
334div_attach(struct socket *so, int proto, struct proc *p)
335{
336	struct inpcb *inp;
337	int error, s;
338
339	inp  = sotoinpcb(so);
340	if (inp)
341		panic("div_attach");
342	if (p && (error = suser(p->p_ucred, &p->p_acflag)) != 0)
343		return error;
344
345	s = splnet();
346	error = in_pcballoc(so, &divcbinfo, p);
347	splx(s);
348	if (error)
349		return error;
350	error = soreserve(so, div_sendspace, div_recvspace);
351	if (error)
352		return error;
353	inp = (struct inpcb *)so->so_pcb;
354	inp->inp_ip_p = proto;
355	inp->inp_flags |= INP_HDRINCL;
356	/* The socket is always "connected" because
357	   we always know "where" to send the packet */
358	so->so_state |= SS_ISCONNECTED;
359	return 0;
360}
361
362static int
363div_detach(struct socket *so)
364{
365	struct inpcb *inp;
366
367	inp = sotoinpcb(so);
368	if (inp == 0)
369		panic("div_detach");
370	in_pcbdetach(inp);
371	return 0;
372}
373
374static int
375div_abort(struct socket *so)
376{
377	soisdisconnected(so);
378	return div_detach(so);
379}
380
381static int
382div_disconnect(struct socket *so)
383{
384	if ((so->so_state & SS_ISCONNECTED) == 0)
385		return ENOTCONN;
386	return div_abort(so);
387}
388
389static int
390div_bind(struct socket *so, struct sockaddr *nam, struct proc *p)
391{
392	struct inpcb *inp;
393	int s;
394	int error;
395
396	s = splnet();
397	inp = sotoinpcb(so);
398	error = in_pcbbind(inp, nam, p);
399	splx(s);
400	return 0;
401}
402
403static int
404div_shutdown(struct socket *so)
405{
406	socantsendmore(so);
407	return 0;
408}
409
410static int
411div_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *nam,
412	 struct mbuf *control, struct proc *p)
413{
414	/* Packet must have a header (but that's about it) */
415	if (m->m_len < sizeof (struct ip) ||
416	    (m = m_pullup(m, sizeof (struct ip))) == 0) {
417		ipstat.ips_toosmall++;
418		m_freem(m);
419		return EINVAL;
420	}
421
422	/* Send packet */
423	return div_output(so, m, nam, control);
424}
425
426struct pr_usrreqs div_usrreqs = {
427	div_abort, pru_accept_notsupp, div_attach, div_bind,
428	pru_connect_notsupp, pru_connect2_notsupp, in_control, div_detach,
429	div_disconnect, pru_listen_notsupp, in_setpeeraddr, pru_rcvd_notsupp,
430	pru_rcvoob_notsupp, div_send, pru_sense_null, div_shutdown,
431	in_setsockaddr, sosend, soreceive, sopoll
432};
433