Blame SOURCES/0003-More-descriptive-name-for-bpf_filter1.patch

6730c1
From e58e6b25c82cc2f76f08b291e14f4e81f4ae1364 Mon Sep 17 00:00:00 2001
6730c1
From: Guy Harris <guy@alum.mit.edu>
6730c1
Date: Wed, 5 Nov 2014 11:18:51 -0800
6730c1
Subject: [PATCH 3/3] More descriptive name for bpf_filter1().
6730c1
6730c1
Call it bpf_filter_with_aux_data(), to better indicate what it does.
6730c1
6730c1
Also expand some comments and clean up white space a bit.
6730c1
6730c1
(cherry picked from 20119d41be224cf9ea821155ad0b267f7e40f234)
6730c1
6730c1
Conflicts:
6730c1
        pcap-linux.c
6730c1
---
6730c1
 bpf/net/bpf_filter.c | 7 +++++--
6730c1
 pcap-linux.c         | 7 +++----
6730c1
 pcap/bpf.h           | 7 ++++++-
6730c1
 3 files changed, 14 insertions(+), 7 deletions(-)
6730c1
6730c1
diff --git a/bpf/net/bpf_filter.c b/bpf/net/bpf_filter.c
6730c1
index 3409a9b..307f980 100644
6730c1
--- a/bpf/net/bpf_filter.c
6730c1
+++ b/bpf/net/bpf_filter.c
6730c1
@@ -215,11 +215,14 @@ enum {
6730c1
  * Execute the filter program starting at pc on the packet p
6730c1
  * wirelen is the length of the original packet
6730c1
  * buflen is the amount of data present
6730c1
+ * aux_data is auxiliary data, currently used only when interpreting
6730c1
+ * filters intended for the Linux kernel in cases where the kernel
6730c1
+ * rejects the filter; it contains VLAN tag information
6730c1
  * For the kernel, p is assumed to be a pointer to an mbuf if buflen is 0,
6730c1
  * in all other cases, p is a pointer to a buffer and buflen is its size.
6730c1
  */
6730c1
 u_int
6730c1
-bpf_filter1(pc, p, wirelen, buflen, aux_data)
6730c1
+bpf_filter_with_aux_data(pc, p, wirelen, buflen, aux_data)
6730c1
 	register const struct bpf_insn *pc;
6730c1
 	register const u_char *p;
6730c1
 	u_int wirelen;
6730c1
@@ -579,7 +582,7 @@ bpf_filter(pc, p, wirelen, buflen)
6730c1
 	u_int wirelen;
6730c1
 	register u_int buflen;
6730c1
 {
6730c1
-	return bpf_filter1(pc, p, wirelen, buflen, NULL);
6730c1
+	return bpf_filter_with_aux_data(pc, p, wirelen, buflen, NULL);
6730c1
 }
6730c1
 
6730c1
 
6730c1
diff --git a/pcap-linux.c b/pcap-linux.c
6730c1
index 68e6d05..a370858 100644
6730c1
--- a/pcap-linux.c
6730c1
+++ b/pcap-linux.c
6730c1
@@ -1708,9 +1708,8 @@ pcap_read_packet(pcap_t *handle, pcap_handler callback, u_char *userdata)
6730c1
 
6730c1
 	/* Run the packet filter if not using kernel filter */
6730c1
 	if (handlep->filter_in_userland && handle->fcode.bf_insns) {
6730c1
-		if (bpf_filter1(handle->fcode.bf_insns, bp,
6730c1
-		                packet_len, caplen, &aux_data) == 0)
6730c1
-		{
6730c1
+		if (bpf_filter_with_aux_data(handle->fcode.bf_insns, bp,
6730c1
+		    packet_len, caplen, &aux_data) == 0) {
6730c1
 			/* rejected by filter */
6730c1
 			return 0;
6730c1
 		}
6730c1
@@ -4282,7 +4281,7 @@ static int pcap_handle_packet_mmap(
6730c1
                 aux_data.vlan_tag = tp_vlan_tci & 0x0fff;
6730c1
                 aux_data.vlan_tag_present = tp_vlan_tci_valid;
6730c1
 
6730c1
-                if (bpf_filter1(handle->fcode.bf_insns, bp, tp_len, tp_snaplen, &aux_data) == 0)
6730c1
+                if (bpf_filter_with_aux_data(handle->fcode.bf_insns, bp, tp_len, tp_snaplen, &aux_data) == 0)
6730c1
                         return 0;
6730c1
         }
6730c1
 
6730c1
diff --git a/pcap/bpf.h b/pcap/bpf.h
6730c1
index 495f326..29efd7e 100644
6730c1
--- a/pcap/bpf.h
6730c1
+++ b/pcap/bpf.h
6730c1
@@ -1320,6 +1320,11 @@ struct bpf_insn {
6730c1
 	bpf_u_int32 k;
6730c1
 };
6730c1
 
6730c1
+/*
6730c1
+ * Auxiliary data, for use when interpreting a filter intended for the
6730c1
+ * Linux kernel when the kernel rejects the filter (requiring us to
6730c1
+ * run it in userland).  It contains VLAN tag information.
6730c1
+ */
6730c1
 struct bpf_aux_data {
6730c1
         uint16_t vlan_tag_present;
6730c1
         uint16_t vlan_tag;
6730c1
@@ -1334,7 +1339,7 @@ struct bpf_aux_data {
6730c1
 #if __STDC__ || defined(__cplusplus)
6730c1
 extern int bpf_validate(const struct bpf_insn *, int);
6730c1
 extern u_int bpf_filter(const struct bpf_insn *, const u_char *, u_int, u_int);
6730c1
-extern u_int bpf_filter1(const struct bpf_insn *, const u_char *, u_int, u_int, const struct bpf_aux_data *);        
6730c1
+extern u_int bpf_filter_with_aux_data(const struct bpf_insn *, const u_char *, u_int, u_int, const struct bpf_aux_data *);        
6730c1
 #else
6730c1
 extern int bpf_validate();
6730c1
 extern u_int bpf_filter();
6730c1
-- 
6730c1
2.4.3
6730c1