cxgbe/t4_tom: Read the chip's DDP page sizes and save them in a
[freebsd-src.git] / sys / netinet / tcp_offload.c
blob60fd7e9761c259a6b30a46cd037d25d6f79a95d7
1 /*-
2 * Copyright (c) 2012 Chelsio Communications, Inc.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
30 #include "opt_inet.h"
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/types.h>
35 #include <sys/mbuf.h>
36 #include <sys/socket.h>
37 #include <sys/socketvar.h>
38 #include <sys/sockopt.h>
39 #include <net/if.h>
40 #include <net/if_var.h>
41 #include <net/route.h>
42 #include <netinet/in.h>
43 #include <netinet/in_pcb.h>
44 #include <netinet/tcp.h>
45 #include <netinet/tcp_offload.h>
46 #define TCPOUTFLAGS
47 #include <netinet/tcp_fsm.h>
48 #include <netinet/tcp_var.h>
49 #include <netinet/toecore.h>
51 int registered_toedevs;
54 * Provide an opportunity for a TOE driver to offload.
56 int
57 tcp_offload_connect(struct socket *so, struct sockaddr *nam)
59 struct ifnet *ifp;
60 struct toedev *tod;
61 struct rtentry *rt;
62 int error = EOPNOTSUPP;
64 INP_WLOCK_ASSERT(sotoinpcb(so));
65 KASSERT(nam->sa_family == AF_INET || nam->sa_family == AF_INET6,
66 ("%s: called with sa_family %d", __func__, nam->sa_family));
68 if (registered_toedevs == 0)
69 return (error);
71 rt = rtalloc1(nam, 0, 0);
72 if (rt)
73 RT_UNLOCK(rt);
74 else
75 return (EHOSTUNREACH);
77 ifp = rt->rt_ifp;
79 if (nam->sa_family == AF_INET && !(ifp->if_capenable & IFCAP_TOE4))
80 goto done;
81 if (nam->sa_family == AF_INET6 && !(ifp->if_capenable & IFCAP_TOE6))
82 goto done;
84 tod = TOEDEV(ifp);
85 if (tod != NULL)
86 error = tod->tod_connect(tod, so, rt, nam);
87 done:
88 RTFREE(rt);
89 return (error);
92 void
93 tcp_offload_listen_start(struct tcpcb *tp)
96 INP_WLOCK_ASSERT(tp->t_inpcb);
98 EVENTHANDLER_INVOKE(tcp_offload_listen_start, tp);
101 void
102 tcp_offload_listen_stop(struct tcpcb *tp)
105 INP_WLOCK_ASSERT(tp->t_inpcb);
107 EVENTHANDLER_INVOKE(tcp_offload_listen_stop, tp);
110 void
111 tcp_offload_input(struct tcpcb *tp, struct mbuf *m)
113 struct toedev *tod = tp->tod;
115 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
116 INP_WLOCK_ASSERT(tp->t_inpcb);
118 tod->tod_input(tod, tp, m);
122 tcp_offload_output(struct tcpcb *tp)
124 struct toedev *tod = tp->tod;
125 int error, flags;
127 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
128 INP_WLOCK_ASSERT(tp->t_inpcb);
130 flags = tcp_outflags[tp->t_state];
132 if (flags & TH_RST) {
133 /* XXX: avoid repeated calls like we do for FIN */
134 error = tod->tod_send_rst(tod, tp);
135 } else if ((flags & TH_FIN || tp->t_flags & TF_NEEDFIN) &&
136 (tp->t_flags & TF_SENTFIN) == 0) {
137 error = tod->tod_send_fin(tod, tp);
138 if (error == 0)
139 tp->t_flags |= TF_SENTFIN;
140 } else
141 error = tod->tod_output(tod, tp);
143 return (error);
146 void
147 tcp_offload_rcvd(struct tcpcb *tp)
149 struct toedev *tod = tp->tod;
151 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
152 INP_WLOCK_ASSERT(tp->t_inpcb);
154 tod->tod_rcvd(tod, tp);
157 void
158 tcp_offload_ctloutput(struct tcpcb *tp, int sopt_dir, int sopt_name)
160 struct toedev *tod = tp->tod;
162 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
163 INP_WLOCK_ASSERT(tp->t_inpcb);
165 tod->tod_ctloutput(tod, tp, sopt_dir, sopt_name);
168 void
169 tcp_offload_detach(struct tcpcb *tp)
171 struct toedev *tod = tp->tod;
173 KASSERT(tod != NULL, ("%s: tp->tod is NULL, tp %p", __func__, tp));
174 INP_WLOCK_ASSERT(tp->t_inpcb);
176 tod->tod_pcb_detach(tod, tp);