ed
e97eae1577
Mark MALLOC_DEFINEs static that have no corresponding MALLOC_DECLAREs.
...
This means that their use is restricted to a single C file.
2011-11-07 06:44:47 +00:00
des
66f807ed8b
Retire the MALLOC and FREE macros. They are an abomination unto style(9).
...
MFC after: 3 months
2008-10-23 15:53:51 +00:00
jkim
8fb51c23ad
Make sure BPF program is not bigger than set maximum (net.bpf.maxinsns).
2008-08-29 15:49:40 +00:00
mav
cd7d07a63f
Prepare hooks direct pointers on setup to avoid heavy ng_findhook() calls
...
during operarion.
2008-02-04 19:26:53 +00:00
mav
5eebdfa072
Avoid data copying when it is possible.
...
bpf_filter() is able to work directly on mbuf chain.
2008-01-28 22:37:17 +00:00
mav
5a9e4eaaa3
Reduce stack usage by 256 bytes per call. It helps to avoid kernel
...
stack overflow in complicated traffic filtering setups.
There can be minor performance degradation for the MHLEN < len <= 256 case
due to additional buffer allocation, but it is a rare case.
Approved by: re (rwatson), glebius (mentor)
MFC after: 1 week
2007-07-26 18:15:02 +00:00
jkim
a20bda668b
Fix build without BPF_JITTER option.
2005-12-07 21:41:45 +00:00
jkim
99ef252d15
Add BPF Just-In-Time compiler support for ng_bpf(4).
...
The sysctl is changed from net.bpf.jitter.enable to net.bpf_jitter.enable
and this controls both bpf(4) and ng_bpf(4) now.
2005-12-07 21:30:47 +00:00
imp
a50ffc2912
/* -> /*- for license, minor formatting changes
2005-01-07 01:45:51 +00:00
archie
65fa85e83d
Avoid calling bpf_filter() with len == 0, which causes a change in semantics
...
(it treats the buffer pointer as an mbuf pointer) and subsequent panic.
MFC after: 3 days
Reported by: Tony Hariman <tony@cbn.net.id>
2004-06-23 02:37:10 +00:00
julian
c85e63d425
Switch to using C99 sparse initialisers for the type methods array.
...
Should make no binary difference.
Submitted by: Gleb Smirnoff <glebius@cell.sick.ru>
Reviewed by: Harti Brandt <harti@freebsd.org>
MFC after: 1 week
2004-05-29 00:51:19 +00:00
archie
b10887dc2b
Fix GCC warnings caused by initializing a zero length array. In the process,
...
simply things a bit by getting rid of 'struct ng_parse_struct_info' which
was useless because it only contained one field.
MFC after: 2 weeks
2002-05-31 23:48:03 +00:00
obrien
7fd9a6a23a
Update to C99, s/__FUNCTION__/__func__/,
...
also don't use ANSI string concatenation.
2001-12-10 08:09:49 +00:00
julian
8cb2e82b69
Fix cut and paste error in a comment.
...
Submitted by: Peter Wemm <peter@freebsd.org>
2001-01-30 07:58:30 +00:00
julian
c24ab624c0
Another brian fix, luckily not in live code.
2001-01-11 15:44:41 +00:00
julian
bb6dbcf3b2
Fix some memory leaks
...
Add memory leak detection assitance.
2001-01-10 07:13:58 +00:00
julian
ff86256bf7
Part 2 of the netgraph rewrite.
...
This is mostly cosmetic changes, (though I caught a bug or two while
makeing them)
Reviewed by: archie@freebsd.org
2001-01-08 05:34:06 +00:00
julian
f0c46a9d00
Rewrite of netgraph to start getting ready for SMP.
...
This version is functional and is aproaching solid..
notice I said APROACHING. There are many node types I cannot test
I have tested: echo hole ppp socket vjc iface tee bpf async tty
The rest compile and "Look" right. More changes to follow.
DEBUGGING is enabled in this code to help if people have problems.
2001-01-06 00:46:47 +00:00
julian
0c949560a1
Divorce the kernel binary ABI version number from the message
...
format version number. (userland programs should not need to be
recompiled when the netgraph kernel internal ABI is changed.
Also fix modules that don;t handle the fact that a caller may not supply
a return message pointer. (benign at the moment because the calling code
checks, but that will change)
2000-12-18 20:03:32 +00:00
julian
2d1192e612
Reviewed by: Archie@freebsd.org
...
This clears out my outstanding netgraph changes.
There is a netgraph change of design in the offing and this is to some
extent a superset of soem of the new functionality and some of the old
functionality that may be removed.
This code works as before, but allows some new features that I want to
work with and evaluate. It is the basis for a version of netgraph
with integral locking for SMP use.
This is running on my test machine with no new problems :-)
2000-12-12 18:52:14 +00:00
dwmalone
918549eb31
Add the use of M_ZERO to netgraph.
...
Submitted by: josh@zipperup.org
Submitted by: Robert Drehmel <robd@gmx.net>
Submitted by: archie
Approved by: archie
2000-11-18 15:17:43 +00:00
julian
bf2394b8d4
Since neither archie nor I work at Whistle any more, change our email
...
addresses to be the more usefu @freebsd.org ones
so we can keep getting bug-reports.
- man pages to follow..
2000-10-24 17:32:45 +00:00
archie
1023c32e1a
Allocate all memory (including within node constructors) with M_NOWAIT
...
instead of M_WAITOK, to allow for maximum flexibility.
2000-09-21 18:01:23 +00:00
archie
91912098c3
Take advantage of the new unsigned and hex integer types.
2000-08-10 22:45:54 +00:00
julian
49604b4259
Two simple changes to the kernel internal API for netgraph modules,
...
to support future work in flow-control and 'packet reject/replace'
processing modes.
reviewed by: phk, archie
2000-04-28 17:09:00 +00:00
archie
046ee838bb
Change definition of NG_BPF_HOOKPROG_SIZE() so as not to require
...
a structure pointer, just the number of BPF instructions.
1999-12-06 18:43:32 +00:00
archie
1edd13e295
New netgraph node type, ng_bpf(8). This node type allows you to
...
apply bpf(4) filters to data travelling through a netgraph network.
1999-12-03 21:21:49 +00:00