* fixed usage of libpcap
@ 2004-02-18 15:30 Arvin Schnell
2004-02-18 15:50 ` Arvin Schnell
0 siblings, 1 reply; 2+ messages in thread
From: Arvin Schnell @ 2004-02-18 15:30 UTC (permalink / raw)
To: linux-ppp
[-- Attachment #1: Type: text/plain, Size: 683 bytes --]
Hi,
while updating to libpcap 0.8.1 I realized that pppd uses it's
own version of pcap-int.h that does not match the original
version anymore.
Attached is a patch against ppp 2.4.2 to solve that problem. The
rename from net/bpf.h to pcap-bpf.h happend somewhere between
libpcap 0.7.2 and 0.8.1.
But I still have the problem that libpcap reports an error when
using inbound or outbound:
error in active-filter expression: inbound/outbound not supported
on linktype 9
Seems as if that's not supported anymore and was so far silently
ignored. Does anyone know more about that?
ciao Arvin
--
Dipl.-Phys. Arvin Schnell
SuSE Linux AG
Research & Development
email: arvin@suse.de
[-- Attachment #2: ppp-2.4.2-libpcap.diff --]
[-- Type: text/plain, Size: 2112 bytes --]
--- pppd/demand.c
+++ pppd/demand.c
@@ -38,7 +38,7 @@
#include <arpa/inet.h>
#ifdef PPP_FILTER
#include <net/if.h>
-#include <net/bpf.h>
+#include <pcap-bpf.h>
#include <pcap.h>
#endif
--- pppd/sys-linux.c
+++ pppd/sys-linux.c
@@ -85,7 +85,7 @@
#endif /* IPX_CHANGE */
#ifdef PPP_FILTER
-#include <net/bpf.h>
+#include <pcap-bpf.h>
#include <linux/filter.h>
#endif /* PPP_FILTER */
--- ./pppd/options.c.orig 2004-01-13 04:02:07.000000000 +0000
+++ ./pppd/options.c 2004-02-18 14:54:44.032555730 +0000
@@ -56,7 +56,6 @@
#endif
#ifdef PPP_FILTER
#include <pcap.h>
-#include <pcap-int.h> /* XXX: To get struct pcap */
#endif
#include "pppd.h"
@@ -122,7 +121,6 @@
#ifdef PPP_FILTER
struct bpf_program pass_filter;/* Filter program for packets to pass */
struct bpf_program active_filter; /* Filter program for link-active pkts */
-pcap_t pc; /* Fake struct pcap so we can compile expr */
#endif
char *current_option; /* the name of the option being parsed */
@@ -1439,12 +1437,15 @@
setpassfilter(argv)
char **argv;
{
- pc.linktype = DLT_PPP;
- pc.snapshot = PPP_HDRLEN;
+ pcap_t* pc = pcap_open_dead (DLT_PPP, PPP_HDRLEN);
- if (pcap_compile(&pc, &pass_filter, *argv, 1, netmask) == 0)
+ if (pcap_compile(pc, &pass_filter, *argv, 1, netmask) == 0) {
+ pcap_close (pc);
return 1;
- option_error("error in pass-filter expression: %s\n", pcap_geterr(&pc));
+ }
+
+ option_error("error in pass-filter expression: %s\n", pcap_geterr(pc));
+ pcap_close (pc);
return 0;
}
@@ -1455,12 +1456,15 @@
setactivefilter(argv)
char **argv;
{
- pc.linktype = DLT_PPP;
- pc.snapshot = PPP_HDRLEN;
+ pcap_t* pc = pcap_open_dead (DLT_PPP, PPP_HDRLEN);
- if (pcap_compile(&pc, &active_filter, *argv, 1, netmask) == 0)
+ if (pcap_compile(pc, &active_filter, *argv, 1, netmask) == 0) {
+ pcap_close (pc);
return 1;
- option_error("error in active-filter expression: %s\n", pcap_geterr(&pc));
+ }
+
+ option_error("error in active-filter expression: %s\n", pcap_geterr(pc));
+ pcap_close (pc);
return 0;
}
#endif
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: fixed usage of libpcap
2004-02-18 15:30 fixed usage of libpcap Arvin Schnell
@ 2004-02-18 15:50 ` Arvin Schnell
0 siblings, 0 replies; 2+ messages in thread
From: Arvin Schnell @ 2004-02-18 15:50 UTC (permalink / raw)
To: linux-ppp
[-- Attachment #1: Type: text/plain, Size: 449 bytes --]
On Wed, Feb 18, 2004 at 04:30:17PM +0100, Arvin Schnell wrote:
>
> Hi,
>
> while updating to libpcap 0.8.1 I realized that pppd uses it's
> own version of pcap-int.h that does not match the original
> version anymore.
>
> Attached is a patch against ppp 2.4.2 to solve that problem. The
> rename from net/bpf.h to pcap-bpf.h happend somewhere between
> libpcap 0.7.2 and 0.8.1.
Better also check the return value of pcap_open_dead.
ciao Arvin
[-- Attachment #2: ppp-2.4.2-libpcap.diff --]
[-- Type: text/plain, Size: 2340 bytes --]
--- pppd/demand.c
+++ pppd/demand.c
@@ -38,7 +38,7 @@
#include <arpa/inet.h>
#ifdef PPP_FILTER
#include <net/if.h>
-#include <net/bpf.h>
+#include <pcap-bpf.h>
#include <pcap.h>
#endif
--- pppd/sys-linux.c
+++ pppd/sys-linux.c
@@ -85,7 +85,7 @@
#endif /* IPX_CHANGE */
#ifdef PPP_FILTER
-#include <net/bpf.h>
+#include <pcap-bpf.h>
#include <linux/filter.h>
#endif /* PPP_FILTER */
--- ./pppd/options.c.orig 2004-02-18 15:42:37.366603970 +0000
+++ ./pppd/options.c 2004-02-18 15:44:01.243247770 +0000
@@ -56,7 +56,6 @@
#endif
#ifdef PPP_FILTER
#include <pcap.h>
-#include <pcap-int.h> /* XXX: To get struct pcap */
#endif
#include "pppd.h"
@@ -122,7 +121,6 @@
#ifdef PPP_FILTER
struct bpf_program pass_filter;/* Filter program for packets to pass */
struct bpf_program active_filter; /* Filter program for link-active pkts */
-pcap_t pc; /* Fake struct pcap so we can compile expr */
#endif
char *current_option; /* the name of the option being parsed */
@@ -1439,12 +1437,20 @@
setpassfilter(argv)
char **argv;
{
- pc.linktype = DLT_PPP;
- pc.snapshot = PPP_HDRLEN;
+ pcap_t* pc = pcap_open_dead (DLT_PPP, PPP_HDRLEN);
- if (pcap_compile(&pc, &pass_filter, *argv, 1, netmask) == 0)
+ if (!pc) {
+ option_error("error in pass-filter expression: pcap_open_dead failed\n");
+ return 0;
+ }
+
+ if (pcap_compile(pc, &pass_filter, *argv, 1, netmask) == 0) {
+ pcap_close (pc);
return 1;
- option_error("error in pass-filter expression: %s\n", pcap_geterr(&pc));
+ }
+
+ option_error("error in pass-filter expression: %s\n", pcap_geterr(pc));
+ pcap_close (pc);
return 0;
}
@@ -1455,12 +1461,20 @@
setactivefilter(argv)
char **argv;
{
- pc.linktype = DLT_PPP;
- pc.snapshot = PPP_HDRLEN;
+ pcap_t* pc = pcap_open_dead (DLT_PPP, PPP_HDRLEN);
- if (pcap_compile(&pc, &active_filter, *argv, 1, netmask) == 0)
+ if (!pc) {
+ option_error("error in active-filter expression: pcap_open_dead failed\n");
+ return 0;
+ }
+
+ if (pcap_compile(pc, &active_filter, *argv, 1, netmask) == 0) {
+ pcap_close (pc);
return 1;
- option_error("error in active-filter expression: %s\n", pcap_geterr(&pc));
+ }
+
+ option_error("error in active-filter expression: %s\n", pcap_geterr(pc));
+ pcap_close (pc);
return 0;
}
#endif
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-02-18 15:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-18 15:30 fixed usage of libpcap Arvin Schnell
2004-02-18 15:50 ` Arvin Schnell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).