/*
* Copyright (c) 2018 Internet Initiative Japan Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Calculate rss hash value from IPv4 mbuf.
* This function should be called before ip_input().
*/
uint32_t
rss_toeplitz_hash_from_mbuf_ipv4(const struct mbuf *m, u_int flag)
{
struct ip *ip;
int hlen;
uint8_t key[RSS_KEYSIZE];
uh = (struct udphdr *)(mtod(m, char *) + hlen);
return toeplitz_vhash(key, sizeof(key),
/* ip_src and ip_dst in struct ip must sequential */
&ip->ip_src, sizeof(ip->ip_src) * 2,
/* uh_sport and uh_dport in udphdr must be sequential */
&uh->uh_sport, sizeof(uh->uh_sport) * 2,
NULL);
} else if (m->m_pkthdr.len >= hlen + sizeof(struct udphdr)) {
uint16_t ports[2];
/* ditto */
m_copydata(__UNCONST(m), hlen + offsetof(struct udphdr, uh_sport),
sizeof(ports), ports);
return toeplitz_vhash(key, sizeof(key),
&ip->ip_src, sizeof(ip->ip_src) * 2,
ports, sizeof(ports),
NULL);
}
}
/*
* Treat as raw packet.
*/
return toeplitz_vhash(key, sizeof(key),
/* ditto */
&ip->ip_src, sizeof(ip->ip_src) * 2,
NULL);
}
/*
* Other protocols are treated as raw packets to apply RPS.
*/
default:
return toeplitz_vhash(key, sizeof(key),
/* ditto */
&ip->ip_src, sizeof(ip->ip_src) * 2,
NULL);
}
}
/*
* Calculate rss hash value from IPv6 mbuf.
* This function should be called before ip6_input().
*/
uint32_t
rss_toeplitz_hash_from_mbuf_ipv6(const struct mbuf *m, u_int flag)
{
struct ip6_hdr *ip6;
int hlen;
uint8_t key[RSS_KEYSIZE];