dc5e45a2466ccf56df068ffa80ce13a88a364c25
[openwrt/svn-archive/archive.git] / package / libpcap / patches / 202-protocol_api.patch
1 --- a/pcap-int.h
2 +++ b/pcap-int.h
3 @@ -187,6 +187,7 @@ struct pcap_opt {
4 char *source;
5 int promisc;
6 int rfmon;
7 + int proto; /* protocol for packet socket (linux) */
8 };
9
10 /*
11 --- a/pcap-linux.c
12 +++ b/pcap-linux.c
13 @@ -273,7 +273,7 @@ static int iface_get_id(int fd, const ch
14 static int iface_get_mtu(int fd, const char *device, char *ebuf);
15 static int iface_get_arptype(int fd, const char *device, char *ebuf);
16 #ifdef HAVE_PF_PACKET_SOCKETS
17 -static int iface_bind(int fd, int ifindex, char *ebuf);
18 +static int iface_bind(int fd, int ifindex, char *ebuf, unsigned short proto);
19 static int has_wext(int sock_fd, const char *device, char *ebuf);
20 static int enter_rfmon_mode_wext(pcap_t *handle, int sock_fd,
21 const char *device);
22 @@ -362,7 +362,7 @@ pcap_can_set_rfmon_linux(pcap_t *p)
23 * (We assume that if we have Wireless Extensions support
24 * we also have PF_PACKET support.)
25 */
26 - sock_fd = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
27 + sock_fd = socket(PF_PACKET, SOCK_RAW, p->opt.proto);
28 if (sock_fd == -1) {
29 (void)snprintf(p->errbuf, PCAP_ERRBUF_SIZE,
30 "socket: %s", pcap_strerror(errno));
31 @@ -522,6 +522,9 @@ pcap_activate_linux(pcap_t *handle)
32 handle->read_op = pcap_read_linux;
33 handle->stats_op = pcap_stats_linux;
34
35 + if (handle->opt.proto < 0)
36 + handle->opt.proto = (int) htons(ETH_P_ALL);
37 +
38 /*
39 * The "any" device is a special device which causes us not
40 * to bind to a particular device and thus to look at all
41 @@ -1673,8 +1676,8 @@ activate_new(pcap_t *handle)
42 * try a SOCK_RAW socket for the raw interface.
43 */
44 sock_fd = is_any_device ?
45 - socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_ALL)) :
46 - socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
47 + socket(PF_PACKET, SOCK_DGRAM, handle->opt.proto) :
48 + socket(PF_PACKET, SOCK_RAW, handle->opt.proto);
49
50 if (sock_fd == -1) {
51 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "socket: %s",
52 @@ -1763,7 +1766,7 @@ activate_new(pcap_t *handle)
53 return PCAP_ERROR;
54 }
55 sock_fd = socket(PF_PACKET, SOCK_DGRAM,
56 - htons(ETH_P_ALL));
57 + handle->opt.proto);
58 if (sock_fd == -1) {
59 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE,
60 "socket: %s", pcap_strerror(errno));
61 @@ -1815,7 +1818,7 @@ activate_new(pcap_t *handle)
62 }
63
64 if ((err = iface_bind(sock_fd, handle->md.ifindex,
65 - handle->errbuf)) != 1) {
66 + handle->errbuf, handle->opt.proto)) != 1) {
67 close(sock_fd);
68 if (err < 0)
69 return err;
70 @@ -2440,7 +2443,7 @@ iface_get_id(int fd, const char *device,
71 * or a PCAP_ERROR_ value on a hard error.
72 */
73 static int
74 -iface_bind(int fd, int ifindex, char *ebuf)
75 +iface_bind(int fd, int ifindex, char *ebuf, unsigned short proto)
76 {
77 struct sockaddr_ll sll;
78 int err;
79 @@ -2449,7 +2452,7 @@ iface_bind(int fd, int ifindex, char *eb
80 memset(&sll, 0, sizeof(sll));
81 sll.sll_family = AF_PACKET;
82 sll.sll_ifindex = ifindex;
83 - sll.sll_protocol = htons(ETH_P_ALL);
84 + sll.sll_protocol = proto;
85
86 if (bind(fd, (struct sockaddr *) &sll, sizeof(sll)) == -1) {
87 if (errno == ENETDOWN) {
88 @@ -3119,7 +3122,7 @@ activate_old(pcap_t *handle)
89
90 /* Open the socket */
91
92 - handle->fd = socket(PF_INET, SOCK_PACKET, htons(ETH_P_ALL));
93 + handle->fd = socket(PF_INET, SOCK_PACKET, handle->opt.proto);
94 if (handle->fd == -1) {
95 snprintf(handle->errbuf, PCAP_ERRBUF_SIZE,
96 "socket: %s", pcap_strerror(errno));
97 --- a/pcap.c
98 +++ b/pcap.c
99 @@ -152,6 +152,8 @@ pcap_create_common(const char *source, c
100 pcap_set_snaplen(p, 65535); /* max packet size */
101 p->opt.promisc = 0;
102 p->opt.buffer_size = 0;
103 + p->opt.proto = -1;
104 +
105 return (p);
106 }
107
108 @@ -212,6 +214,15 @@ pcap_set_buffer_size(pcap_t *p, int buff
109 }
110
111 int
112 +pcap_set_protocol(pcap_t *p, unsigned short proto)
113 +{
114 + if (pcap_check_activated(p))
115 + return PCAP_ERROR_ACTIVATED;
116 + p->opt.proto = proto;
117 + return 0;
118 +}
119 +
120 +int
121 pcap_activate(pcap_t *p)
122 {
123 int status;
124 --- a/pcap/pcap.h
125 +++ b/pcap/pcap.h
126 @@ -61,6 +61,7 @@ extern "C" {
127 #define PCAP_VERSION_MINOR 4
128
129 #define PCAP_ERRBUF_SIZE 256
130 +#define HAS_PROTO_EXTENSION
131
132 /*
133 * Compatibility for systems that have a bpf.h that
134 @@ -263,6 +264,7 @@ int pcap_can_set_rfmon(pcap_t *);
135 int pcap_set_rfmon(pcap_t *, int);
136 int pcap_set_timeout(pcap_t *, int);
137 int pcap_set_buffer_size(pcap_t *, int);
138 +int pcap_set_protocol(pcap_t *, unsigned short);
139 int pcap_activate(pcap_t *);
140
141 pcap_t *pcap_open_live(const char *, int, int, int, char *);