pfil.c revision 1.12 1 /* $NetBSD: pfil.c,v 1.12 2000/02/22 10:18:49 darrenr Exp $ */
2
3 /*
4 * Copyright (c) 1996 Matthew R. Green
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
25 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 */
30
31 #include <sys/param.h>
32 #include <sys/errno.h>
33 #include <sys/malloc.h>
34 #include <sys/socket.h>
35 #include <sys/socketvar.h>
36 #include <sys/systm.h>
37 #include <sys/proc.h>
38 #include <sys/queue.h>
39
40 #include <net/if.h>
41 #include <net/pfil.h>
42
43 static void pfil_init __P((struct pfil_head *));
44 static void pfil_list_add(pfil_list_t *,
45 int (*) __P((void *, int, struct ifnet *, int, struct mbuf **)), int);
46 static void pfil_list_remove(pfil_list_t *,
47 int (*) __P((void *, int, struct ifnet *, int, struct mbuf **)));
48
49 static void
50 pfil_init(ph)
51 struct pfil_head *ph;
52 {
53
54 TAILQ_INIT(&ph->ph_in);
55 TAILQ_INIT(&ph->ph_out);
56 ph->ph_init = 1;
57 }
58
59 /*
60 * pfil_add_hook() adds a function to the packet filter hook. the
61 * flags are:
62 * PFIL_IN call me on incoming packets
63 * PFIL_OUT call me on outgoing packets
64 * PFIL_ALL call me on all of the above
65 * PFIL_WAITOK OK to call malloc with M_WAITOK.
66 */
67 void
68 pfil_add_hook(func, flags, ph)
69 int (*func) __P((void *, int, struct ifnet *, int,
70 struct mbuf **));
71 int flags;
72 struct pfil_head *ph;
73 {
74
75 if (ph->ph_init == 0)
76 pfil_init(ph);
77
78 if (flags & PFIL_IN)
79 pfil_list_add(&ph->ph_in, func, flags);
80 if (flags & PFIL_OUT)
81 pfil_list_add(&ph->ph_out, func, flags);
82 }
83
84 static void
85 pfil_list_add(list, func, flags)
86 pfil_list_t *list;
87 int (*func) __P((void *, int, struct ifnet *, int,
88 struct mbuf **));
89 int flags;
90 {
91 struct packet_filter_hook *pfh;
92
93 pfh = (struct packet_filter_hook *)malloc(sizeof(*pfh), M_IFADDR,
94 flags & PFIL_WAITOK ? M_WAITOK : M_NOWAIT);
95 if (pfh == NULL)
96 panic("no memory for packet filter hook");
97 pfh->pfil_func = func;
98 /*
99 * insert the input list in reverse order of the output list
100 * so that the same path is followed in or out of the kernel.
101 */
102
103 if (flags & PFIL_IN)
104 TAILQ_INSERT_HEAD(list, pfh, pfil_link);
105 else
106 TAILQ_INSERT_TAIL(list, pfh, pfil_link);
107 }
108
109 /*
110 * pfil_remove_hook removes a specific function from the packet filter
111 * hook list.
112 */
113 void
114 pfil_remove_hook(func, flags, ph)
115 int (*func) __P((void *, int, struct ifnet *, int,
116 struct mbuf **));
117 int flags;
118 struct pfil_head *ph;
119 {
120
121 if (ph->ph_init == 0)
122 pfil_init(ph);
123
124 if (flags & PFIL_IN)
125 pfil_list_remove(&ph->ph_in, func);
126 if (flags & PFIL_OUT)
127 pfil_list_remove(&ph->ph_out, func);
128 }
129
130 /*
131 * pfil_list_remove is an internal function that takes a function off the
132 * specified list.
133 */
134 static void
135 pfil_list_remove(list, func)
136 pfil_list_t *list;
137 int (*func) __P((void *, int, struct ifnet *, int,
138 struct mbuf **));
139 {
140 struct packet_filter_hook *pfh;
141
142 for (pfh = list->tqh_first; pfh; pfh = pfh->pfil_link.tqe_next)
143 if (pfh->pfil_func == func) {
144 TAILQ_REMOVE(list, pfh, pfil_link);
145 free(pfh, M_IFADDR);
146 return;
147 }
148 printf("pfil_list_remove: no function on list\n");
149 #ifdef DIAGNOSTIC
150 panic("pfil_list_remove");
151 #endif
152 }
153
154 struct packet_filter_hook *
155 pfil_hook_get(flag, ph)
156 int flag;
157 struct pfil_head *ph;
158 {
159 if (ph->ph_init != 0)
160 switch (flag) {
161 case PFIL_IN:
162 return (ph->ph_in.tqh_first);
163 case PFIL_OUT:
164 return (ph->ph_out.tqh_first);
165 }
166 return NULL;
167 }
168