17527624eSRobert Watson /*-
27527624eSRobert Watson * Copyright (c) 2010-2011 Juniper Networks, Inc.
37527624eSRobert Watson * All rights reserved.
47527624eSRobert Watson *
57527624eSRobert Watson * This software was developed by Robert N. M. Watson under contract
67527624eSRobert Watson * to Juniper Networks, Inc.
77527624eSRobert Watson *
87527624eSRobert Watson * Redistribution and use in source and binary forms, with or without
97527624eSRobert Watson * modification, are permitted provided that the following conditions
107527624eSRobert Watson * are met:
117527624eSRobert Watson * 1. Redistributions of source code must retain the above copyright
127527624eSRobert Watson * notice, this list of conditions and the following disclaimer.
137527624eSRobert Watson * 2. Redistributions in binary form must reproduce the above copyright
147527624eSRobert Watson * notice, this list of conditions and the following disclaimer in the
157527624eSRobert Watson * documentation and/or other materials provided with the distribution.
167527624eSRobert Watson *
177527624eSRobert Watson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
187527624eSRobert Watson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
197527624eSRobert Watson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
207527624eSRobert Watson * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
217527624eSRobert Watson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
227527624eSRobert Watson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
237527624eSRobert Watson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
247527624eSRobert Watson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
257527624eSRobert Watson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
267527624eSRobert Watson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
277527624eSRobert Watson * SUCH DAMAGE.
287527624eSRobert Watson */
297527624eSRobert Watson
307527624eSRobert Watson
317527624eSRobert Watson #include "opt_inet6.h"
327527624eSRobert Watson
337527624eSRobert Watson #include <sys/param.h>
347527624eSRobert Watson #include <sys/mbuf.h>
357527624eSRobert Watson #include <sys/socket.h>
367527624eSRobert Watson #include <sys/priv.h>
377527624eSRobert Watson #include <sys/kernel.h>
387527624eSRobert Watson #include <sys/smp.h>
397527624eSRobert Watson #include <sys/sysctl.h>
408bde802aSAdrian Chadd #include <sys/sbuf.h>
417527624eSRobert Watson
427527624eSRobert Watson #include <net/if.h>
437527624eSRobert Watson #include <net/if_var.h>
447527624eSRobert Watson #include <net/netisr.h>
45b2bdc62aSAdrian Chadd #include <net/rss_config.h>
467527624eSRobert Watson
477527624eSRobert Watson #include <netinet/in.h>
487527624eSRobert Watson #include <netinet/in_pcb.h>
497527624eSRobert Watson #include <netinet/in_rss.h>
507527624eSRobert Watson #include <netinet/in_var.h>
517527624eSRobert Watson
5272d33245SAdrian Chadd /* for software rss hash support */
5372d33245SAdrian Chadd #include <netinet/ip.h>
5472d33245SAdrian Chadd #include <netinet/tcp.h>
5572d33245SAdrian Chadd #include <netinet/udp.h>
5672d33245SAdrian Chadd
577527624eSRobert Watson /*
587527624eSRobert Watson * Hash an IPv4 2-tuple.
597527624eSRobert Watson */
607527624eSRobert Watson uint32_t
rss_hash_ip4_2tuple(struct in_addr src,struct in_addr dst)617527624eSRobert Watson rss_hash_ip4_2tuple(struct in_addr src, struct in_addr dst)
627527624eSRobert Watson {
637527624eSRobert Watson uint8_t data[sizeof(src) + sizeof(dst)];
647527624eSRobert Watson u_int datalen;
657527624eSRobert Watson
667527624eSRobert Watson datalen = 0;
677527624eSRobert Watson bcopy(&src, &data[datalen], sizeof(src));
687527624eSRobert Watson datalen += sizeof(src);
697527624eSRobert Watson bcopy(&dst, &data[datalen], sizeof(dst));
707527624eSRobert Watson datalen += sizeof(dst);
717527624eSRobert Watson return (rss_hash(datalen, data));
727527624eSRobert Watson }
737527624eSRobert Watson
747527624eSRobert Watson /*
757527624eSRobert Watson * Hash an IPv4 4-tuple.
767527624eSRobert Watson */
777527624eSRobert Watson uint32_t
rss_hash_ip4_4tuple(struct in_addr src,u_short srcport,struct in_addr dst,u_short dstport)787527624eSRobert Watson rss_hash_ip4_4tuple(struct in_addr src, u_short srcport, struct in_addr dst,
797527624eSRobert Watson u_short dstport)
807527624eSRobert Watson {
817527624eSRobert Watson uint8_t data[sizeof(src) + sizeof(dst) + sizeof(srcport) +
827527624eSRobert Watson sizeof(dstport)];
837527624eSRobert Watson u_int datalen;
847527624eSRobert Watson
857527624eSRobert Watson datalen = 0;
867527624eSRobert Watson bcopy(&src, &data[datalen], sizeof(src));
877527624eSRobert Watson datalen += sizeof(src);
887527624eSRobert Watson bcopy(&dst, &data[datalen], sizeof(dst));
897527624eSRobert Watson datalen += sizeof(dst);
907527624eSRobert Watson bcopy(&srcport, &data[datalen], sizeof(srcport));
917527624eSRobert Watson datalen += sizeof(srcport);
927527624eSRobert Watson bcopy(&dstport, &data[datalen], sizeof(dstport));
937527624eSRobert Watson datalen += sizeof(dstport);
947527624eSRobert Watson return (rss_hash(datalen, data));
957527624eSRobert Watson }
967527624eSRobert Watson
977527624eSRobert Watson /*
9872d33245SAdrian Chadd * Calculate an appropriate ipv4 2-tuple or 4-tuple given the given
9972d33245SAdrian Chadd * IPv4 source/destination address, UDP or TCP source/destination ports
10072d33245SAdrian Chadd * and the protocol type.
10172d33245SAdrian Chadd *
10272d33245SAdrian Chadd * The protocol code may wish to do a software hash of the given
10372d33245SAdrian Chadd * tuple. This depends upon the currently configured RSS hash types.
10472d33245SAdrian Chadd *
10572d33245SAdrian Chadd * This assumes that the packet in question isn't a fragment.
10672d33245SAdrian Chadd *
10772d33245SAdrian Chadd * It also assumes the packet source/destination address
10872d33245SAdrian Chadd * are in "incoming" packet order (ie, source is "far" address.)
10972d33245SAdrian Chadd */
11072d33245SAdrian Chadd int
rss_proto_software_hash_v4(struct in_addr s,struct in_addr d,u_short sp,u_short dp,int proto,uint32_t * hashval,uint32_t * hashtype)11172d33245SAdrian Chadd rss_proto_software_hash_v4(struct in_addr s, struct in_addr d,
11272d33245SAdrian Chadd u_short sp, u_short dp, int proto,
11372d33245SAdrian Chadd uint32_t *hashval, uint32_t *hashtype)
11472d33245SAdrian Chadd {
11572d33245SAdrian Chadd uint32_t hash;
11672d33245SAdrian Chadd
11772d33245SAdrian Chadd /*
11872d33245SAdrian Chadd * Next, choose the hash type depending upon the protocol
11972d33245SAdrian Chadd * identifier.
12072d33245SAdrian Chadd */
12172d33245SAdrian Chadd if ((proto == IPPROTO_TCP) &&
122b2bdc62aSAdrian Chadd (rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4)) {
12372d33245SAdrian Chadd hash = rss_hash_ip4_4tuple(s, sp, d, dp);
12472d33245SAdrian Chadd *hashval = hash;
12572d33245SAdrian Chadd *hashtype = M_HASHTYPE_RSS_TCP_IPV4;
12672d33245SAdrian Chadd return (0);
12772d33245SAdrian Chadd } else if ((proto == IPPROTO_UDP) &&
128b2bdc62aSAdrian Chadd (rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV4)) {
12972d33245SAdrian Chadd hash = rss_hash_ip4_4tuple(s, sp, d, dp);
13072d33245SAdrian Chadd *hashval = hash;
13172d33245SAdrian Chadd *hashtype = M_HASHTYPE_RSS_UDP_IPV4;
13272d33245SAdrian Chadd return (0);
133b2bdc62aSAdrian Chadd } else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) {
13472d33245SAdrian Chadd /* RSS doesn't hash on other protocols like SCTP; so 2-tuple */
13572d33245SAdrian Chadd hash = rss_hash_ip4_2tuple(s, d);
13672d33245SAdrian Chadd *hashval = hash;
13772d33245SAdrian Chadd *hashtype = M_HASHTYPE_RSS_IPV4;
13872d33245SAdrian Chadd return (0);
13972d33245SAdrian Chadd }
14072d33245SAdrian Chadd
14172d33245SAdrian Chadd /* No configured available hashtypes! */
142e5562eb9SAdrian Chadd RSS_DEBUG("no available hashtypes!\n");
14372d33245SAdrian Chadd return (-1);
14472d33245SAdrian Chadd }
14572d33245SAdrian Chadd
14672d33245SAdrian Chadd /*
147*0c325f53SAlexander V. Chernikov * Calculate an appropriate ipv4 2-tuple or 4-tuple given the given
148*0c325f53SAlexander V. Chernikov * IPv4 source/destination address, UDP or TCP source/destination ports
149*0c325f53SAlexander V. Chernikov * and the protocol type.
150*0c325f53SAlexander V. Chernikov *
151*0c325f53SAlexander V. Chernikov * The protocol code may wish to do a software hash of the given
152*0c325f53SAlexander V. Chernikov * tuple. This depends upon the currently configured RSS hash types.
153*0c325f53SAlexander V. Chernikov *
154*0c325f53SAlexander V. Chernikov * It assumes the packet source/destination address
155*0c325f53SAlexander V. Chernikov * are in "outgoing" packet order (ie, destination is "far" address.)
156*0c325f53SAlexander V. Chernikov */
157*0c325f53SAlexander V. Chernikov uint32_t
xps_proto_software_hash_v4(struct in_addr s,struct in_addr d,u_short sp,u_short dp,int proto,uint32_t * hashtype)158*0c325f53SAlexander V. Chernikov xps_proto_software_hash_v4(struct in_addr s, struct in_addr d,
159*0c325f53SAlexander V. Chernikov u_short sp, u_short dp, int proto, uint32_t *hashtype)
160*0c325f53SAlexander V. Chernikov {
161*0c325f53SAlexander V. Chernikov uint32_t hash;
162*0c325f53SAlexander V. Chernikov
163*0c325f53SAlexander V. Chernikov /*
164*0c325f53SAlexander V. Chernikov * Next, choose the hash type depending upon the protocol
165*0c325f53SAlexander V. Chernikov * identifier.
166*0c325f53SAlexander V. Chernikov */
167*0c325f53SAlexander V. Chernikov if ((proto == IPPROTO_TCP) &&
168*0c325f53SAlexander V. Chernikov (rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4)) {
169*0c325f53SAlexander V. Chernikov hash = rss_hash_ip4_4tuple(d, dp, s, sp);
170*0c325f53SAlexander V. Chernikov *hashtype = M_HASHTYPE_RSS_TCP_IPV4;
171*0c325f53SAlexander V. Chernikov return (hash);
172*0c325f53SAlexander V. Chernikov } else if ((proto == IPPROTO_UDP) &&
173*0c325f53SAlexander V. Chernikov (rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV4)) {
174*0c325f53SAlexander V. Chernikov hash = rss_hash_ip4_4tuple(d, dp, s, sp);
175*0c325f53SAlexander V. Chernikov *hashtype = M_HASHTYPE_RSS_UDP_IPV4;
176*0c325f53SAlexander V. Chernikov return (hash);
177*0c325f53SAlexander V. Chernikov } else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) {
178*0c325f53SAlexander V. Chernikov /* RSS doesn't hash on other protocols like SCTP; so 2-tuple */
179*0c325f53SAlexander V. Chernikov hash = rss_hash_ip4_2tuple(d, s);
180*0c325f53SAlexander V. Chernikov *hashtype = M_HASHTYPE_RSS_IPV4;
181*0c325f53SAlexander V. Chernikov return (hash);
182*0c325f53SAlexander V. Chernikov }
183*0c325f53SAlexander V. Chernikov
184*0c325f53SAlexander V. Chernikov *hashtype = M_HASHTYPE_NONE;
185*0c325f53SAlexander V. Chernikov return (0);
186*0c325f53SAlexander V. Chernikov }
187*0c325f53SAlexander V. Chernikov
188*0c325f53SAlexander V. Chernikov /*
18972d33245SAdrian Chadd * Do a software calculation of the RSS for the given mbuf.
19072d33245SAdrian Chadd *
19172d33245SAdrian Chadd * This is typically used by the input path to recalculate the RSS after
19272d33245SAdrian Chadd * some form of packet processing (eg de-capsulation, IP fragment reassembly.)
19372d33245SAdrian Chadd *
19472d33245SAdrian Chadd * dir is the packet direction - RSS_HASH_PKT_INGRESS for incoming and
19572d33245SAdrian Chadd * RSS_HASH_PKT_EGRESS for outgoing.
19672d33245SAdrian Chadd *
19772d33245SAdrian Chadd * Returns 0 if a hash was done, -1 if no hash was done, +1 if
19872d33245SAdrian Chadd * the mbuf already had a valid RSS flowid.
19972d33245SAdrian Chadd *
20072d33245SAdrian Chadd * This function doesn't modify the mbuf. It's up to the caller to
20172d33245SAdrian Chadd * assign flowid/flowtype as appropriate.
20272d33245SAdrian Chadd */
20372d33245SAdrian Chadd int
rss_mbuf_software_hash_v4(const struct mbuf * m,int dir,uint32_t * hashval,uint32_t * hashtype)20472d33245SAdrian Chadd rss_mbuf_software_hash_v4(const struct mbuf *m, int dir, uint32_t *hashval,
20572d33245SAdrian Chadd uint32_t *hashtype)
20672d33245SAdrian Chadd {
20772d33245SAdrian Chadd const struct ip *ip;
20872d33245SAdrian Chadd const struct tcphdr *th;
20972d33245SAdrian Chadd const struct udphdr *uh;
210c2529042SHans Petter Selasky uint32_t flowtype;
21172d33245SAdrian Chadd uint8_t proto;
21272d33245SAdrian Chadd int iphlen;
21372d33245SAdrian Chadd int is_frag = 0;
21472d33245SAdrian Chadd
21572d33245SAdrian Chadd /*
21672d33245SAdrian Chadd * XXX For now this only handles hashing on incoming mbufs.
21772d33245SAdrian Chadd */
21872d33245SAdrian Chadd if (dir != RSS_HASH_PKT_INGRESS) {
219e5562eb9SAdrian Chadd RSS_DEBUG("called on EGRESS packet!\n");
22072d33245SAdrian Chadd return (-1);
22172d33245SAdrian Chadd }
22272d33245SAdrian Chadd
22372d33245SAdrian Chadd /*
22472d33245SAdrian Chadd * First, validate that the mbuf we have is long enough
22572d33245SAdrian Chadd * to have an IPv4 header in it.
22672d33245SAdrian Chadd */
22772d33245SAdrian Chadd if (m->m_pkthdr.len < (sizeof(struct ip))) {
228e5562eb9SAdrian Chadd RSS_DEBUG("short mbuf pkthdr\n");
22972d33245SAdrian Chadd return (-1);
23072d33245SAdrian Chadd }
23172d33245SAdrian Chadd if (m->m_len < (sizeof(struct ip))) {
232e5562eb9SAdrian Chadd RSS_DEBUG("short mbuf len\n");
23372d33245SAdrian Chadd return (-1);
23472d33245SAdrian Chadd }
23572d33245SAdrian Chadd
23672d33245SAdrian Chadd /* Ok, let's dereference that */
23772d33245SAdrian Chadd ip = mtod(m, struct ip *);
23872d33245SAdrian Chadd proto = ip->ip_p;
23972d33245SAdrian Chadd iphlen = ip->ip_hl << 2;
24072d33245SAdrian Chadd
24172d33245SAdrian Chadd /*
24272d33245SAdrian Chadd * If this is a fragment then it shouldn't be four-tuple
24372d33245SAdrian Chadd * hashed just yet. Once it's reassembled into a full
24472d33245SAdrian Chadd * frame it should be re-hashed.
24572d33245SAdrian Chadd */
24672d33245SAdrian Chadd if (ip->ip_off & htons(IP_MF | IP_OFFMASK))
24772d33245SAdrian Chadd is_frag = 1;
24872d33245SAdrian Chadd
24972d33245SAdrian Chadd /*
25072d33245SAdrian Chadd * If the mbuf flowid/flowtype matches the packet type,
25172d33245SAdrian Chadd * and we don't support the 4-tuple version of the given protocol,
25272d33245SAdrian Chadd * then signal to the owner that it can trust the flowid/flowtype
25372d33245SAdrian Chadd * details.
25472d33245SAdrian Chadd *
25572d33245SAdrian Chadd * This is a little picky - eg, if TCPv4 / UDPv4 hashing
25672d33245SAdrian Chadd * is supported but we got a TCP/UDP frame only 2-tuple hashed,
25772d33245SAdrian Chadd * then we shouldn't just "trust" the 2-tuple hash. We need
25872d33245SAdrian Chadd * a 4-tuple hash.
25972d33245SAdrian Chadd */
26072d33245SAdrian Chadd flowtype = M_HASHTYPE_GET(m);
26172d33245SAdrian Chadd
262c2529042SHans Petter Selasky if (flowtype != M_HASHTYPE_NONE) {
26372d33245SAdrian Chadd switch (proto) {
26472d33245SAdrian Chadd case IPPROTO_UDP:
265b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV4) &&
26672d33245SAdrian Chadd (flowtype == M_HASHTYPE_RSS_UDP_IPV4) &&
26772d33245SAdrian Chadd (is_frag == 0)) {
26872d33245SAdrian Chadd return (1);
26972d33245SAdrian Chadd }
27072d33245SAdrian Chadd /*
27172d33245SAdrian Chadd * Only allow 2-tuple for UDP frames if we don't also
27272d33245SAdrian Chadd * support 4-tuple for UDP.
27372d33245SAdrian Chadd */
274b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) &&
275b2bdc62aSAdrian Chadd ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV4) == 0) &&
27672d33245SAdrian Chadd flowtype == M_HASHTYPE_RSS_IPV4) {
27772d33245SAdrian Chadd return (1);
27872d33245SAdrian Chadd }
27972d33245SAdrian Chadd break;
28072d33245SAdrian Chadd case IPPROTO_TCP:
281b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4) &&
28272d33245SAdrian Chadd (flowtype == M_HASHTYPE_RSS_TCP_IPV4) &&
28372d33245SAdrian Chadd (is_frag == 0)) {
28472d33245SAdrian Chadd return (1);
28572d33245SAdrian Chadd }
28672d33245SAdrian Chadd /*
28772d33245SAdrian Chadd * Only allow 2-tuple for TCP frames if we don't also
28872d33245SAdrian Chadd * support 2-tuple for TCP.
28972d33245SAdrian Chadd */
290b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) &&
291b2bdc62aSAdrian Chadd ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4) == 0) &&
29272d33245SAdrian Chadd flowtype == M_HASHTYPE_RSS_IPV4) {
29372d33245SAdrian Chadd return (1);
29472d33245SAdrian Chadd }
29572d33245SAdrian Chadd break;
29672d33245SAdrian Chadd default:
297b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) &&
29872d33245SAdrian Chadd flowtype == M_HASHTYPE_RSS_IPV4) {
29972d33245SAdrian Chadd return (1);
30072d33245SAdrian Chadd }
30172d33245SAdrian Chadd break;
30272d33245SAdrian Chadd }
30372d33245SAdrian Chadd }
30472d33245SAdrian Chadd
30572d33245SAdrian Chadd /*
30672d33245SAdrian Chadd * Decode enough information to make a hash decision.
30772d33245SAdrian Chadd *
30872d33245SAdrian Chadd * XXX TODO: does the hardware hash on 4-tuple if IP
30972d33245SAdrian Chadd * options are present?
31072d33245SAdrian Chadd */
311b2bdc62aSAdrian Chadd if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV4) &&
312f4659f4cSAdrian Chadd (proto == IPPROTO_TCP) &&
313f4659f4cSAdrian Chadd (is_frag == 0)) {
31472d33245SAdrian Chadd if (m->m_len < iphlen + sizeof(struct tcphdr)) {
315e5562eb9SAdrian Chadd RSS_DEBUG("short TCP frame?\n");
31672d33245SAdrian Chadd return (-1);
31772d33245SAdrian Chadd }
3183b272782SAdrian Chadd th = (const struct tcphdr *)((c_caddr_t)ip + iphlen);
31972d33245SAdrian Chadd return rss_proto_software_hash_v4(ip->ip_src, ip->ip_dst,
32072d33245SAdrian Chadd th->th_sport,
32172d33245SAdrian Chadd th->th_dport,
32272d33245SAdrian Chadd proto,
32372d33245SAdrian Chadd hashval,
32472d33245SAdrian Chadd hashtype);
325b2bdc62aSAdrian Chadd } else if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV4) &&
326f4659f4cSAdrian Chadd (proto == IPPROTO_UDP) &&
327f4659f4cSAdrian Chadd (is_frag == 0)) {
3283b272782SAdrian Chadd uh = (const struct udphdr *)((c_caddr_t)ip + iphlen);
32972d33245SAdrian Chadd if (m->m_len < iphlen + sizeof(struct udphdr)) {
330e5562eb9SAdrian Chadd RSS_DEBUG("short UDP frame?\n");
33172d33245SAdrian Chadd return (-1);
33272d33245SAdrian Chadd }
33372d33245SAdrian Chadd return rss_proto_software_hash_v4(ip->ip_src, ip->ip_dst,
33472d33245SAdrian Chadd uh->uh_sport,
33572d33245SAdrian Chadd uh->uh_dport,
33672d33245SAdrian Chadd proto,
33772d33245SAdrian Chadd hashval,
33872d33245SAdrian Chadd hashtype);
339b2bdc62aSAdrian Chadd } else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV4) {
34072d33245SAdrian Chadd /* Default to 2-tuple hash */
34172d33245SAdrian Chadd return rss_proto_software_hash_v4(ip->ip_src, ip->ip_dst,
34272d33245SAdrian Chadd 0, /* source port */
34372d33245SAdrian Chadd 0, /* destination port */
34472d33245SAdrian Chadd 0, /* IPPROTO_IP */
34572d33245SAdrian Chadd hashval,
34672d33245SAdrian Chadd hashtype);
347f4659f4cSAdrian Chadd } else {
348e5562eb9SAdrian Chadd RSS_DEBUG("no available hashtypes!\n");
349f4659f4cSAdrian Chadd return (-1);
35072d33245SAdrian Chadd }
35172d33245SAdrian Chadd }
35272d33245SAdrian Chadd
35372d33245SAdrian Chadd /*
35472d33245SAdrian Chadd * Similar to rss_m2cpuid, but designed to be used by the IP NETISR
35572d33245SAdrian Chadd * on incoming frames.
35672d33245SAdrian Chadd *
35772d33245SAdrian Chadd * If an existing RSS hash exists and it matches what the configured
35872d33245SAdrian Chadd * hashing is, then use it.
35972d33245SAdrian Chadd *
36072d33245SAdrian Chadd * If there's an existing RSS hash but the desired hash is different,
36172d33245SAdrian Chadd * or if there's no useful RSS hash, then calculate it via
36272d33245SAdrian Chadd * the software path.
36372d33245SAdrian Chadd *
36472d33245SAdrian Chadd * XXX TODO: definitely want statistics here!
36572d33245SAdrian Chadd */
36672d33245SAdrian Chadd struct mbuf *
rss_soft_m2cpuid_v4(struct mbuf * m,uintptr_t source,u_int * cpuid)3672527ccadSAdrian Chadd rss_soft_m2cpuid_v4(struct mbuf *m, uintptr_t source, u_int *cpuid)
36872d33245SAdrian Chadd {
36972d33245SAdrian Chadd uint32_t hash_val, hash_type;
37072d33245SAdrian Chadd int ret;
37172d33245SAdrian Chadd
37272d33245SAdrian Chadd M_ASSERTPKTHDR(m);
37372d33245SAdrian Chadd
37472d33245SAdrian Chadd ret = rss_mbuf_software_hash_v4(m, RSS_HASH_PKT_INGRESS,
37572d33245SAdrian Chadd &hash_val, &hash_type);
37672d33245SAdrian Chadd if (ret > 0) {
37772d33245SAdrian Chadd /* mbuf has a valid hash already; don't need to modify it */
37872d33245SAdrian Chadd *cpuid = rss_hash2cpuid(m->m_pkthdr.flowid, M_HASHTYPE_GET(m));
37972d33245SAdrian Chadd } else if (ret == 0) {
38072d33245SAdrian Chadd /* hash was done; update */
38172d33245SAdrian Chadd m->m_pkthdr.flowid = hash_val;
38272d33245SAdrian Chadd M_HASHTYPE_SET(m, hash_type);
38372d33245SAdrian Chadd *cpuid = rss_hash2cpuid(m->m_pkthdr.flowid, M_HASHTYPE_GET(m));
38472d33245SAdrian Chadd } else { /* ret < 0 */
38572d33245SAdrian Chadd /* no hash was done */
38672d33245SAdrian Chadd *cpuid = NETISR_CPUID_NONE;
38772d33245SAdrian Chadd }
38872d33245SAdrian Chadd return (m);
38972d33245SAdrian Chadd }
390