xref: /illumos-gate/usr/src/uts/common/inet/tcp/tcp_opt_data.c (revision f808c858fa61e7769218966759510a8b1190dfcf)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include <sys/types.h>
29 #include <sys/stream.h>
30 #define	_SUN_TPI_VERSION 2
31 #include <sys/tihdr.h>
32 #include <sys/socket.h>
33 #include <sys/xti_xtiopt.h>
34 #include <sys/xti_inet.h>
35 
36 #include <inet/common.h>
37 #include <netinet/ip6.h>
38 #include <inet/ip.h>
39 
40 #include <netinet/in.h>
41 #include <netinet/tcp.h>
42 #include <inet/optcom.h>
43 
44 
45 extern int	tcp_opt_default(queue_t *q, int level, int name, uchar_t *ptr);
46 extern int	tcp_opt_get(queue_t *q, int level, int name, uchar_t *ptr);
47 extern int	tcp_opt_set(queue_t *q, uint_t optset_context, int level,
48     int name, uint_t inlen, uchar_t *invalp, uint_t *outlenp, uchar_t *outvalp,
49     void *thisdg_attrs, cred_t *cr, mblk_t *mblk);
50 
51 /*
52  * Table of all known options handled on a TCP protocol stack.
53  *
54  * Note: This table contains options processed by both TCP and IP levels
55  *       and is the superset of options that can be performed on a TCP over IP
56  *       stack.
57  */
58 opdes_t	tcp_opt_arr[] = {
59 
60 { SO_LINGER,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
61 	sizeof (struct linger), 0 },
62 
63 { SO_DEBUG,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
64 { SO_KEEPALIVE,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
65 { SO_DONTROUTE,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
66 { SO_USELOOPBACK, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0
67 	},
68 { SO_BROADCAST,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
69 { SO_REUSEADDR, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
70 { SO_OOBINLINE, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
71 { SO_TYPE,	SOL_SOCKET, OA_R, OA_R, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
72 { SO_SNDBUF,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
73 { SO_RCVBUF,	SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
74 { SO_DGRAM_ERRIND, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0
75 	},
76 { SO_SND_COPYAVOID, SOL_SOCKET, OA_RW, OA_RW, OP_NP, 0, sizeof (int), 0 },
77 { SO_ANON_MLP, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int),
78 	0 },
79 { SO_MAC_EXEMPT, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int),
80 	0 },
81 { SO_ALLZONES, SOL_SOCKET, OA_R, OA_RW, OP_CONFIG, OP_PASSNEXT, sizeof (int),
82 	0 },
83 { SO_EXCLBIND, SOL_SOCKET, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
84 
85 { TCP_NODELAY,	IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0
86 	},
87 { TCP_MAXSEG,	IPPROTO_TCP, OA_R, OA_R, OP_NP, OP_PASSNEXT, sizeof (uint_t),
88 	536 },
89 
90 { TCP_NOTIFY_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP,
91 	(OP_PASSNEXT|OP_DEF_FN), sizeof (int), -1 /* not initialized */ },
92 
93 { TCP_ABORT_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP,
94 	(OP_PASSNEXT|OP_DEF_FN), sizeof (int), -1 /* not initialized */ },
95 
96 { TCP_CONN_NOTIFY_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP,
97 	(OP_PASSNEXT|OP_DEF_FN), sizeof (int), -1 /* not initialized */ },
98 
99 { TCP_CONN_ABORT_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP,
100 	(OP_PASSNEXT|OP_DEF_FN), sizeof (int), -1 /* not initialized */ },
101 
102 { TCP_RECVDSTADDR, IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int),
103 	0 },
104 
105 { TCP_ANONPRIVBIND, IPPROTO_TCP, OA_R, OA_RW, OP_PRIVPORT, OP_PASSNEXT,
106 	sizeof (int), 0 },
107 
108 { TCP_EXCLBIND, IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0
109 	},
110 
111 { TCP_INIT_CWND, IPPROTO_TCP, OA_RW, OA_RW, OP_CONFIG, OP_PASSNEXT,
112 	sizeof (int), 0 },
113 
114 { TCP_KEEPALIVE_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
115 	sizeof (int), 0	},
116 
117 { TCP_KEEPALIVE_ABORT_THRESHOLD, IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
118 	sizeof (int), 0	},
119 
120 { TCP_CORK, IPPROTO_TCP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
121 
122 { IP_OPTIONS,	IPPROTO_IP, OA_RW, OA_RW, OP_NP,
123 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT),
124 	40, -1 /* not initialized */ },
125 { T_IP_OPTIONS,	IPPROTO_IP, OA_RW, OA_RW, OP_NP,
126 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT),
127 	40, -1 /* not initialized */ },
128 
129 { IP_TOS,	IPPROTO_IP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
130 { T_IP_TOS,	IPPROTO_IP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT, sizeof (int), 0 },
131 { IP_TTL,	IPPROTO_IP, OA_RW, OA_RW, OP_NP, (OP_PASSNEXT|OP_DEF_FN),
132 	sizeof (int), -1 /* not initialized */ },
133 
134 { IP_SEC_OPT, IPPROTO_IP, OA_RW, OA_RW, OP_NP, (OP_PASSNEXT|OP_NODEFAULT),
135 	sizeof (ipsec_req_t), -1 /* not initialized */ },
136 
137 { IP_BOUND_IF, IPPROTO_IP, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
138 	sizeof (int),	0 /* no ifindex */ },
139 
140 { IP_UNSPEC_SRC, IPPROTO_IP, OA_R, OA_RW, OP_RAW, OP_PASSNEXT,
141 	sizeof (int), 0 },
142 
143 { IPV6_UNICAST_HOPS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, (OP_PASSNEXT|OP_DEF_FN),
144 	sizeof (int), -1 /* not initialized */ },
145 
146 { IPV6_BOUND_IF, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
147 	sizeof (int),	0 /* no ifindex */ },
148 
149 { IP_NEXTHOP, IPPROTO_IP, OA_RW, OA_RW, OP_CONFIG, OP_PASSNEXT,
150 	sizeof (in_addr_t),	-1 /* not initialized  */ },
151 
152 { IPV6_BOUND_PIF, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
153 	sizeof (int),	0 /* no ifindex */ },
154 
155 { IPV6_UNSPEC_SRC, IPPROTO_IPV6, OA_R, OA_RW, OP_RAW, OP_PASSNEXT,
156 	sizeof (int), 0 },
157 
158 { IPV6_PKTINFO, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
159 	(OP_PASSNEXT|OP_NODEFAULT|OP_VARLEN),
160 	sizeof (struct in6_pktinfo), -1 /* not initialized */ },
161 { IPV6_NEXTHOP, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
162 	(OP_PASSNEXT|OP_NODEFAULT),
163 	sizeof (sin6_t), -1 /* not initialized */ },
164 { IPV6_HOPOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
165 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT), 255*8,
166 	-1 /* not initialized */ },
167 { IPV6_DSTOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
168 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT), 255*8,
169 	-1 /* not initialized */ },
170 { IPV6_RTHDRDSTOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
171 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT), 255*8,
172 	-1 /* not initialized */ },
173 { IPV6_RTHDR, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
174 	(OP_PASSNEXT|OP_VARLEN|OP_NODEFAULT), 255*8,
175 	-1 /* not initialized */ },
176 { IPV6_TCLASS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
177 	(OP_PASSNEXT|OP_NODEFAULT),
178 	sizeof (int), -1 /* not initialized */ },
179 { IPV6_PATHMTU, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP,
180 	(OP_PASSNEXT|OP_NODEFAULT),
181 	sizeof (struct ip6_mtuinfo), -1 /* not initialized */ },
182 { IPV6_USE_MIN_MTU, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
183 	sizeof (int), 0 },
184 { IPV6_V6ONLY, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
185 	sizeof (int), 0 },
186 
187 /* Enable receipt of ancillary data */
188 { IPV6_RECVPKTINFO, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
189 	sizeof (int), 0 },
190 { IPV6_RECVHOPLIMIT, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
191 	sizeof (int), 0 },
192 { IPV6_RECVHOPOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
193 	sizeof (int), 0 },
194 { _OLD_IPV6_RECVDSTOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
195 	sizeof (int), 0 },
196 { IPV6_RECVDSTOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
197 	sizeof (int), 0 },
198 { IPV6_RECVRTHDR, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
199 	sizeof (int), 0 },
200 { IPV6_RECVRTHDRDSTOPTS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
201 	sizeof (int), 0 },
202 { IPV6_RECVTCLASS, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
203 	sizeof (int), 0 },
204 
205 { IPV6_SEC_OPT, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, (OP_PASSNEXT|OP_NODEFAULT),
206 	sizeof (ipsec_req_t), -1 /* not initialized */ },
207 { IPV6_SRC_PREFERENCES, IPPROTO_IPV6, OA_RW, OA_RW, OP_NP, OP_PASSNEXT,
208 	sizeof (uint32_t), IPV6_PREFER_SRC_DEFAULT },
209 };
210 
211 /*
212  * Table of all supported levels
213  * Note: Some levels (e.g. XTI_GENERIC) may be valid but may not have
214  * any supported options so we need this info separately.
215  *
216  * This is needed only for topmost tpi providers and is used only by
217  * XTI interfaces.
218  */
219 optlevel_t	tcp_valid_levels_arr[] = {
220 	XTI_GENERIC,
221 	SOL_SOCKET,
222 	IPPROTO_TCP,
223 	IPPROTO_IP,
224 	IPPROTO_IPV6
225 };
226 
227 
228 #define	TCP_OPT_ARR_CNT		A_CNT(tcp_opt_arr)
229 #define	TCP_VALID_LEVELS_CNT	A_CNT(tcp_valid_levels_arr)
230 
231 uint_t tcp_max_optsize; /* initialized when TCP driver is loaded */
232 
233 /*
234  * Initialize option database object for TCP
235  *
236  * This object represents database of options to search passed to
237  * {sock,tpi}optcom_req() interface routine to take care of option
238  * management and associated methods.
239  */
240 
241 optdb_obj_t tcp_opt_obj = {
242 	tcp_opt_default,	/* TCP default value function pointer */
243 	tcp_opt_get,		/* TCP get function pointer */
244 	tcp_opt_set,		/* TCP set function pointer */
245 	B_TRUE,			/* TCP is tpi provider */
246 	TCP_OPT_ARR_CNT,	/* TCP option database count of entries */
247 	tcp_opt_arr,		/* TCP option database */
248 	TCP_VALID_LEVELS_CNT,	/* TCP valid level count of entries */
249 	tcp_valid_levels_arr	/* TCP valid level array */
250 };
251