Home | History | Annotate | Line # | Download | only in net
if_pflog.c revision 1.17
      1  1.17     joerg /*	$NetBSD: if_pflog.c,v 1.17 2010/04/05 07:22:22 joerg Exp $	*/
      2  1.12      yamt /*	$OpenBSD: if_pflog.c,v 1.24 2007/05/26 17:13:30 jason Exp $	*/
      3  1.12      yamt 
      4   1.1    itojun /*
      5   1.1    itojun  * The authors of this code are John Ioannidis (ji (at) tla.org),
      6   1.1    itojun  * Angelos D. Keromytis (kermit (at) csd.uch.gr) and
      7   1.1    itojun  * Niels Provos (provos (at) physnet.uni-hamburg.de).
      8   1.1    itojun  *
      9   1.1    itojun  * This code was written by John Ioannidis for BSD/OS in Athens, Greece,
     10   1.1    itojun  * in November 1995.
     11   1.1    itojun  *
     12   1.1    itojun  * Ported to OpenBSD and NetBSD, with additional transforms, in December 1996,
     13   1.1    itojun  * by Angelos D. Keromytis.
     14   1.1    itojun  *
     15   1.1    itojun  * Additional transforms and features in 1997 and 1998 by Angelos D. Keromytis
     16   1.1    itojun  * and Niels Provos.
     17   1.1    itojun  *
     18   1.1    itojun  * Copyright (C) 1995, 1996, 1997, 1998 by John Ioannidis, Angelos D. Keromytis
     19   1.1    itojun  * and Niels Provos.
     20   1.1    itojun  * Copyright (c) 2001, Angelos D. Keromytis, Niels Provos.
     21   1.1    itojun  *
     22   1.1    itojun  * Permission to use, copy, and modify this software with or without fee
     23   1.1    itojun  * is hereby granted, provided that this entire notice is included in
     24   1.1    itojun  * all copies of any software which is or includes a copy or
     25   1.1    itojun  * modification of this software.
     26   1.1    itojun  * You may use this code under the GNU public license if you so wish. Please
     27   1.1    itojun  * contribute changes back to the authors under this freer than GPL license
     28   1.1    itojun  * so that we may further the use of strong encryption without limitations to
     29   1.1    itojun  * all.
     30   1.1    itojun  *
     31   1.1    itojun  * THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR
     32   1.1    itojun  * IMPLIED WARRANTY. IN PARTICULAR, NONE OF THE AUTHORS MAKES ANY
     33   1.1    itojun  * REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE
     34   1.1    itojun  * MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR
     35   1.1    itojun  * PURPOSE.
     36   1.1    itojun  */
     37   1.1    itojun 
     38  1.11     lukem #include <sys/cdefs.h>
     39  1.17     joerg __KERNEL_RCSID(0, "$NetBSD: if_pflog.c,v 1.17 2010/04/05 07:22:22 joerg Exp $");
     40  1.11     lukem 
     41   1.2    itojun #ifdef _KERNEL_OPT
     42   1.2    itojun #include "opt_inet.h"
     43   1.2    itojun #endif
     44   1.2    itojun 
     45   1.1    itojun #include "pflog.h"
     46   1.1    itojun 
     47   1.1    itojun #include <sys/param.h>
     48   1.1    itojun #include <sys/systm.h>
     49   1.1    itojun #include <sys/mbuf.h>
     50  1.12      yamt #include <sys/proc.h>
     51   1.1    itojun #include <sys/socket.h>
     52   1.1    itojun #include <sys/ioctl.h>
     53   1.1    itojun 
     54   1.1    itojun #include <net/if.h>
     55   1.1    itojun #include <net/if_types.h>
     56   1.1    itojun #include <net/route.h>
     57   1.1    itojun #include <net/bpf.h>
     58   1.1    itojun 
     59   1.1    itojun #ifdef	INET
     60   1.1    itojun #include <netinet/in.h>
     61   1.1    itojun #include <netinet/in_var.h>
     62   1.1    itojun #include <netinet/in_systm.h>
     63   1.1    itojun #include <netinet/ip.h>
     64   1.1    itojun #endif
     65   1.1    itojun 
     66   1.1    itojun #ifdef INET6
     67   1.1    itojun #ifndef INET
     68   1.1    itojun #include <netinet/in.h>
     69   1.1    itojun #endif
     70   1.1    itojun #include <netinet6/nd6.h>
     71   1.1    itojun #endif /* INET6 */
     72   1.1    itojun 
     73   1.1    itojun #include <net/pfvar.h>
     74   1.1    itojun #include <net/if_pflog.h>
     75   1.1    itojun 
     76   1.1    itojun #define PFLOGMTU	(32768 + MHLEN + MLEN)
     77   1.1    itojun 
     78   1.1    itojun #ifdef PFLOGDEBUG
     79   1.1    itojun #define DPRINTF(x)    do { if (pflogdebug) printf x ; } while (0)
     80   1.1    itojun #else
     81   1.1    itojun #define DPRINTF(x)
     82   1.1    itojun #endif
     83   1.1    itojun 
     84   1.1    itojun void	pflogattach(int);
     85   1.9    dyoung int	pflogoutput(struct ifnet *, struct mbuf *, const struct sockaddr *,
     86   1.1    itojun 	    	       struct rtentry *);
     87  1.10  christos int	pflogioctl(struct ifnet *, u_long, void *);
     88   1.1    itojun void	pflogstart(struct ifnet *);
     89  1.12      yamt int	pflog_clone_create(struct if_clone *, int);
     90  1.12      yamt int	pflog_clone_destroy(struct ifnet *);
     91  1.12      yamt 
     92  1.12      yamt LIST_HEAD(, pflog_softc)	pflogif_list;
     93  1.12      yamt struct if_clone	pflog_cloner =
     94  1.12      yamt     IF_CLONE_INITIALIZER("pflog", pflog_clone_create, pflog_clone_destroy);
     95   1.1    itojun 
     96  1.12      yamt struct ifnet	*pflogifs[PFLOGIFS_MAX];	/* for fast access */
     97   1.1    itojun 
     98   1.1    itojun void
     99   1.8  christos pflogattach(int npflog)
    100   1.1    itojun {
    101   1.1    itojun 	int i;
    102   1.1    itojun 
    103  1.12      yamt 	LIST_INIT(&pflogif_list);
    104  1.12      yamt 	for (i = 0; i < PFLOGIFS_MAX; i++)
    105  1.12      yamt 		pflogifs[i] = NULL;
    106  1.12      yamt 	if_clone_attach(&pflog_cloner);
    107   1.1    itojun }
    108   1.1    itojun 
    109  1.12      yamt int
    110  1.12      yamt pflog_clone_create(struct if_clone *ifc, int unit)
    111  1.12      yamt {
    112  1.12      yamt 	struct ifnet *ifp;
    113  1.12      yamt 	struct pflog_softc *pflogif;
    114  1.12      yamt 	int s;
    115  1.12      yamt 
    116  1.12      yamt 	if (unit >= PFLOGIFS_MAX)
    117  1.12      yamt 		return (EINVAL);
    118  1.12      yamt 
    119  1.14    cegger 	if ((pflogif = malloc(sizeof(*pflogif), M_DEVBUF, M_NOWAIT|M_ZERO)) == NULL)
    120  1.12      yamt 		return (ENOMEM);
    121  1.12      yamt 
    122  1.12      yamt 	pflogif->sc_unit = unit;
    123  1.12      yamt 	ifp = &pflogif->sc_if;
    124  1.12      yamt 	snprintf(ifp->if_xname, sizeof ifp->if_xname, "pflog%d", unit);
    125  1.12      yamt 	ifp->if_softc = pflogif;
    126  1.12      yamt 	ifp->if_mtu = PFLOGMTU;
    127  1.12      yamt 	ifp->if_ioctl = pflogioctl;
    128  1.12      yamt 	ifp->if_output = pflogoutput;
    129  1.12      yamt 	ifp->if_start = pflogstart;
    130  1.12      yamt 	ifp->if_type = IFT_PFLOG;
    131  1.12      yamt #ifndef __NetBSD__
    132  1.12      yamt 	ifp->if_snd.ifq_maxlen = ifqmaxlen;
    133  1.12      yamt #endif /* !__NetBSD__ */
    134  1.12      yamt 	ifp->if_hdrlen = PFLOG_HDRLEN;
    135  1.12      yamt 	if_attach(ifp);
    136  1.12      yamt 	if_alloc_sadl(ifp);
    137  1.12      yamt 
    138  1.12      yamt #ifdef __NetBSD__
    139  1.17     joerg 	bpf_attach(ifp, DLT_PFLOG, PFLOG_HDRLEN);
    140  1.12      yamt #else
    141  1.12      yamt 	bpfattach(&pflogif->sc_if.if_bpf, ifp, DLT_PFLOG, PFLOG_HDRLEN);
    142  1.12      yamt #endif /* !__NetBSD__ */
    143  1.12      yamt 
    144  1.12      yamt 	s = splnet();
    145  1.12      yamt 	LIST_INSERT_HEAD(&pflogif_list, pflogif, sc_list);
    146  1.12      yamt 	pflogifs[unit] = ifp;
    147  1.12      yamt 	splx(s);
    148  1.12      yamt 
    149  1.12      yamt 	return (0);
    150   1.3    itojun }
    151  1.12      yamt 
    152  1.12      yamt int
    153  1.12      yamt pflog_clone_destroy(struct ifnet *ifp)
    154  1.12      yamt {
    155  1.12      yamt 	struct pflog_softc	*pflogif = ifp->if_softc;
    156  1.12      yamt 	int			 s;
    157  1.12      yamt 
    158  1.12      yamt 	s = splnet();
    159  1.12      yamt 	pflogifs[pflogif->sc_unit] = NULL;
    160  1.12      yamt 	LIST_REMOVE(pflogif, sc_list);
    161  1.12      yamt 	splx(s);
    162  1.12      yamt 
    163  1.17     joerg 	bpf_detach(ifp);
    164  1.12      yamt 	if_detach(ifp);
    165  1.12      yamt 	free(pflogif, M_DEVBUF);
    166  1.12      yamt 	return (0);
    167  1.12      yamt }
    168   1.3    itojun 
    169   1.1    itojun /*
    170   1.1    itojun  * Start output on the pflog interface.
    171   1.1    itojun  */
    172   1.1    itojun void
    173   1.1    itojun pflogstart(struct ifnet *ifp)
    174   1.1    itojun {
    175   1.1    itojun 	struct mbuf *m;
    176   1.1    itojun 	int s;
    177   1.1    itojun 
    178   1.1    itojun 	for (;;) {
    179   1.2    itojun 		s = splnet();
    180   1.1    itojun 		IF_DROP(&ifp->if_snd);
    181   1.1    itojun 		IF_DEQUEUE(&ifp->if_snd, m);
    182   1.1    itojun 		splx(s);
    183   1.1    itojun 
    184   1.1    itojun 		if (m == NULL)
    185   1.1    itojun 			return;
    186   1.1    itojun 		else
    187   1.1    itojun 			m_freem(m);
    188   1.1    itojun 	}
    189   1.1    itojun }
    190   1.1    itojun 
    191   1.1    itojun int
    192   1.8  christos pflogoutput(struct ifnet *ifp, struct mbuf *m,
    193   1.9    dyoung     const struct sockaddr *dst, struct rtentry *rt)
    194   1.1    itojun {
    195   1.1    itojun 	m_freem(m);
    196   1.1    itojun 	return (0);
    197   1.1    itojun }
    198   1.1    itojun 
    199   1.1    itojun /* ARGSUSED */
    200   1.1    itojun int
    201  1.10  christos pflogioctl(struct ifnet *ifp, u_long cmd, void *data)
    202   1.1    itojun {
    203  1.13    dyoung 	int error = 0;
    204  1.13    dyoung 
    205   1.1    itojun 	switch (cmd) {
    206  1.13    dyoung 	case SIOCSIFFLAGS:
    207  1.13    dyoung 		if ((error = ifioctl_common(ifp, cmd, data)) != 0)
    208  1.13    dyoung 			break;
    209  1.13    dyoung 		/*FALLTHROUGH*/
    210  1.13    dyoung 	case SIOCINITIFADDR:
    211   1.1    itojun 	case SIOCAIFADDR:
    212   1.1    itojun 	case SIOCSIFDSTADDR:
    213   1.1    itojun 		if (ifp->if_flags & IFF_UP)
    214   1.1    itojun 			ifp->if_flags |= IFF_RUNNING;
    215   1.1    itojun 		else
    216   1.1    itojun 			ifp->if_flags &= ~IFF_RUNNING;
    217   1.1    itojun 		break;
    218   1.1    itojun 	default:
    219  1.13    dyoung 		error = ifioctl_common(ifp, cmd, data);
    220   1.1    itojun 	}
    221   1.1    itojun 
    222  1.13    dyoung 	return error;
    223   1.1    itojun }
    224   1.1    itojun 
    225   1.1    itojun int
    226   1.1    itojun pflog_packet(struct pfi_kif *kif, struct mbuf *m, sa_family_t af, u_int8_t dir,
    227   1.1    itojun     u_int8_t reason, struct pf_rule *rm, struct pf_rule *am,
    228  1.12      yamt     struct pf_ruleset *ruleset, struct pf_pdesc *pd)
    229   1.1    itojun {
    230   1.1    itojun 	struct ifnet *ifn;
    231   1.1    itojun 	struct pfloghdr hdr;
    232   1.1    itojun 
    233  1.12      yamt 	if (kif == NULL || m == NULL || rm == NULL || pd == NULL)
    234   1.1    itojun 		return (-1);
    235   1.1    itojun 
    236  1.12      yamt 	if ((ifn = pflogifs[rm->logif]) == NULL || !ifn->if_bpf)
    237  1.12      yamt 		return (0);
    238  1.12      yamt 
    239   1.1    itojun 	bzero(&hdr, sizeof(hdr));
    240   1.1    itojun 	hdr.length = PFLOG_REAL_HDRLEN;
    241   1.1    itojun 	hdr.af = af;
    242   1.1    itojun 	hdr.action = rm->action;
    243   1.1    itojun 	hdr.reason = reason;
    244   1.1    itojun 	memcpy(hdr.ifname, kif->pfik_name, sizeof(hdr.ifname));
    245   1.1    itojun 
    246   1.1    itojun 	if (am == NULL) {
    247   1.1    itojun 		hdr.rulenr = htonl(rm->nr);
    248   1.1    itojun 		hdr.subrulenr = -1;
    249   1.1    itojun 	} else {
    250   1.1    itojun 		hdr.rulenr = htonl(am->nr);
    251   1.1    itojun 		hdr.subrulenr = htonl(rm->nr);
    252   1.5      yamt 		if (ruleset != NULL && ruleset->anchor != NULL)
    253   1.5      yamt 			strlcpy(hdr.ruleset, ruleset->anchor->name,
    254   1.1    itojun 			    sizeof(hdr.ruleset));
    255   1.1    itojun 	}
    256  1.12      yamt 	if (rm->log & PF_LOG_SOCKET_LOOKUP && !pd->lookup.done)
    257  1.12      yamt 		pd->lookup.done = pf_socket_lookup(dir, pd);
    258  1.12      yamt 	if (pd->lookup.done > 0) {
    259  1.12      yamt 		hdr.uid = pd->lookup.uid;
    260  1.12      yamt 		hdr.pid = pd->lookup.pid;
    261  1.12      yamt 	} else {
    262  1.12      yamt 		hdr.uid = UID_MAX;
    263  1.12      yamt 		hdr.pid = NO_PID;
    264  1.12      yamt 	}
    265  1.12      yamt 	hdr.rule_uid = rm->cuid;
    266  1.12      yamt 	hdr.rule_pid = rm->cpid;
    267   1.1    itojun 	hdr.dir = dir;
    268   1.1    itojun 
    269   1.1    itojun #ifdef INET
    270   1.1    itojun 	if (af == AF_INET && dir == PF_OUT) {
    271   1.1    itojun 		struct ip *ip;
    272   1.1    itojun 
    273   1.1    itojun 		ip = mtod(m, struct ip *);
    274   1.1    itojun 		ip->ip_sum = 0;
    275   1.1    itojun 		ip->ip_sum = in_cksum(m, ip->ip_hl << 2);
    276   1.1    itojun 	}
    277   1.1    itojun #endif /* INET */
    278   1.1    itojun 
    279  1.12      yamt 	ifn->if_opackets++;
    280  1.12      yamt 	ifn->if_obytes += m->m_pkthdr.len;
    281   1.1    itojun 
    282  1.12      yamt #ifdef __NetBSD__
    283  1.17     joerg 	bpf_mtap2(ifn->if_bpf, &hdr, PFLOG_HDRLEN, m);
    284  1.12      yamt #else
    285  1.12      yamt 	bpf_mtap_hdr(ifn->if_bpf, (char *)&hdr, PFLOG_HDRLEN, m,
    286  1.12      yamt 	    BPF_DIRECTION_OUT);
    287  1.12      yamt #endif /* !__NetBSD__ */
    288   1.1    itojun 
    289   1.1    itojun 
    290   1.1    itojun 	return (0);
    291   1.1    itojun }
    292