]>
git.saurik.com Git - apple/xnu.git/blob - bsd/net/bpf_filter.c
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1990, 1991, 1993
24 * The Regents of the University of California. All rights reserved.
26 * This code is derived from the Stanford/CMU enet packet filter,
27 * (net/enet.c) distributed as part of 4.3BSD, and code contributed
28 * to Berkeley by Steven McCanne and Van Jacobson both of Lawrence
29 * Berkeley Laboratory.
31 * Redistribution and use in source and binary forms, with or without
32 * modification, are permitted provided that the following conditions
34 * 1. Redistributions of source code must retain the above copyright
35 * notice, this list of conditions and the following disclaimer.
36 * 2. Redistributions in binary form must reproduce the above copyright
37 * notice, this list of conditions and the following disclaimer in the
38 * documentation and/or other materials provided with the distribution.
39 * 3. All advertising materials mentioning features or use of this software
40 * must display the following acknowledgement:
41 * This product includes software developed by the University of
42 * California, Berkeley and its contributors.
43 * 4. Neither the name of the University nor the names of its contributors
44 * may be used to endorse or promote products derived from this software
45 * without specific prior written permission.
47 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
48 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
50 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
51 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
52 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
53 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
54 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
55 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
56 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
59 * @(#)bpf_filter.c 8.1 (Berkeley) 6/10/93
61 * $FreeBSD: src/sys/net/bpf_filter.c,v 1.17 1999/12/29 04:38:31 peter Exp $
64 #include <sys/param.h>
67 #include <netinet/in.h>
70 #if defined(sparc) || defined(mips) || defined(ibm032) || defined(__alpha__)
75 #define EXTRACT_SHORT(p) ((u_int16_t)ntohs(*(u_int16_t *)p))
76 #define EXTRACT_LONG(p) (ntohl(*(u_int32_t *)p))
78 #define EXTRACT_SHORT(p)\
80 ((u_int16_t)*((u_char *)p+0)<<8|\
81 (u_int16_t)*((u_char *)p+1)<<0))
82 #define EXTRACT_LONG(p)\
83 ((u_int32_t)*((u_char *)p+0)<<24|\
84 (u_int32_t)*((u_char *)p+1)<<16|\
85 (u_int32_t)*((u_char *)p+2)<<8|\
86 (u_int32_t)*((u_char *)p+3)<<0)
94 #define MINDEX(m, k) \
96 register int len = m->m_len; \
107 static u_int16_t m_xhalf
__P((struct mbuf
*m
, bpf_u_int32 k
, int *err
));
108 static u_int32_t m_xword
__P((struct mbuf
*m
, bpf_u_int32 k
, int *err
));
112 register struct mbuf
*m
;
113 register bpf_u_int32 k
;
117 register u_char
*cp
, *np
;
118 register struct mbuf
*m0
;
128 cp
= mtod(m
, u_char
*) + k
;
131 return EXTRACT_LONG(cp
);
134 if (m0
== 0 || m0
->m_len
+ len
- k
< 4)
137 np
= mtod(m0
, u_char
*);
142 ((u_int32_t
)cp
[0] << 24) |
143 ((u_int32_t
)np
[0] << 16) |
144 ((u_int32_t
)np
[1] << 8) |
149 ((u_int32_t
)cp
[0] << 24) |
150 ((u_int32_t
)cp
[1] << 16) |
151 ((u_int32_t
)np
[0] << 8) |
156 ((u_int32_t
)cp
[0] << 24) |
157 ((u_int32_t
)cp
[1] << 16) |
158 ((u_int32_t
)cp
[2] << 8) |
168 register struct mbuf
*m
;
169 register bpf_u_int32 k
;
174 register struct mbuf
*m0
;
184 cp
= mtod(m
, u_char
*) + k
;
187 return EXTRACT_SHORT(cp
);
193 return (cp
[0] << 8) | mtod(m0
, u_char
*)[0];
201 * Execute the filter program starting at pc on the packet p
202 * wirelen is the length of the original packet
203 * buflen is the amount of data present
206 bpf_filter(pc
, p
, wirelen
, buflen
)
207 register const struct bpf_insn
*pc
;
210 register u_int buflen
;
212 register u_int32_t A
= 0, X
= 0;
213 register bpf_u_int32 k
;
214 int32_t mem
[BPF_MEMWORDS
];
218 * No filter means accept all.
239 case BPF_LD
|BPF_W
|BPF_ABS
:
241 if (k
> buflen
|| sizeof(int32_t) > buflen
- k
) {
247 A
= m_xword((struct mbuf
*)p
, k
, &merr
);
256 if (((intptr_t)(p
+ k
) & 3) != 0)
257 A
= EXTRACT_LONG(&p
[k
]);
260 A
= ntohl(*(int32_t *)(p
+ k
));
263 case BPF_LD
|BPF_H
|BPF_ABS
:
265 if (k
> buflen
|| sizeof(int16_t) > buflen
- k
) {
271 A
= m_xhalf((struct mbuf
*)p
, k
, &merr
);
277 A
= EXTRACT_SHORT(&p
[k
]);
280 case BPF_LD
|BPF_B
|BPF_ABS
:
284 register struct mbuf
*m
;
288 m
= (struct mbuf
*)p
;
290 A
= mtod(m
, u_char
*)[k
];
299 case BPF_LD
|BPF_W
|BPF_LEN
:
303 case BPF_LDX
|BPF_W
|BPF_LEN
:
307 case BPF_LD
|BPF_W
|BPF_IND
:
309 if (pc
->k
> buflen
|| X
> buflen
- pc
->k
||
310 sizeof(int32_t) > buflen
- k
) {
316 A
= m_xword((struct mbuf
*)p
, k
, &merr
);
325 if (((intptr_t)(p
+ k
) & 3) != 0)
326 A
= EXTRACT_LONG(&p
[k
]);
329 A
= ntohl(*(int32_t *)(p
+ k
));
332 case BPF_LD
|BPF_H
|BPF_IND
:
334 if (X
> buflen
|| pc
->k
> buflen
- X
||
335 sizeof(int16_t) > buflen
- k
) {
341 A
= m_xhalf((struct mbuf
*)p
, k
, &merr
);
349 A
= EXTRACT_SHORT(&p
[k
]);
352 case BPF_LD
|BPF_B
|BPF_IND
:
354 if (pc
->k
>= buflen
|| X
>= buflen
- pc
->k
) {
356 register struct mbuf
*m
;
360 m
= (struct mbuf
*)p
;
362 A
= mtod(m
, char *)[k
];
371 case BPF_LDX
|BPF_MSH
|BPF_B
:
375 register struct mbuf
*m
;
379 m
= (struct mbuf
*)p
;
381 X
= (mtod(m
, char *)[k
] & 0xf) << 2;
387 X
= (p
[pc
->k
] & 0xf) << 2;
394 case BPF_LDX
|BPF_IMM
:
402 case BPF_LDX
|BPF_MEM
:
418 case BPF_JMP
|BPF_JGT
|BPF_K
:
419 pc
+= (A
> pc
->k
) ? pc
->jt
: pc
->jf
;
422 case BPF_JMP
|BPF_JGE
|BPF_K
:
423 pc
+= (A
>= pc
->k
) ? pc
->jt
: pc
->jf
;
426 case BPF_JMP
|BPF_JEQ
|BPF_K
:
427 pc
+= (A
== pc
->k
) ? pc
->jt
: pc
->jf
;
430 case BPF_JMP
|BPF_JSET
|BPF_K
:
431 pc
+= (A
& pc
->k
) ? pc
->jt
: pc
->jf
;
434 case BPF_JMP
|BPF_JGT
|BPF_X
:
435 pc
+= (A
> X
) ? pc
->jt
: pc
->jf
;
438 case BPF_JMP
|BPF_JGE
|BPF_X
:
439 pc
+= (A
>= X
) ? pc
->jt
: pc
->jf
;
442 case BPF_JMP
|BPF_JEQ
|BPF_X
:
443 pc
+= (A
== X
) ? pc
->jt
: pc
->jf
;
446 case BPF_JMP
|BPF_JSET
|BPF_X
:
447 pc
+= (A
& X
) ? pc
->jt
: pc
->jf
;
450 case BPF_ALU
|BPF_ADD
|BPF_X
:
454 case BPF_ALU
|BPF_SUB
|BPF_X
:
458 case BPF_ALU
|BPF_MUL
|BPF_X
:
462 case BPF_ALU
|BPF_DIV
|BPF_X
:
468 case BPF_ALU
|BPF_AND
|BPF_X
:
472 case BPF_ALU
|BPF_OR
|BPF_X
:
476 case BPF_ALU
|BPF_LSH
|BPF_X
:
480 case BPF_ALU
|BPF_RSH
|BPF_X
:
484 case BPF_ALU
|BPF_ADD
|BPF_K
:
488 case BPF_ALU
|BPF_SUB
|BPF_K
:
492 case BPF_ALU
|BPF_MUL
|BPF_K
:
496 case BPF_ALU
|BPF_DIV
|BPF_K
:
500 case BPF_ALU
|BPF_AND
|BPF_K
:
504 case BPF_ALU
|BPF_OR
|BPF_K
:
508 case BPF_ALU
|BPF_LSH
|BPF_K
:
512 case BPF_ALU
|BPF_RSH
|BPF_K
:
516 case BPF_ALU
|BPF_NEG
:
520 case BPF_MISC
|BPF_TAX
:
524 case BPF_MISC
|BPF_TXA
:
533 * Return true if the 'fcode' is a valid filter program.
534 * The constraints are that each jump be forward and to a valid
535 * code. The code must terminate with either an accept or reject.
536 * 'valid' is an array for use by the routine (it must be at least
539 * The kernel needs to be able to verify an application's filter code.
540 * Otherwise, a bogus program could easily crash the system.
544 const struct bpf_insn
*f
;
548 const struct bpf_insn
*p
;
550 for (i
= 0; i
< len
; ++i
) {
552 * Check that that jumps are forward, and within
556 if (BPF_CLASS(p
->code
) == BPF_JMP
) {
557 register int from
= i
+ 1;
559 if (BPF_OP(p
->code
) == BPF_JA
) {
560 if (from
>= len
|| p
->k
>= len
- from
)
563 else if (from
>= len
|| p
->jt
>= len
- from
||
568 * Check that memory operations use valid addresses.
570 if ((BPF_CLASS(p
->code
) == BPF_ST
||
571 (BPF_CLASS(p
->code
) == BPF_LD
&&
572 (p
->code
& 0xe0) == BPF_MEM
)) &&
573 p
->k
>= BPF_MEMWORDS
)
576 * Check for constant division by 0.
578 if (p
->code
== (BPF_ALU
|BPF_DIV
|BPF_K
) && p
->k
== 0)
581 return BPF_CLASS(f
[len
- 1].code
) == BPF_RET
;