blob: 7769c9b36d75592ec11e9c9d679ac38482162bd0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -02002/*
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
6 *
7 * Definitions for inet_sock
8 *
9 * Authors: Many, reorganised here by
10 * Arnaldo Carvalho de Melo <acme@mandriva.com>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020011 */
12#ifndef _INET_SOCK_H
13#define _INET_SOCK_H
14
Tom Herbertc44d13d2015-01-05 13:56:15 -080015#include <linux/bitops.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020016#include <linux/string.h>
17#include <linux/types.h>
David S. Millerb3da2cf2007-03-23 11:40:27 -070018#include <linux/jhash.h>
Tom Herbertfec5e652010-04-16 16:01:27 -070019#include <linux/netdevice.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020020
21#include <net/flow.h>
22#include <net/sock.h>
23#include <net/request_sock.h>
Pavel Emelyanov0b441912008-06-16 17:14:11 -070024#include <net/netns/hash.h>
Eric Dumazetd34ac512015-03-12 16:44:05 -070025#include <net/tcp_states.h>
David Ahern6dd9a142015-12-16 13:20:44 -080026#include <net/l3mdev.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020027
28/** struct ip_options - IP Options
29 *
30 * @faddr - Saved first hop address
Li Weiac8a4812011-11-22 23:33:10 +000031 * @nexthop - Saved nexthop address in LSRR and SSRR
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020032 * @is_strictroute - Strict source route
33 * @srr_is_hit - Packet destination addr was our one
34 * @is_changed - IP checksum more not valid
35 * @rr_needaddr - Need to record addr of outgoing dev
36 * @ts_needtime - Need to record timestamp
37 * @ts_needaddr - Need to record addr of outgoing dev
38 */
39struct ip_options {
Al Viro3ca3c682006-09-27 18:28:07 -070040 __be32 faddr;
Li Weiac8a4812011-11-22 23:33:10 +000041 __be32 nexthop;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020042 unsigned char optlen;
43 unsigned char srr;
44 unsigned char rr;
45 unsigned char ts;
Denis V. Lunevef722492008-03-22 16:35:29 -070046 unsigned char is_strictroute:1,
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020047 srr_is_hit:1,
48 is_changed:1,
49 rr_needaddr:1,
50 ts_needtime:1,
51 ts_needaddr:1;
52 unsigned char router_alert;
Paul Moore11a03f72006-08-03 16:46:20 -070053 unsigned char cipso;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020054 unsigned char __pad2;
55 unsigned char __data[0];
56};
57
Eric Dumazetf6d8bd02011-04-21 09:45:37 +000058struct ip_options_rcu {
59 struct rcu_head rcu;
60 struct ip_options opt;
61};
62
63struct ip_options_data {
64 struct ip_options_rcu opt;
65 char data[40];
66};
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020067
68struct inet_request_sock {
69 struct request_sock req;
Eric Dumazet634fb9792013-10-09 15:21:29 -070070#define ir_loc_addr req.__req_common.skc_rcv_saddr
71#define ir_rmt_addr req.__req_common.skc_daddr
Eric Dumazetb44084c2013-10-10 00:04:37 -070072#define ir_num req.__req_common.skc_num
Eric Dumazet634fb9792013-10-09 15:21:29 -070073#define ir_rmt_port req.__req_common.skc_dport
74#define ir_v6_rmt_addr req.__req_common.skc_v6_daddr
75#define ir_v6_loc_addr req.__req_common.skc_v6_rcv_saddr
76#define ir_iif req.__req_common.skc_bound_dev_if
Eric Dumazet33cf7c92015-03-11 18:53:14 -070077#define ir_cookie req.__req_common.skc_cookie
78#define ireq_net req.__req_common.skc_net
Eric Dumazetd34ac512015-03-12 16:44:05 -070079#define ireq_state req.__req_common.skc_state
Eric Dumazet3f66b082015-03-12 16:44:10 -070080#define ireq_family req.__req_common.skc_family
Eric Dumazet634fb9792013-10-09 15:21:29 -070081
Vegard Nossum45e3ff82008-09-09 06:43:12 +020082 u16 snd_wscale : 4,
83 rcv_wscale : 4,
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020084 tstamp_ok : 1,
85 sack_ok : 1,
86 wscale_ok : 1,
87 ecn_ok : 1,
KOVACS Krisztian88ef4a52008-10-01 07:41:00 -070088 acked : 1,
Ursula Braun60e2a772017-10-25 11:01:45 +020089 no_srccheck: 1,
90 smc_ok : 1;
Eric Dumazetadc17d62015-03-16 21:06:18 -070091 u32 ir_mark;
Octavian Purdila476eab82014-06-25 17:09:52 +030092 union {
Eric Dumazetc92e8c02017-10-20 09:04:13 -070093 struct ip_options_rcu __rcu *ireq_opt;
Huw Davies56ac42b2016-06-27 15:05:28 -040094#if IS_ENABLED(CONFIG_IPV6)
95 struct {
96 struct ipv6_txoptions *ipv6_opt;
97 struct sk_buff *pktopts;
98 };
99#endif
Octavian Purdila476eab82014-06-25 17:09:52 +0300100 };
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200101};
102
103static inline struct inet_request_sock *inet_rsk(const struct request_sock *sk)
104{
105 return (struct inet_request_sock *)sk;
106}
107
Eric Dumazetadc17d62015-03-16 21:06:18 -0700108static inline u32 inet_request_mark(const struct sock *sk, struct sk_buff *skb)
Lorenzo Colitti84f39b02014-05-13 10:17:35 -0700109{
Eric Dumazetadc17d62015-03-16 21:06:18 -0700110 if (!sk->sk_mark && sock_net(sk)->ipv4.sysctl_tcp_fwmark_accept)
Lorenzo Colitti84f39b02014-05-13 10:17:35 -0700111 return skb->mark;
Eric Dumazetadc17d62015-03-16 21:06:18 -0700112
113 return sk->sk_mark;
Lorenzo Colitti84f39b02014-05-13 10:17:35 -0700114}
115
David Ahern6dd9a142015-12-16 13:20:44 -0800116static inline int inet_request_bound_dev_if(const struct sock *sk,
117 struct sk_buff *skb)
118{
119#ifdef CONFIG_NET_L3_MASTER_DEV
120 struct net *net = sock_net(sk);
121
122 if (!sk->sk_bound_dev_if && net->ipv4.sysctl_tcp_l3mdev_accept)
123 return l3mdev_master_ifindex_by_index(net, skb->skb_iif);
124#endif
125
126 return sk->sk_bound_dev_if;
127}
128
Robert Shearman3c82a212018-11-07 15:36:02 +0000129static inline int inet_sk_bound_l3mdev(const struct sock *sk)
130{
131#ifdef CONFIG_NET_L3_MASTER_DEV
132 struct net *net = sock_net(sk);
133
134 if (!net->ipv4.sysctl_tcp_l3mdev_accept)
135 return l3mdev_master_ifindex_by_index(net,
136 sk->sk_bound_dev_if);
137#endif
138
139 return 0;
140}
141
Mike Manninge7819052018-11-07 15:36:03 +0000142static inline bool inet_bound_dev_eq(bool l3mdev_accept, int bound_dev_if,
143 int dif, int sdif)
144{
145 if (!bound_dev_if)
146 return !sdif || l3mdev_accept;
147 return bound_dev_if == dif || bound_dev_if == sdif;
148}
149
Herbert Xu1470ddf2011-03-01 02:36:47 +0000150struct inet_cork {
151 unsigned int flags;
David S. Millerbdc712b2011-05-06 15:02:07 -0700152 __be32 addr;
Herbert Xu1470ddf2011-03-01 02:36:47 +0000153 struct ip_options *opt;
David S. Millerbdc712b2011-05-06 15:02:07 -0700154 unsigned int fragsize;
Herbert Xu1470ddf2011-03-01 02:36:47 +0000155 int length; /* Total length of all frames */
Eric Dumazet5640f762012-09-23 23:04:42 +0000156 struct dst_entry *dst;
Herbert Xu1470ddf2011-03-01 02:36:47 +0000157 u8 tx_flags;
Francesco Fuscoaa661582013-09-24 15:43:09 +0200158 __u8 ttl;
159 __s16 tos;
160 char priority;
Willem de Bruijnbec1f6f2018-04-26 13:42:17 -0400161 __u16 gso_size;
Jesus Sanchez-Palenciabc969a92018-07-03 15:42:49 -0700162 u64 transmit_time;
Herbert Xu1470ddf2011-03-01 02:36:47 +0000163};
164
David S. Millerbdc712b2011-05-06 15:02:07 -0700165struct inet_cork_full {
166 struct inet_cork base;
167 struct flowi fl;
168};
169
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200170struct ip_mc_socklist;
171struct ipv6_pinfo;
172struct rtable;
173
174/** struct inet_sock - representation of INET sockets
175 *
176 * @sk - ancestor class
177 * @pinet6 - pointer to IPv6 control block
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000178 * @inet_daddr - Foreign IPv4 addr
179 * @inet_rcv_saddr - Bound local IPv4 addr
180 * @inet_dport - Destination port
181 * @inet_num - Local port
182 * @inet_saddr - Sending source
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200183 * @uc_ttl - Unicast TTL
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000184 * @inet_sport - Source port
185 * @inet_id - ID counter for DF pkts
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200186 * @tos - TOS
187 * @mc_ttl - Multicasting TTL
188 * @is_icsk - is this an inet_connection_sock?
Erich E. Hoover76e21052012-02-08 09:11:07 +0000189 * @uc_index - Unicast outgoing device index
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200190 * @mc_index - Multicast device index
191 * @mc_list - Group array
192 * @cork - info to build ip hdr on each ip frag while socket is corked
193 */
194struct inet_sock {
195 /* sk and pinet6 has to be the first two members of inet_sock */
196 struct sock sk;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000197#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200198 struct ipv6_pinfo *pinet6;
199#endif
200 /* Socket demultiplex comparisons on incoming packets. */
Eric Dumazet68835ab2010-11-30 19:04:07 +0000201#define inet_daddr sk.__sk_common.skc_daddr
202#define inet_rcv_saddr sk.__sk_common.skc_rcv_saddr
Eric Dumazetce43b032012-11-30 09:49:27 +0000203#define inet_dport sk.__sk_common.skc_dport
204#define inet_num sk.__sk_common.skc_num
Eric Dumazet68835ab2010-11-30 19:04:07 +0000205
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000206 __be32 inet_saddr;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200207 __s16 uc_ttl;
208 __u16 cmsg_flags;
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000209 __be16 inet_sport;
210 __u16 inet_id;
Stephen Hemmingerd218d112010-01-11 16:28:01 -0800211
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000212 struct ip_options_rcu __rcu *inet_opt;
Eric Dumazetce43b032012-11-30 09:49:27 +0000213 int rx_dst_ifindex;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200214 __u8 tos;
Stephen Hemmingerd218d112010-01-11 16:28:01 -0800215 __u8 min_ttl;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200216 __u8 mc_ttl;
217 __u8 pmtudisc;
218 __u8 recverr:1,
219 is_icsk:1,
220 freebind:1,
221 hdrincl:1,
KOVACS Krisztianf5715ae2008-10-01 07:30:02 -0700222 mc_loop:1,
Nivedita Singhvif771bef2009-05-28 07:00:46 +0000223 transparent:1,
Jiri Olsa7b2ff182010-06-15 01:07:31 +0000224 mc_all:1,
225 nodefrag:1;
Wei Wang19f6d3f2017-01-23 10:59:22 -0800226 __u8 bind_address_no_port:1,
227 defer_connect:1; /* Indicates that fastopen_connect is set
228 * and cookie exists so we defer connect
229 * until first data frame is written
230 */
Jiri Benc4c507d22012-02-09 09:35:49 +0000231 __u8 rcv_tos;
Tom Herbert224d0192015-01-05 13:56:14 -0800232 __u8 convert_csum;
Erich E. Hoover76e21052012-02-08 09:11:07 +0000233 int uc_index;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200234 int mc_index;
Al Viro011a9262006-09-26 21:27:35 -0700235 __be32 mc_addr;
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000236 struct ip_mc_socklist __rcu *mc_list;
David S. Millerbdc712b2011-05-06 15:02:07 -0700237 struct inet_cork_full cork;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200238};
239
240#define IPCORK_OPT 1 /* ip-options has been held in ipcork.opt */
241#define IPCORK_ALLFRAG 2 /* always fragment (for ipv6 for now) */
242
Tom Herbertc44d13d2015-01-05 13:56:15 -0800243/* cmsg flags for inet */
244#define IP_CMSG_PKTINFO BIT(0)
245#define IP_CMSG_TTL BIT(1)
246#define IP_CMSG_TOS BIT(2)
247#define IP_CMSG_RECVOPTS BIT(3)
248#define IP_CMSG_RETOPTS BIT(4)
249#define IP_CMSG_PASSSEC BIT(5)
250#define IP_CMSG_ORIGDSTADDR BIT(6)
Tom Herbertad6f9392015-01-05 13:56:17 -0800251#define IP_CMSG_CHECKSUM BIT(7)
Willem de Bruijn70ecc242016-11-02 11:02:16 -0400252#define IP_CMSG_RECVFRAGSIZE BIT(8)
Tom Herbertc44d13d2015-01-05 13:56:15 -0800253
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800254/**
255 * sk_to_full_sk - Access to a full socket
256 * @sk: pointer to a socket
257 *
258 * SYNACK messages might be attached to request sockets.
Eric Dumazet54abc682015-11-08 10:54:07 -0800259 * Some places want to reach the listener in this case.
260 */
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800261static inline struct sock *sk_to_full_sk(struct sock *sk)
Eric Dumazet54abc682015-11-08 10:54:07 -0800262{
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800263#ifdef CONFIG_INET
Eric Dumazet54abc682015-11-08 10:54:07 -0800264 if (sk && sk->sk_state == TCP_NEW_SYN_RECV)
265 sk = inet_reqsk(sk)->rsk_listener;
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800266#endif
Eric Dumazet54abc682015-11-08 10:54:07 -0800267 return sk;
268}
269
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800270/* sk_to_full_sk() variant with a const argument */
271static inline const struct sock *sk_const_to_full_sk(const struct sock *sk)
272{
273#ifdef CONFIG_INET
274 if (sk && sk->sk_state == TCP_NEW_SYN_RECV)
275 sk = ((const struct request_sock *)sk)->rsk_listener;
276#endif
277 return sk;
278}
279
280static inline struct sock *skb_to_full_sk(const struct sk_buff *skb)
281{
282 return sk_to_full_sk(skb->sk);
283}
284
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200285static inline struct inet_sock *inet_sk(const struct sock *sk)
286{
287 return (struct inet_sock *)sk;
288}
289
290static inline void __inet_sk_copy_descendant(struct sock *sk_to,
291 const struct sock *sk_from,
292 const int ancestor_size)
293{
294 memcpy(inet_sk(sk_to) + 1, inet_sk(sk_from) + 1,
295 sk_from->sk_prot->obj_size - ancestor_size);
296}
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000297#if !(IS_ENABLED(CONFIG_IPV6))
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200298static inline void inet_sk_copy_descendant(struct sock *sk_to,
299 const struct sock *sk_from)
300{
301 __inet_sk_copy_descendant(sk_to, sk_from, sizeof(struct inet_sock));
302}
303#endif
304
Joe Perches1fd51152013-09-21 10:22:41 -0700305int inet_sk_rebuild_header(struct sock *sk);
Yafang Shao986ffdf2017-12-20 11:12:52 +0800306
307/**
308 * inet_sk_state_load - read sk->sk_state for lockless contexts
309 * @sk: socket pointer
310 *
311 * Paired with inet_sk_state_store(). Used in places we don't hold socket lock:
312 * tcp_diag_get_info(), tcp_get_info(), tcp_poll(), get_tcp4_sock() ...
313 */
314static inline int inet_sk_state_load(const struct sock *sk)
315{
316 /* state change might impact lockless readers. */
317 return smp_load_acquire(&sk->sk_state);
318}
319
320/**
321 * inet_sk_state_store - update sk->sk_state
322 * @sk: socket pointer
323 * @newstate: new state
324 *
325 * Paired with inet_sk_state_load(). Should be used in contexts where
326 * state change might impact lockless readers.
327 */
Yafang Shao563e0bb2017-12-20 11:12:51 +0800328void inet_sk_state_store(struct sock *sk, int newstate);
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200329
Yafang Shao986ffdf2017-12-20 11:12:52 +0800330void inet_sk_set_state(struct sock *sk, int state);
331
Hannes Frederic Sowa65cd8032013-10-19 21:48:51 +0200332static inline unsigned int __inet_ehashfn(const __be32 laddr,
333 const __u16 lport,
334 const __be32 faddr,
335 const __be16 fport,
336 u32 initval)
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200337{
David S. Miller7adc3832008-03-04 14:28:41 -0800338 return jhash_3words((__force __u32) laddr,
339 (__force __u32) faddr,
David S. Millerb3da2cf2007-03-23 11:40:27 -0700340 ((__u32) lport) << 16 | (__force __u32)fport,
Hannes Frederic Sowa65cd8032013-10-19 21:48:51 +0200341 initval);
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200342}
343
Eric Dumazete49bb332015-03-17 18:32:27 -0700344struct request_sock *inet_reqsk_alloc(const struct request_sock_ops *ops,
Eric Dumazeta1a53442015-10-04 21:08:11 -0700345 struct sock *sk_listener,
346 bool attach_listener);
Arnaldo Carvalho de Meloce4a7d02008-06-10 12:39:35 -0700347
KOVACS Krisztian88ef4a52008-10-01 07:41:00 -0700348static inline __u8 inet_sk_flowi_flags(const struct sock *sk)
349{
David S. Millera4daad62011-01-27 22:01:53 -0800350 __u8 flags = 0;
351
Julian Anastasov47670b72011-08-07 09:16:09 +0000352 if (inet_sk(sk)->transparent || inet_sk(sk)->hdrincl)
David S. Millera4daad62011-01-27 22:01:53 -0800353 flags |= FLOWI_FLAG_ANYSRC;
David S. Millera4daad62011-01-27 22:01:53 -0800354 return flags;
KOVACS Krisztian88ef4a52008-10-01 07:41:00 -0700355}
356
Tom Herbert224d0192015-01-05 13:56:14 -0800357static inline void inet_inc_convert_csum(struct sock *sk)
358{
359 inet_sk(sk)->convert_csum++;
360}
361
362static inline void inet_dec_convert_csum(struct sock *sk)
363{
364 if (inet_sk(sk)->convert_csum > 0)
365 inet_sk(sk)->convert_csum--;
366}
367
368static inline bool inet_get_convert_csum(struct sock *sk)
369{
370 return !!inet_sk(sk)->convert_csum;
371}
372
Vincent Bernat83ba4642018-07-31 21:18:11 +0200373
374static inline bool inet_can_nonlocal_bind(struct net *net,
375 struct inet_sock *inet)
376{
377 return net->ipv4.sysctl_ip_nonlocal_bind ||
378 inet->freebind || inet->transparent;
379}
380
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200381#endif /* _INET_SOCK_H */