191100Sdes/*-
2115619Sdes * Copyright (c) 2010-2011 Juniper Networks, Inc.
3228690Sdes * All rights reserved.
491100Sdes *
591100Sdes * This software was developed by Robert N. M. Watson under contract
691100Sdes * to Juniper Networks, Inc.
799158Sdes *
899158Sdes * Redistribution and use in source and binary forms, with or without
999158Sdes * modification, are permitted provided that the following conditions
1091100Sdes * are met:
1191100Sdes * 1. Redistributions of source code must retain the above copyright
1291100Sdes *    notice, this list of conditions and the following disclaimer.
1391100Sdes * 2. Redistributions in binary form must reproduce the above copyright
1491100Sdes *    notice, this list of conditions and the following disclaimer in the
1591100Sdes *    documentation and/or other materials provided with the distribution.
1691100Sdes *
1791100Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1891100Sdes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1991100Sdes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2091100Sdes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
2191100Sdes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2291100Sdes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2391100Sdes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2491100Sdes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2591100Sdes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2691100Sdes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2791100Sdes * SUCH DAMAGE.
2891100Sdes */
2991100Sdes
3091100Sdes
3191100Sdes#include "opt_inet6.h"
3291100Sdes
3391100Sdes#include <sys/param.h>
3491100Sdes#include <sys/mbuf.h>
35255376Sdes#include <sys/socket.h>
3691100Sdes#include <sys/priv.h>
3791100Sdes#include <sys/kernel.h>
38228690Sdes#include <sys/smp.h>
39228690Sdes#include <sys/sysctl.h>
40228690Sdes#include <sys/sbuf.h>
41228690Sdes
4291100Sdes#include <net/if.h>
4391100Sdes#include <net/if_var.h>
4491100Sdes#include <net/netisr.h>
4591100Sdes#include <net/rss_config.h>
4691100Sdes
4791100Sdes#include <netinet/in.h>
4891100Sdes#include <netinet/in_pcb.h>
4991100Sdes#include <netinet6/in6_rss.h>
50228690Sdes#include <netinet/in_var.h>
5191100Sdes
5291100Sdes/* for software rss hash support */
5391100Sdes#include <netinet/ip6.h>
5491100Sdes#include <netinet6/ip6_var.h>
5591100Sdes#include <netinet/tcp.h>
5691100Sdes#include <netinet/udp.h>
5791100Sdes
5891100Sdes/*
5991100Sdes * Hash an IPv6 2-tuple.
6091100Sdes */
6191100Sdesuint32_t
6291100Sdesrss_hash_ip6_2tuple(const struct in6_addr *src, const struct in6_addr *dst)
63228690Sdes{
6491100Sdes	uint8_t data[sizeof(*src) + sizeof(*dst)];
6591100Sdes	u_int datalen;
6691100Sdes
6791100Sdes	datalen = 0;
6891100Sdes	bcopy(src, &data[datalen], sizeof(*src));
6991100Sdes	datalen += sizeof(*src);
7091100Sdes	bcopy(dst, &data[datalen], sizeof(*dst));
7191100Sdes	datalen += sizeof(*dst);
7291100Sdes	return (rss_hash(datalen, data));
7391100Sdes}
7491100Sdes
75/*
76 * Hash an IPv6 4-tuple.
77 */
78uint32_t
79rss_hash_ip6_4tuple(const struct in6_addr *src, u_short srcport,
80    const struct in6_addr *dst, u_short dstport)
81{
82	uint8_t data[sizeof(*src) + sizeof(*dst) + sizeof(srcport) +
83	    sizeof(dstport)];
84	u_int datalen;
85
86	datalen = 0;
87	bcopy(src, &data[datalen], sizeof(*src));
88	datalen += sizeof(*src);
89	bcopy(dst, &data[datalen], sizeof(*dst));
90	datalen += sizeof(*dst);
91	bcopy(&srcport, &data[datalen], sizeof(srcport));
92	datalen += sizeof(srcport);
93	bcopy(&dstport, &data[datalen], sizeof(dstport));
94	datalen += sizeof(dstport);
95	return (rss_hash(datalen, data));
96}
97
98/*
99 * Calculate an appropriate ipv6 2-tuple or 4-tuple given the given
100 * IPv6 source/destination address, UDP or TCP source/destination ports
101 * and the protocol type.
102 *
103 * The protocol code may wish to do a software hash of the given
104 * tuple.  This depends upon the currently configured RSS hash types.
105 *
106 * This assumes that the packet in question isn't a fragment.
107 *
108 * It also assumes the packet source/destination address
109 * are in "incoming" packet order (ie, source is "far" address.)
110 */
111int
112rss_proto_software_hash_v6(const struct in6_addr *s, const struct in6_addr *d,
113    u_short sp, u_short dp, int proto,
114    uint32_t *hashval, uint32_t *hashtype)
115{
116	uint32_t hash;
117
118	/*
119	 * Next, choose the hash type depending upon the protocol
120	 * identifier.
121	 */
122	if ((proto == IPPROTO_TCP) &&
123	    (rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV6)) {
124		hash = rss_hash_ip6_4tuple(s, sp, d, dp);
125		*hashval = hash;
126		*hashtype = M_HASHTYPE_RSS_TCP_IPV6;
127		return (0);
128	} else if ((proto == IPPROTO_UDP) &&
129	    (rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV6)) {
130		hash = rss_hash_ip6_4tuple(s, sp, d, dp);
131		*hashval = hash;
132		*hashtype = M_HASHTYPE_RSS_UDP_IPV6;
133		return (0);
134	} else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) {
135		/* RSS doesn't hash on other protocols like SCTP; so 2-tuple */
136		hash = rss_hash_ip6_2tuple(s, d);
137		*hashval = hash;
138		*hashtype = M_HASHTYPE_RSS_IPV6;
139		return (0);
140	}
141
142	/* No configured available hashtypes! */
143	RSS_DEBUG("no available hashtypes!\n");
144	return (-1);
145}
146
147/*
148 * Calculate an appropriate ipv6 2-tuple or 4-tuple given the given
149 * IPv6 source/destination address, UDP or TCP source/destination ports
150 * and the protocol type.
151 *
152 * The protocol code may wish to do a software hash of the given
153 * tuple. This depends upon the currently configured RSS hash types.
154 *
155 * It assumes the packet source/destination address
156 * are in "outgoin" packet order (ie, destination is "far" address.)
157 */
158uint32_t
159xps_proto_software_hash_v6(const struct in6_addr *s, const struct in6_addr *d,
160    u_short sp, u_short dp, int proto, uint32_t *hashtype)
161{
162
163	uint32_t hash;
164
165	/*
166	 * Next, choose the hash type depending upon the protocol
167	 * identifier.
168	 */
169	if ((proto == IPPROTO_TCP) &&
170	    (rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV6)) {
171		hash = rss_hash_ip6_4tuple(d, dp, s, sp);
172		*hashtype = M_HASHTYPE_RSS_TCP_IPV6;
173		return (hash);
174	} else if ((proto == IPPROTO_UDP) &&
175	    (rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV6)) {
176		hash = rss_hash_ip6_4tuple(d, dp, s, sp);
177		*hashtype = M_HASHTYPE_RSS_UDP_IPV6;
178		return (hash);
179	} else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) {
180		/* RSS doesn't hash on other protocols like SCTP; so 2-tuple */
181		hash = rss_hash_ip6_2tuple(d, s);
182		*hashtype = M_HASHTYPE_RSS_IPV6;
183		return (hash);
184	}
185
186	*hashtype = M_HASHTYPE_NONE;
187	return (0);
188}
189
190
191/*
192 * Do a software calculation of the RSS for the given mbuf.
193 *
194 * This is typically used by the input path to recalculate the RSS after
195 * some form of packet processing (eg de-capsulation, IP fragment reassembly.)
196 *
197 * dir is the packet direction - RSS_HASH_PKT_INGRESS for incoming and
198 * RSS_HASH_PKT_EGRESS for outgoing.
199 *
200 * Returns 0 if a hash was done, -1 if no hash was done, +1 if
201 * the mbuf already had a valid RSS flowid.
202 *
203 * This function doesn't modify the mbuf.  It's up to the caller to
204 * assign flowid/flowtype as appropriate.
205 */
206int
207rss_mbuf_software_hash_v6(const struct mbuf *m, int dir, uint32_t *hashval,
208    uint32_t *hashtype)
209{
210	const struct ip6_hdr *ip6;
211	const struct ip6_frag *ip6f;
212	const struct tcphdr *th;
213	const struct udphdr *uh;
214	uint32_t flowtype;
215	uint8_t proto;
216	int off, newoff;
217	int nxt;
218
219	/*
220	 * XXX For now this only handles hashing on incoming mbufs.
221	 */
222	if (dir != RSS_HASH_PKT_INGRESS) {
223		RSS_DEBUG("called on EGRESS packet!\n");
224		return (-1);
225	}
226
227	off = sizeof(struct ip6_hdr);
228
229	/*
230	 * First, validate that the mbuf we have is long enough
231	 * to have an IPv6 header in it.
232	 */
233	if (m->m_pkthdr.len < off) {
234		RSS_DEBUG("short mbuf pkthdr\n");
235		return (-1);
236	}
237	if (m->m_len < off) {
238		RSS_DEBUG("short mbuf len\n");
239		return (-1);
240	}
241
242	/* Ok, let's dereference that */
243	ip6 = mtod(m, struct ip6_hdr *);
244	proto = ip6->ip6_nxt;
245
246	/*
247	 * Find the beginning of the TCP/UDP header.
248	 *
249	 * If this is a fragment then it shouldn't be four-tuple
250	 * hashed just yet.  Once it's reassembled into a full
251	 * frame it should be re-hashed.
252	 */
253	while (proto != IPPROTO_FRAGMENT) {
254		newoff = ip6_nexthdr(m, off, proto, &nxt);
255		if (newoff < 0)
256			break;
257		off = newoff;
258		proto = nxt;
259	}
260
261	/*
262	 * Ignore the fragment header if this is an "atomic" fragment
263	 * (offset and m bit set to 0)
264	 */
265	if (proto == IPPROTO_FRAGMENT) {
266		if (m->m_len < off + sizeof(struct ip6_frag)) {
267			RSS_DEBUG("short fragment frame?\n");
268			return (-1);
269		}
270		ip6f = (const struct ip6_frag *)((c_caddr_t)ip6 + off);
271		if ((ip6f->ip6f_offlg & ~IP6F_RESERVED_MASK) == 0) {
272			off = ip6_lasthdr(m, off, proto, &nxt);
273			if (off < 0) {
274				RSS_DEBUG("invalid extension header\n");
275				return (-1);
276			}
277			proto = nxt;
278		}
279	}
280
281	/*
282	 * If the mbuf flowid/flowtype matches the packet type,
283	 * and we don't support the 4-tuple version of the given protocol,
284	 * then signal to the owner that it can trust the flowid/flowtype
285	 * details.
286	 *
287	 * This is a little picky - eg, if TCPv6 / UDPv6 hashing
288	 * is supported but we got a TCP/UDP frame only 2-tuple hashed,
289	 * then we shouldn't just "trust" the 2-tuple hash.  We need
290	 * a 4-tuple hash.
291	 */
292	flowtype = M_HASHTYPE_GET(m);
293
294	if (flowtype != M_HASHTYPE_NONE) {
295		switch (proto) {
296		case IPPROTO_UDP:
297			if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV6) &&
298			    (flowtype == M_HASHTYPE_RSS_UDP_IPV6)) {
299				return (1);
300			}
301			/*
302			 * Only allow 2-tuple for UDP frames if we don't also
303			 * support 4-tuple for UDP.
304			 */
305			if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) &&
306			    ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV6) == 0) &&
307			    flowtype == M_HASHTYPE_RSS_IPV6) {
308				return (1);
309			}
310			break;
311		case IPPROTO_TCP:
312			if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV6) &&
313			    (flowtype == M_HASHTYPE_RSS_TCP_IPV6)) {
314				return (1);
315			}
316			/*
317			 * Only allow 2-tuple for TCP frames if we don't also
318			 * support 4-tuple for TCP.
319			 */
320			if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) &&
321			    ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV6) == 0) &&
322			    flowtype == M_HASHTYPE_RSS_IPV6) {
323				return (1);
324			}
325			break;
326		default:
327			if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) &&
328			    flowtype == M_HASHTYPE_RSS_IPV6) {
329				return (1);
330			}
331			break;
332		}
333	}
334
335	/*
336	 * Decode enough information to make a hash decision.
337	 */
338	if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_TCP_IPV6) &&
339	    (proto == IPPROTO_TCP)) {
340		if (m->m_len < off + sizeof(struct tcphdr)) {
341			RSS_DEBUG("short TCP frame?\n");
342			return (-1);
343		}
344		th = (const struct tcphdr *)((c_caddr_t)ip6 + off);
345		return rss_proto_software_hash_v6(&ip6->ip6_src, &ip6->ip6_dst,
346		    th->th_sport,
347		    th->th_dport,
348		    proto,
349		    hashval,
350		    hashtype);
351	} else if ((rss_gethashconfig() & RSS_HASHTYPE_RSS_UDP_IPV6) &&
352	    (proto == IPPROTO_UDP)) {
353		if (m->m_len < off + sizeof(struct udphdr)) {
354			RSS_DEBUG("short UDP frame?\n");
355			return (-1);
356		}
357		uh = (const struct udphdr *)((c_caddr_t)ip6 + off);
358		return rss_proto_software_hash_v6(&ip6->ip6_src, &ip6->ip6_dst,
359		    uh->uh_sport,
360		    uh->uh_dport,
361		    proto,
362		    hashval,
363		    hashtype);
364	} else if (rss_gethashconfig() & RSS_HASHTYPE_RSS_IPV6) {
365		/* Default to 2-tuple hash */
366		return rss_proto_software_hash_v6(&ip6->ip6_src, &ip6->ip6_dst,
367		    0,	/* source port */
368		    0,	/* destination port */
369		    0,	/* IPPROTO_IP */
370		    hashval,
371		    hashtype);
372	} else {
373		RSS_DEBUG("no available hashtypes!\n");
374		return (-1);
375	}
376}
377
378/*
379 * Similar to rss_m2cpuid, but designed to be used by the IPv6 NETISR
380 * on incoming frames.
381 *
382 * If an existing RSS hash exists and it matches what the configured
383 * hashing is, then use it.
384 *
385 * If there's an existing RSS hash but the desired hash is different,
386 * or if there's no useful RSS hash, then calculate it via
387 * the software path.
388 *
389 * XXX TODO: definitely want statistics here!
390 */
391struct mbuf *
392rss_soft_m2cpuid_v6(struct mbuf *m, uintptr_t source, u_int *cpuid)
393{
394	uint32_t hash_val, hash_type;
395	int ret;
396
397	M_ASSERTPKTHDR(m);
398
399	ret = rss_mbuf_software_hash_v6(m, RSS_HASH_PKT_INGRESS,
400	    &hash_val, &hash_type);
401	if (ret > 0) {
402		/* mbuf has a valid hash already; don't need to modify it */
403		*cpuid = rss_hash2cpuid(m->m_pkthdr.flowid, M_HASHTYPE_GET(m));
404	} else if (ret == 0) {
405		/* hash was done; update */
406		m->m_pkthdr.flowid = hash_val;
407		M_HASHTYPE_SET(m, hash_type);
408		*cpuid = rss_hash2cpuid(m->m_pkthdr.flowid, M_HASHTYPE_GET(m));
409	} else { /* ret < 0 */
410		/* no hash was done */
411		*cpuid = NETISR_CPUID_NONE;
412	}
413	return (m);
414}
415