Commit a9219b33 authored by Przemyslaw Patynowski's avatar Przemyslaw Patynowski Committed by Tony Nguyen

i40e: VLAN field for flow director

Allow user to specify VLAN field and add it to flow director. Show VLAN
field in "ethtool -n ethx" command.
Handle VLAN type and tag field provided by ethtool command. Refactored
filter addition, by replacing static arrays with runtime dummy packet
creation, which allows specifying VLAN field.
Previously, VLAN field was omitted.
Signed-off-by: default avatarPrzemyslaw Patynowski <przemyslawx.patynowski@intel.com>
Tested-by: default avatarTony Brelinski <tonyx.brelinski@intel.com>
Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
parent efca91e8
...@@ -223,6 +223,8 @@ struct i40e_fdir_filter { ...@@ -223,6 +223,8 @@ struct i40e_fdir_filter {
__be16 dst_port; __be16 dst_port;
__be32 sctp_v_tag; __be32 sctp_v_tag;
__be16 vlan_etype;
__be16 vlan_tag;
/* Flexible data to match within the packet payload */ /* Flexible data to match within the packet payload */
__be16 flex_word; __be16 flex_word;
u16 flex_offset; u16 flex_offset;
......
...@@ -3318,6 +3318,14 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf, ...@@ -3318,6 +3318,14 @@ static int i40e_get_ethtool_fdir_entry(struct i40e_pf *pf,
else else
fsp->ring_cookie = rule->q_index; fsp->ring_cookie = rule->q_index;
if (rule->vlan_tag) {
fsp->h_ext.vlan_etype = rule->vlan_etype;
fsp->m_ext.vlan_etype = htons(0xFFFF);
fsp->h_ext.vlan_tci = rule->vlan_tag;
fsp->m_ext.vlan_tci = htons(0xFFFF);
fsp->flow_type |= FLOW_EXT;
}
if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) { if (rule->dest_vsi != pf->vsi[pf->lan_vsi]->id) {
struct i40e_vsi *vsi; struct i40e_vsi *vsi;
...@@ -4350,6 +4358,19 @@ static int i40e_check_fdir_input_set(struct i40e_vsi *vsi, ...@@ -4350,6 +4358,19 @@ static int i40e_check_fdir_input_set(struct i40e_vsi *vsi,
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
if (fsp->flow_type & FLOW_EXT) {
/* Allow only 802.1Q and no etype defined, as
* later it's modified to 0x8100
*/
if (fsp->h_ext.vlan_etype != htons(ETH_P_8021Q) &&
fsp->h_ext.vlan_etype != 0)
return -EOPNOTSUPP;
if (fsp->m_ext.vlan_tci == htons(0xFFFF))
new_mask |= I40E_VLAN_SRC_MASK;
else
new_mask &= ~I40E_VLAN_SRC_MASK;
}
/* First, clear all flexible filter entries */ /* First, clear all flexible filter entries */
new_mask &= ~I40E_FLEX_INPUT_MASK; new_mask &= ~I40E_FLEX_INPUT_MASK;
...@@ -4529,7 +4550,9 @@ static bool i40e_match_fdir_filter(struct i40e_fdir_filter *a, ...@@ -4529,7 +4550,9 @@ static bool i40e_match_fdir_filter(struct i40e_fdir_filter *a,
a->dst_port != b->dst_port || a->dst_port != b->dst_port ||
a->src_port != b->src_port || a->src_port != b->src_port ||
a->flow_type != b->flow_type || a->flow_type != b->flow_type ||
a->ipl4_proto != b->ipl4_proto) a->ipl4_proto != b->ipl4_proto ||
a->vlan_tag != b->vlan_tag ||
a->vlan_etype != b->vlan_etype)
return false; return false;
return true; return true;
...@@ -4688,6 +4711,11 @@ static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi, ...@@ -4688,6 +4711,11 @@ static int i40e_add_fdir_ethtool(struct i40e_vsi *vsi,
input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst; input->src_ip = fsp->h_u.tcp_ip4_spec.ip4dst;
input->flow_type = fsp->flow_type & ~FLOW_EXT; input->flow_type = fsp->flow_type & ~FLOW_EXT;
input->vlan_etype = fsp->h_ext.vlan_etype;
if (!fsp->m_ext.vlan_etype && fsp->h_ext.vlan_tci)
input->vlan_etype = cpu_to_be16(ETH_P_8021Q);
if (fsp->m_ext.vlan_tci && input->vlan_etype)
input->vlan_tag = fsp->h_ext.vlan_tci;
if (input->flow_type == IPV6_USER_FLOW || if (input->flow_type == IPV6_USER_FLOW ||
input->flow_type == UDP_V6_FLOW || input->flow_type == UDP_V6_FLOW ||
input->flow_type == TCP_V6_FLOW || input->flow_type == TCP_V6_FLOW ||
......
...@@ -157,90 +157,180 @@ static int i40e_program_fdir_filter(struct i40e_fdir_filter *fdir_data, ...@@ -157,90 +157,180 @@ static int i40e_program_fdir_filter(struct i40e_fdir_filter *fdir_data,
return -1; return -1;
} }
#define IP_HEADER_OFFSET 14
#define I40E_UDPIP_DUMMY_PACKET_LEN 42
#define I40E_UDPIP6_DUMMY_PACKET_LEN 62
/** /**
* i40e_add_del_fdir_udp - Add/Remove UDP filters * i40e_create_dummy_packet - Constructs dummy packet for HW
* @vsi: pointer to the targeted VSI * @dummy_packet: preallocated space for dummy packet
* @fd_data: the flow director data required for the FDir descriptor * @ipv4: is layer 3 packet of version 4 or 6
* @add: true adds a filter, false removes it * @l4proto: next level protocol used in data portion of l3
* @ipv4: true is v4, false is v6 * @data: filter data
* *
* Returns 0 if the filters were successfully added or removed * Returns address of layer 4 protocol dummy packet.
**/ **/
static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi, static char *i40e_create_dummy_packet(u8 *dummy_packet, bool ipv4, u8 l4proto,
struct i40e_fdir_filter *fd_data, struct i40e_fdir_filter *data)
bool add,
bool ipv4)
{ {
struct i40e_pf *pf = vsi->back; bool is_vlan = !!data->vlan_tag;
struct ipv6hdr *ipv6; struct vlan_hdr vlan;
struct udphdr *udp; struct ipv6hdr ipv6;
struct iphdr *ip; struct ethhdr eth;
u8 *raw_packet; struct iphdr ip;
int ret; u8 *tmp;
static char packet_ipv4[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08,
0, 0x45, 0, 0, 0x1c, 0, 0, 0x40, 0, 0x40, 0x11, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
static char packet_ipv6[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x86,
0xdd, 0x60, 0, 0, 0, 0, 0, 0x11, 0,
/*src address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/*dst address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/*udp header*/
0, 0, 0, 0, 0, 0, 0, 0};
raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
if (!raw_packet)
return -ENOMEM;
if (ipv4) { if (ipv4) {
memcpy(raw_packet, packet_ipv4, I40E_UDPIP_DUMMY_PACKET_LEN); eth.h_proto = cpu_to_be16(ETH_P_IP);
ip.protocol = l4proto;
ip.version = 0x4;
ip.ihl = 0x5;
ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET); ip.daddr = data->dst_ip;
udp = (struct udphdr *)(raw_packet + IP_HEADER_OFFSET ip.saddr = data->src_ip;
+ sizeof(struct iphdr));
ip->daddr = fd_data->dst_ip;
ip->saddr = fd_data->src_ip;
} else { } else {
memcpy(raw_packet, packet_ipv6, I40E_UDPIP6_DUMMY_PACKET_LEN); eth.h_proto = cpu_to_be16(ETH_P_IPV6);
ipv6 = (struct ipv6hdr *)(raw_packet + IP_HEADER_OFFSET); ipv6.nexthdr = l4proto;
udp = (struct udphdr *)(raw_packet + IP_HEADER_OFFSET ipv6.version = 0x6;
+ sizeof(struct ipv6hdr));
memcpy(&ipv6.saddr.in6_u.u6_addr32, data->src_ip6,
sizeof(__be32) * 4);
memcpy(&ipv6.daddr.in6_u.u6_addr32, data->dst_ip6,
sizeof(__be32) * 4);
}
if (is_vlan) {
vlan.h_vlan_TCI = data->vlan_tag;
vlan.h_vlan_encapsulated_proto = eth.h_proto;
eth.h_proto = data->vlan_etype;
}
tmp = dummy_packet;
memcpy(tmp, &eth, sizeof(eth));
tmp += sizeof(eth);
memcpy(ipv6->saddr.in6_u.u6_addr32, if (is_vlan) {
fd_data->src_ip6, sizeof(__be32) * 4); memcpy(tmp, &vlan, sizeof(vlan));
memcpy(ipv6->daddr.in6_u.u6_addr32, tmp += sizeof(vlan);
fd_data->dst_ip6, sizeof(__be32) * 4);
} }
udp->dest = fd_data->dst_port;
udp->source = fd_data->src_port; if (ipv4) {
memcpy(tmp, &ip, sizeof(ip));
tmp += sizeof(ip);
} else {
memcpy(tmp, &ipv6, sizeof(ipv6));
tmp += sizeof(ipv6);
}
return tmp;
}
/**
* i40e_create_dummy_udp_packet - helper function to create UDP packet
* @raw_packet: preallocated space for dummy packet
* @ipv4: is layer 3 packet of version 4 or 6
* @l4proto: next level protocol used in data portion of l3
* @data: filter data
*
* Helper function to populate udp fields.
**/
static void i40e_create_dummy_udp_packet(u8 *raw_packet, bool ipv4, u8 l4proto,
struct i40e_fdir_filter *data)
{
struct udphdr *udp;
u8 *tmp;
tmp = i40e_create_dummy_packet(raw_packet, ipv4, IPPROTO_UDP, data);
udp = (struct udphdr *)(tmp);
udp->dest = data->dst_port;
udp->source = data->src_port;
}
/**
* i40e_create_dummy_tcp_packet - helper function to create TCP packet
* @raw_packet: preallocated space for dummy packet
* @ipv4: is layer 3 packet of version 4 or 6
* @l4proto: next level protocol used in data portion of l3
* @data: filter data
*
* Helper function to populate tcp fields.
**/
static void i40e_create_dummy_tcp_packet(u8 *raw_packet, bool ipv4, u8 l4proto,
struct i40e_fdir_filter *data)
{
struct tcphdr *tcp;
u8 *tmp;
/* Dummy tcp packet */
static const char tcp_packet[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0x50, 0x11, 0x0, 0x72, 0, 0, 0, 0};
tmp = i40e_create_dummy_packet(raw_packet, ipv4, IPPROTO_TCP, data);
tcp = (struct tcphdr *)tmp;
memcpy(tcp, tcp_packet, sizeof(tcp_packet));
tcp->dest = data->dst_port;
tcp->source = data->src_port;
}
/**
* i40e_create_dummy_sctp_packet - helper function to create SCTP packet
* @raw_packet: preallocated space for dummy packet
* @ipv4: is layer 3 packet of version 4 or 6
* @l4proto: next level protocol used in data portion of l3
* @data: filter data
*
* Helper function to populate sctp fields.
**/
static void i40e_create_dummy_sctp_packet(u8 *raw_packet, bool ipv4,
u8 l4proto,
struct i40e_fdir_filter *data)
{
struct sctphdr *sctp;
u8 *tmp;
tmp = i40e_create_dummy_packet(raw_packet, ipv4, IPPROTO_SCTP, data);
sctp = (struct sctphdr *)tmp;
sctp->dest = data->dst_port;
sctp->source = data->src_port;
}
/**
* i40e_prepare_fdir_filter - Prepare and program fdir filter
* @pf: physical function to attach filter to
* @fd_data: filter data
* @add: add or delete filter
* @packet_addr: address of dummy packet, used in filtering
* @payload_offset: offset from dummy packet address to user defined data
* @pctype: Packet type for which filter is used
*
* Helper function to offset data of dummy packet, program it and
* handle errors.
**/
static int i40e_prepare_fdir_filter(struct i40e_pf *pf,
struct i40e_fdir_filter *fd_data,
bool add, char *packet_addr,
int payload_offset, u8 pctype)
{
int ret;
if (fd_data->flex_filter) { if (fd_data->flex_filter) {
u8 *payload; u8 *payload;
__be16 pattern = fd_data->flex_word; __be16 pattern = fd_data->flex_word;
u16 off = fd_data->flex_offset; u16 off = fd_data->flex_offset;
if (ipv4) payload = packet_addr + payload_offset;
payload = raw_packet + I40E_UDPIP_DUMMY_PACKET_LEN;
else /* If user provided vlan, offset payload by vlan header length */
payload = raw_packet + I40E_UDPIP6_DUMMY_PACKET_LEN; if (!!fd_data->vlan_tag)
payload += VLAN_HLEN;
*((__force __be16 *)(payload + off)) = pattern; *((__force __be16 *)(payload + off)) = pattern;
} }
if (ipv4) fd_data->pctype = pctype;
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP; ret = i40e_program_fdir_filter(fd_data, packet_addr, pf, add);
else
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV6_UDP;
ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
if (ret) { if (ret) {
dev_info(&pf->pdev->dev, dev_info(&pf->pdev->dev,
"PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n", "PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
fd_data->pctype, fd_data->fd_id, ret); fd_data->pctype, fd_data->fd_id, ret);
/* Free the packet buffer since it wasn't added to the ring */ /* Free the packet buffer since it wasn't added to the ring */
kfree(raw_packet);
return -EOPNOTSUPP; return -EOPNOTSUPP;
} else if (I40E_DEBUG_FD & pf->hw.debug_mask) { } else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
if (add) if (add)
...@@ -253,25 +343,39 @@ static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi, ...@@ -253,25 +343,39 @@ static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi,
fd_data->pctype, fd_data->fd_id); fd_data->pctype, fd_data->fd_id);
} }
return ret;
}
/**
* i40e_change_filter_num - Prepare and program fdir filter
* @ipv4: is layer 3 packet of version 4 or 6
* @add: add or delete filter
* @ipv4_filter_num: field to update
* @ipv6_filter_num: field to update
*
* Update filter number field for pf.
**/
static void i40e_change_filter_num(bool ipv4, bool add, u16 *ipv4_filter_num,
u16 *ipv6_filter_num)
{
if (add) { if (add) {
if (ipv4) if (ipv4)
pf->fd_udp4_filter_cnt++; (*ipv4_filter_num)++;
else else
pf->fd_udp6_filter_cnt++; (*ipv6_filter_num)++;
} else { } else {
if (ipv4) if (ipv4)
pf->fd_udp4_filter_cnt--; (*ipv4_filter_num)--;
else else
pf->fd_udp6_filter_cnt--; (*ipv6_filter_num)--;
} }
return 0;
} }
#define I40E_TCPIP_DUMMY_PACKET_LEN 54 #define IP_HEADER_OFFSET 14
#define I40E_TCPIP6_DUMMY_PACKET_LEN 74 #define I40E_UDPIP_DUMMY_PACKET_LEN 42
#define I40E_UDPIP6_DUMMY_PACKET_LEN 62
/** /**
* i40e_add_del_fdir_tcp - Add/Remove TCPv4 filters * i40e_add_del_fdir_udp - Add/Remove UDP filters
* @vsi: pointer to the targeted VSI * @vsi: pointer to the targeted VSI
* @fd_data: the flow director data required for the FDir descriptor * @fd_data: the flow director data required for the FDir descriptor
* @add: true adds a filter, false removes it * @add: true adds a filter, false removes it
...@@ -279,112 +383,93 @@ static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi, ...@@ -279,112 +383,93 @@ static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi,
* *
* Returns 0 if the filters were successfully added or removed * Returns 0 if the filters were successfully added or removed
**/ **/
static int i40e_add_del_fdir_tcp(struct i40e_vsi *vsi, static int i40e_add_del_fdir_udp(struct i40e_vsi *vsi,
struct i40e_fdir_filter *fd_data, struct i40e_fdir_filter *fd_data,
bool add, bool add,
bool ipv4) bool ipv4)
{ {
struct i40e_pf *pf = vsi->back; struct i40e_pf *pf = vsi->back;
struct ipv6hdr *ipv6;
struct tcphdr *tcp;
struct iphdr *ip;
u8 *raw_packet; u8 *raw_packet;
int ret; int ret;
/* Dummy packet */
static char packet_ipv4[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08,
0, 0x45, 0, 0, 0x28, 0, 0, 0x40, 0, 0x40, 0x6, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x50, 0x11,
0x0, 0x72, 0, 0, 0, 0};
static char packet_ipv6[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x86,
0xdd, 0x60, 0, 0, 0, 0, 0, 0x6, 0,
/*src address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/*dst address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x50, 0x11,
0x0, 0x72, 0, 0, 0, 0};
raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL); raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
if (!raw_packet) if (!raw_packet)
return -ENOMEM; return -ENOMEM;
if (ipv4) {
memcpy(raw_packet, packet_ipv4, I40E_TCPIP_DUMMY_PACKET_LEN);
ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET); i40e_create_dummy_udp_packet(raw_packet, ipv4, IPPROTO_UDP, fd_data);
tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET
+ sizeof(struct iphdr));
ip->daddr = fd_data->dst_ip; if (ipv4)
ip->saddr = fd_data->src_ip; ret = i40e_prepare_fdir_filter
} else { (pf, fd_data, add, raw_packet,
memcpy(raw_packet, packet_ipv6, I40E_TCPIP6_DUMMY_PACKET_LEN); I40E_UDPIP_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV4_UDP);
tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET else
+ sizeof(struct ipv6hdr)); ret = i40e_prepare_fdir_filter
ipv6 = (struct ipv6hdr *)(raw_packet + IP_HEADER_OFFSET); (pf, fd_data, add, raw_packet,
I40E_UDPIP6_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV6_UDP);
memcpy(ipv6->saddr.in6_u.u6_addr32, if (ret) {
fd_data->src_ip6, sizeof(__be32) * 4); kfree(raw_packet);
memcpy(ipv6->daddr.in6_u.u6_addr32, return ret;
fd_data->dst_ip6, sizeof(__be32) * 4);
} }
ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET); i40e_change_filter_num(ipv4, add, &pf->fd_udp4_filter_cnt,
tcp = (struct tcphdr *)(raw_packet + IP_HEADER_OFFSET &pf->fd_udp6_filter_cnt);
+ sizeof(struct iphdr));
tcp->dest = fd_data->dst_port; return 0;
tcp->source = fd_data->src_port; }
if (fd_data->flex_filter) {
u8 *payload;
__be16 pattern = fd_data->flex_word;
u16 off = fd_data->flex_offset;
if (ipv4) #define I40E_TCPIP_DUMMY_PACKET_LEN 54
payload = raw_packet + I40E_TCPIP_DUMMY_PACKET_LEN; #define I40E_TCPIP6_DUMMY_PACKET_LEN 74
else /**
payload = raw_packet + I40E_TCPIP6_DUMMY_PACKET_LEN; * i40e_add_del_fdir_tcp - Add/Remove TCPv4 filters
* @vsi: pointer to the targeted VSI
* @fd_data: the flow director data required for the FDir descriptor
* @add: true adds a filter, false removes it
* @ipv4: true is v4, false is v6
*
* Returns 0 if the filters were successfully added or removed
**/
static int i40e_add_del_fdir_tcp(struct i40e_vsi *vsi,
struct i40e_fdir_filter *fd_data,
bool add,
bool ipv4)
{
struct i40e_pf *pf = vsi->back;
u8 *raw_packet;
int ret;
*((__force __be16 *)(payload + off)) = pattern; raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
} if (!raw_packet)
return -ENOMEM;
i40e_create_dummy_tcp_packet(raw_packet, ipv4, IPPROTO_TCP, fd_data);
if (ipv4) if (ipv4)
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_TCP; ret = i40e_prepare_fdir_filter
(pf, fd_data, add, raw_packet,
I40E_TCPIP_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV4_TCP);
else else
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV6_TCP; ret = i40e_prepare_fdir_filter
ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add); (pf, fd_data, add, raw_packet,
I40E_TCPIP6_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV6_TCP);
if (ret) { if (ret) {
dev_info(&pf->pdev->dev,
"PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
fd_data->pctype, fd_data->fd_id, ret);
/* Free the packet buffer since it wasn't added to the ring */
kfree(raw_packet); kfree(raw_packet);
return -EOPNOTSUPP; return ret;
} else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
if (add)
dev_info(&pf->pdev->dev, "Filter OK for PCTYPE %d loc = %d)\n",
fd_data->pctype, fd_data->fd_id);
else
dev_info(&pf->pdev->dev,
"Filter deleted for PCTYPE %d loc = %d\n",
fd_data->pctype, fd_data->fd_id);
} }
i40e_change_filter_num(ipv4, add, &pf->fd_tcp4_filter_cnt,
&pf->fd_tcp6_filter_cnt);
if (add) { if (add) {
if (ipv4)
pf->fd_tcp4_filter_cnt++;
else
pf->fd_tcp6_filter_cnt++;
if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) && if ((pf->flags & I40E_FLAG_FD_ATR_ENABLED) &&
I40E_DEBUG_FD & pf->hw.debug_mask) I40E_DEBUG_FD & pf->hw.debug_mask)
dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n"); dev_info(&pf->pdev->dev, "Forcing ATR off, sideband rules for TCP/IPv4 flow being applied\n");
set_bit(__I40E_FD_ATR_AUTO_DISABLED, pf->state); set_bit(__I40E_FD_ATR_AUTO_DISABLED, pf->state);
} else {
if (ipv4)
pf->fd_tcp4_filter_cnt--;
else
pf->fd_tcp6_filter_cnt--;
} }
return 0; return 0;
} }
...@@ -406,96 +491,33 @@ static int i40e_add_del_fdir_sctp(struct i40e_vsi *vsi, ...@@ -406,96 +491,33 @@ static int i40e_add_del_fdir_sctp(struct i40e_vsi *vsi,
bool ipv4) bool ipv4)
{ {
struct i40e_pf *pf = vsi->back; struct i40e_pf *pf = vsi->back;
struct ipv6hdr *ipv6;
struct sctphdr *sctp;
struct iphdr *ip;
u8 *raw_packet; u8 *raw_packet;
int ret; int ret;
/* Dummy packets */
static char packet_ipv4[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08,
0, 0x45, 0, 0, 0x20, 0, 0, 0x40, 0, 0x40, 0x84, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
static char packet_ipv6[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x86,
0xdd, 0x60, 0, 0, 0, 0, 0, 0x84, 0,
/*src address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/*dst address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL); raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
if (!raw_packet) if (!raw_packet)
return -ENOMEM; return -ENOMEM;
if (ipv4) {
memcpy(raw_packet, packet_ipv4, I40E_SCTPIP_DUMMY_PACKET_LEN);
ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
sctp = (struct sctphdr *)(raw_packet + IP_HEADER_OFFSET
+ sizeof(struct iphdr));
ip->daddr = fd_data->dst_ip; i40e_create_dummy_sctp_packet(raw_packet, ipv4, IPPROTO_SCTP, fd_data);
ip->saddr = fd_data->src_ip;
} else {
memcpy(raw_packet, packet_ipv6, I40E_SCTPIP6_DUMMY_PACKET_LEN);
ipv6 = (struct ipv6hdr *)(raw_packet + IP_HEADER_OFFSET);
sctp = (struct sctphdr *)(raw_packet + IP_HEADER_OFFSET
+ sizeof(struct ipv6hdr));
memcpy(ipv6->saddr.in6_u.u6_addr32,
fd_data->src_ip6, sizeof(__be32) * 4);
memcpy(ipv6->saddr.in6_u.u6_addr32,
fd_data->src_ip6, sizeof(__be32) * 4);
}
sctp->dest = fd_data->dst_port;
sctp->source = fd_data->src_port;
if (fd_data->flex_filter) {
u8 *payload;
__be16 pattern = fd_data->flex_word;
u16 off = fd_data->flex_offset;
if (ipv4)
payload = raw_packet + I40E_SCTPIP_DUMMY_PACKET_LEN;
else
payload = raw_packet + I40E_SCTPIP6_DUMMY_PACKET_LEN;
*((__force __be16 *)(payload + off)) = pattern;
}
if (ipv4) if (ipv4)
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV4_SCTP; ret = i40e_prepare_fdir_filter
(pf, fd_data, add, raw_packet,
I40E_SCTPIP_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV4_SCTP);
else else
fd_data->pctype = I40E_FILTER_PCTYPE_NONF_IPV6_SCTP; ret = i40e_prepare_fdir_filter
(pf, fd_data, add, raw_packet,
I40E_SCTPIP6_DUMMY_PACKET_LEN,
I40E_FILTER_PCTYPE_NONF_IPV6_SCTP);
ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add);
if (ret) { if (ret) {
dev_info(&pf->pdev->dev,
"PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n",
fd_data->pctype, fd_data->fd_id, ret);
/* Free the packet buffer since it wasn't added to the ring */
kfree(raw_packet); kfree(raw_packet);
return -EOPNOTSUPP; return ret;
} else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
if (add)
dev_info(&pf->pdev->dev,
"Filter OK for PCTYPE %d loc = %d\n",
fd_data->pctype, fd_data->fd_id);
else
dev_info(&pf->pdev->dev,
"Filter deleted for PCTYPE %d loc = %d\n",
fd_data->pctype, fd_data->fd_id);
} }
if (add) { i40e_change_filter_num(ipv4, add, &pf->fd_sctp4_filter_cnt,
if (ipv4) &pf->fd_sctp6_filter_cnt);
pf->fd_sctp4_filter_cnt++;
else
pf->fd_sctp6_filter_cnt++;
} else {
if (ipv4)
pf->fd_sctp4_filter_cnt--;
else
pf->fd_sctp6_filter_cnt--;
}
return 0; return 0;
} }
...@@ -518,20 +540,12 @@ static int i40e_add_del_fdir_ip(struct i40e_vsi *vsi, ...@@ -518,20 +540,12 @@ static int i40e_add_del_fdir_ip(struct i40e_vsi *vsi,
bool ipv4) bool ipv4)
{ {
struct i40e_pf *pf = vsi->back; struct i40e_pf *pf = vsi->back;
struct ipv6hdr *ipv6; int payload_offset;
struct iphdr *ip;
u8 *raw_packet; u8 *raw_packet;
int iter_start; int iter_start;
int iter_end; int iter_end;
int ret; int ret;
int i; int i;
static char packet_ipv4[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x08,
0, 0x45, 0, 0, 0x14, 0, 0, 0x40, 0, 0x40, 0x10, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0};
static char packet_ipv6[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x86,
0xdd, 0x60, 0, 0, 0, 0, 0, 0, 0,
/*src address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/*dst address*/0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
if (ipv4) { if (ipv4) {
iter_start = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER; iter_start = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
...@@ -545,76 +559,27 @@ static int i40e_add_del_fdir_ip(struct i40e_vsi *vsi, ...@@ -545,76 +559,27 @@ static int i40e_add_del_fdir_ip(struct i40e_vsi *vsi,
raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL); raw_packet = kzalloc(I40E_FDIR_MAX_RAW_PACKET_SIZE, GFP_KERNEL);
if (!raw_packet) if (!raw_packet)
return -ENOMEM; return -ENOMEM;
if (ipv4) {
memcpy(raw_packet, packet_ipv4,
I40E_IP_DUMMY_PACKET_LEN);
ip = (struct iphdr *)(raw_packet + IP_HEADER_OFFSET);
ip->saddr = fd_data->src_ip;
ip->daddr = fd_data->dst_ip;
ip->protocol = IPPROTO_IP;
} else {
memcpy(raw_packet, packet_ipv6,
I40E_IP6_DUMMY_PACKET_LEN);
ipv6 = (struct ipv6hdr *)(raw_packet +
IP_HEADER_OFFSET);
memcpy(ipv6->saddr.in6_u.u6_addr32,
fd_data->src_ip6, sizeof(__be32) * 4);
memcpy(ipv6->daddr.in6_u.u6_addr32,
fd_data->dst_ip6, sizeof(__be32) * 4);
ipv6->nexthdr = IPPROTO_NONE;
}
if (fd_data->flex_filter) { /* IPv6 no header option differs from IPv4 */
u8 *payload; (void)i40e_create_dummy_packet
__be16 pattern = fd_data->flex_word; (raw_packet, ipv4, (ipv4) ? IPPROTO_IP : IPPROTO_NONE,
u16 off = fd_data->flex_offset; fd_data);
if (ipv4)
payload = raw_packet + I40E_IP_DUMMY_PACKET_LEN;
else
payload = raw_packet +
I40E_IP6_DUMMY_PACKET_LEN;
*((__force __be16 *)(payload + off)) = pattern;
}
fd_data->pctype = i; payload_offset = (ipv4) ? I40E_IP_DUMMY_PACKET_LEN :
ret = i40e_program_fdir_filter(fd_data, raw_packet, pf, add); I40E_IP6_DUMMY_PACKET_LEN;
if (ret) { ret = i40e_prepare_fdir_filter(pf, fd_data, add, raw_packet,
dev_info(&pf->pdev->dev, payload_offset, i);
"PCTYPE:%d, Filter command send failed for fd_id:%d (ret = %d)\n", if (ret)
fd_data->pctype, fd_data->fd_id, ret); goto err;
/* The packet buffer wasn't added to the ring so we
* need to free it now.
*/
kfree(raw_packet);
return -EOPNOTSUPP;
} else if (I40E_DEBUG_FD & pf->hw.debug_mask) {
if (add)
dev_info(&pf->pdev->dev,
"Filter OK for PCTYPE %d loc = %d\n",
fd_data->pctype, fd_data->fd_id);
else
dev_info(&pf->pdev->dev,
"Filter deleted for PCTYPE %d loc = %d\n",
fd_data->pctype, fd_data->fd_id);
}
} }
if (add) { i40e_change_filter_num(ipv4, add, &pf->fd_ip4_filter_cnt,
if (ipv4) &pf->fd_ip6_filter_cnt);
pf->fd_ip4_filter_cnt++;
else
pf->fd_ip6_filter_cnt++;
} else {
if (ipv4)
pf->fd_ip4_filter_cnt--;
else
pf->fd_ip6_filter_cnt--;
}
return 0; return 0;
err:
kfree(raw_packet);
return ret;
} }
/** /**
......
...@@ -1421,6 +1421,8 @@ struct i40e_lldp_variables { ...@@ -1421,6 +1421,8 @@ struct i40e_lldp_variables {
#define I40E_L4_DST_MASK (0x1ULL << I40E_L4_DST_SHIFT) #define I40E_L4_DST_MASK (0x1ULL << I40E_L4_DST_SHIFT)
#define I40E_VERIFY_TAG_SHIFT 31 #define I40E_VERIFY_TAG_SHIFT 31
#define I40E_VERIFY_TAG_MASK (0x3ULL << I40E_VERIFY_TAG_SHIFT) #define I40E_VERIFY_TAG_MASK (0x3ULL << I40E_VERIFY_TAG_SHIFT)
#define I40E_VLAN_SRC_SHIFT 55
#define I40E_VLAN_SRC_MASK (0x1ULL << I40E_VLAN_SRC_SHIFT)
#define I40E_FLEX_50_SHIFT 13 #define I40E_FLEX_50_SHIFT 13
#define I40E_FLEX_50_MASK (0x1ULL << I40E_FLEX_50_SHIFT) #define I40E_FLEX_50_MASK (0x1ULL << I40E_FLEX_50_SHIFT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment