blob: a3702d1d48754fbc23b9789f32e1a72d45f5ecf1 [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;
Gustavo A. R. Silva48b77df2020-03-02 06:07:42 -060055 unsigned char __data[];
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020056};
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;
Willem de Bruijnc6af0c22019-09-11 15:50:51 -0400163 u32 mark;
Herbert Xu1470ddf2011-03-01 02:36:47 +0000164};
165
David S. Millerbdc712b2011-05-06 15:02:07 -0700166struct inet_cork_full {
167 struct inet_cork base;
168 struct flowi fl;
169};
170
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200171struct ip_mc_socklist;
172struct ipv6_pinfo;
173struct rtable;
174
175/** struct inet_sock - representation of INET sockets
176 *
177 * @sk - ancestor class
178 * @pinet6 - pointer to IPv6 control block
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000179 * @inet_daddr - Foreign IPv4 addr
180 * @inet_rcv_saddr - Bound local IPv4 addr
181 * @inet_dport - Destination port
182 * @inet_num - Local port
183 * @inet_saddr - Sending source
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200184 * @uc_ttl - Unicast TTL
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000185 * @inet_sport - Source port
186 * @inet_id - ID counter for DF pkts
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200187 * @tos - TOS
188 * @mc_ttl - Multicasting TTL
189 * @is_icsk - is this an inet_connection_sock?
Erich E. Hoover76e21052012-02-08 09:11:07 +0000190 * @uc_index - Unicast outgoing device index
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200191 * @mc_index - Multicast device index
192 * @mc_list - Group array
193 * @cork - info to build ip hdr on each ip frag while socket is corked
194 */
195struct inet_sock {
196 /* sk and pinet6 has to be the first two members of inet_sock */
197 struct sock sk;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000198#if IS_ENABLED(CONFIG_IPV6)
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200199 struct ipv6_pinfo *pinet6;
200#endif
201 /* Socket demultiplex comparisons on incoming packets. */
Eric Dumazet68835ab2010-11-30 19:04:07 +0000202#define inet_daddr sk.__sk_common.skc_daddr
203#define inet_rcv_saddr sk.__sk_common.skc_rcv_saddr
Eric Dumazetce43b032012-11-30 09:49:27 +0000204#define inet_dport sk.__sk_common.skc_dport
205#define inet_num sk.__sk_common.skc_num
Eric Dumazet68835ab2010-11-30 19:04:07 +0000206
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000207 __be32 inet_saddr;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200208 __s16 uc_ttl;
209 __u16 cmsg_flags;
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000210 __be16 inet_sport;
211 __u16 inet_id;
Stephen Hemmingerd218d112010-01-11 16:28:01 -0800212
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000213 struct ip_options_rcu __rcu *inet_opt;
Eric Dumazetce43b032012-11-30 09:49:27 +0000214 int rx_dst_ifindex;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200215 __u8 tos;
Stephen Hemmingerd218d112010-01-11 16:28:01 -0800216 __u8 min_ttl;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200217 __u8 mc_ttl;
218 __u8 pmtudisc;
219 __u8 recverr:1,
220 is_icsk:1,
221 freebind:1,
222 hdrincl:1,
KOVACS Krisztianf5715ae2008-10-01 07:30:02 -0700223 mc_loop:1,
Nivedita Singhvif771bef2009-05-28 07:00:46 +0000224 transparent:1,
Jiri Olsa7b2ff182010-06-15 01:07:31 +0000225 mc_all:1,
226 nodefrag:1;
Wei Wang19f6d3f2017-01-23 10:59:22 -0800227 __u8 bind_address_no_port:1,
Willem de Bruijneba75c52020-07-10 09:29:02 -0400228 recverr_rfc4884:1,
Wei Wang19f6d3f2017-01-23 10:59:22 -0800229 defer_connect:1; /* Indicates that fastopen_connect is set
230 * and cookie exists so we defer connect
231 * until first data frame is written
232 */
Jiri Benc4c507d22012-02-09 09:35:49 +0000233 __u8 rcv_tos;
Tom Herbert224d0192015-01-05 13:56:14 -0800234 __u8 convert_csum;
Erich E. Hoover76e21052012-02-08 09:11:07 +0000235 int uc_index;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200236 int mc_index;
Al Viro011a9262006-09-26 21:27:35 -0700237 __be32 mc_addr;
Eric Dumazet1d7138d2010-11-12 05:46:50 +0000238 struct ip_mc_socklist __rcu *mc_list;
David S. Millerbdc712b2011-05-06 15:02:07 -0700239 struct inet_cork_full cork;
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200240};
241
242#define IPCORK_OPT 1 /* ip-options has been held in ipcork.opt */
243#define IPCORK_ALLFRAG 2 /* always fragment (for ipv6 for now) */
244
Tom Herbertc44d13d2015-01-05 13:56:15 -0800245/* cmsg flags for inet */
246#define IP_CMSG_PKTINFO BIT(0)
247#define IP_CMSG_TTL BIT(1)
248#define IP_CMSG_TOS BIT(2)
249#define IP_CMSG_RECVOPTS BIT(3)
250#define IP_CMSG_RETOPTS BIT(4)
251#define IP_CMSG_PASSSEC BIT(5)
252#define IP_CMSG_ORIGDSTADDR BIT(6)
Tom Herbertad6f9392015-01-05 13:56:17 -0800253#define IP_CMSG_CHECKSUM BIT(7)
Willem de Bruijn70ecc242016-11-02 11:02:16 -0400254#define IP_CMSG_RECVFRAGSIZE BIT(8)
Tom Herbertc44d13d2015-01-05 13:56:15 -0800255
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800256/**
257 * sk_to_full_sk - Access to a full socket
258 * @sk: pointer to a socket
259 *
260 * SYNACK messages might be attached to request sockets.
Eric Dumazet54abc682015-11-08 10:54:07 -0800261 * Some places want to reach the listener in this case.
262 */
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800263static inline struct sock *sk_to_full_sk(struct sock *sk)
Eric Dumazet54abc682015-11-08 10:54:07 -0800264{
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800265#ifdef CONFIG_INET
Eric Dumazet54abc682015-11-08 10:54:07 -0800266 if (sk && sk->sk_state == TCP_NEW_SYN_RECV)
267 sk = inet_reqsk(sk)->rsk_listener;
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800268#endif
Eric Dumazet54abc682015-11-08 10:54:07 -0800269 return sk;
270}
271
Eric Dumazetbd5eb352015-12-07 08:53:17 -0800272/* sk_to_full_sk() variant with a const argument */
273static inline const struct sock *sk_const_to_full_sk(const struct sock *sk)
274{
275#ifdef CONFIG_INET
276 if (sk && sk->sk_state == TCP_NEW_SYN_RECV)
277 sk = ((const struct request_sock *)sk)->rsk_listener;
278#endif
279 return sk;
280}
281
282static inline struct sock *skb_to_full_sk(const struct sk_buff *skb)
283{
284 return sk_to_full_sk(skb->sk);
285}
286
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200287static inline struct inet_sock *inet_sk(const struct sock *sk)
288{
289 return (struct inet_sock *)sk;
290}
291
292static inline void __inet_sk_copy_descendant(struct sock *sk_to,
293 const struct sock *sk_from,
294 const int ancestor_size)
295{
296 memcpy(inet_sk(sk_to) + 1, inet_sk(sk_from) + 1,
297 sk_from->sk_prot->obj_size - ancestor_size);
298}
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000299#if !(IS_ENABLED(CONFIG_IPV6))
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200300static inline void inet_sk_copy_descendant(struct sock *sk_to,
301 const struct sock *sk_from)
302{
303 __inet_sk_copy_descendant(sk_to, sk_from, sizeof(struct inet_sock));
304}
305#endif
306
Joe Perches1fd51152013-09-21 10:22:41 -0700307int inet_sk_rebuild_header(struct sock *sk);
Yafang Shao986ffdf2017-12-20 11:12:52 +0800308
309/**
310 * inet_sk_state_load - read sk->sk_state for lockless contexts
311 * @sk: socket pointer
312 *
313 * Paired with inet_sk_state_store(). Used in places we don't hold socket lock:
314 * tcp_diag_get_info(), tcp_get_info(), tcp_poll(), get_tcp4_sock() ...
315 */
316static inline int inet_sk_state_load(const struct sock *sk)
317{
318 /* state change might impact lockless readers. */
319 return smp_load_acquire(&sk->sk_state);
320}
321
322/**
323 * inet_sk_state_store - update sk->sk_state
324 * @sk: socket pointer
325 * @newstate: new state
326 *
327 * Paired with inet_sk_state_load(). Should be used in contexts where
328 * state change might impact lockless readers.
329 */
Yafang Shao563e0bb2017-12-20 11:12:51 +0800330void inet_sk_state_store(struct sock *sk, int newstate);
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200331
Yafang Shao986ffdf2017-12-20 11:12:52 +0800332void inet_sk_set_state(struct sock *sk, int state);
333
Hannes Frederic Sowa65cd8032013-10-19 21:48:51 +0200334static inline unsigned int __inet_ehashfn(const __be32 laddr,
335 const __u16 lport,
336 const __be32 faddr,
337 const __be16 fport,
338 u32 initval)
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200339{
David S. Miller7adc3832008-03-04 14:28:41 -0800340 return jhash_3words((__force __u32) laddr,
341 (__force __u32) faddr,
David S. Millerb3da2cf2007-03-23 11:40:27 -0700342 ((__u32) lport) << 16 | (__force __u32)fport,
Hannes Frederic Sowa65cd8032013-10-19 21:48:51 +0200343 initval);
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200344}
345
Eric Dumazete49bb332015-03-17 18:32:27 -0700346struct request_sock *inet_reqsk_alloc(const struct request_sock_ops *ops,
Eric Dumazeta1a53442015-10-04 21:08:11 -0700347 struct sock *sk_listener,
348 bool attach_listener);
Arnaldo Carvalho de Meloce4a7d02008-06-10 12:39:35 -0700349
KOVACS Krisztian88ef4a52008-10-01 07:41:00 -0700350static inline __u8 inet_sk_flowi_flags(const struct sock *sk)
351{
David S. Millera4daad62011-01-27 22:01:53 -0800352 __u8 flags = 0;
353
Julian Anastasov47670b72011-08-07 09:16:09 +0000354 if (inet_sk(sk)->transparent || inet_sk(sk)->hdrincl)
David S. Millera4daad62011-01-27 22:01:53 -0800355 flags |= FLOWI_FLAG_ANYSRC;
David S. Millera4daad62011-01-27 22:01:53 -0800356 return flags;
KOVACS Krisztian88ef4a52008-10-01 07:41:00 -0700357}
358
Tom Herbert224d0192015-01-05 13:56:14 -0800359static inline void inet_inc_convert_csum(struct sock *sk)
360{
361 inet_sk(sk)->convert_csum++;
362}
363
364static inline void inet_dec_convert_csum(struct sock *sk)
365{
366 if (inet_sk(sk)->convert_csum > 0)
367 inet_sk(sk)->convert_csum--;
368}
369
370static inline bool inet_get_convert_csum(struct sock *sk)
371{
372 return !!inet_sk(sk)->convert_csum;
373}
374
Vincent Bernat83ba4642018-07-31 21:18:11 +0200375
376static inline bool inet_can_nonlocal_bind(struct net *net,
377 struct inet_sock *inet)
378{
379 return net->ipv4.sysctl_ip_nonlocal_bind ||
380 inet->freebind || inet->transparent;
381}
382
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -0200383#endif /* _INET_SOCK_H */