Blame view

include/net/ip.h 13.8 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
  /*
   * INET		An implementation of the TCP/IP protocol suite for the LINUX
   *		operating system.  INET is implemented using the  BSD Socket
   *		interface as the means of communication with the user level.
   *
   *		Definitions for the IP module.
   *
   * Version:	@(#)ip.h	1.0.2	05/07/93
   *
02c30a84e   Jesper Juhl   [PATCH] update Ro...
10
   * Authors:	Ross Biro
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
14
15
16
17
18
19
20
21
22
23
   *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
   *		Alan Cox, <gw4pts@gw4pts.ampr.org>
   *
   * Changes:
   *		Mike McLagan    :       Routing by source
   *
   *		This program is free software; you can redistribute it and/or
   *		modify it under the terms of the GNU General Public License
   *		as published by the Free Software Foundation; either version
   *		2 of the License, or (at your option) any later version.
   */
  #ifndef _IP_H
  #define _IP_H
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  #include <linux/types.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
  #include <linux/ip.h>
  #include <linux/in.h>
c9bdd4b52   Arnaldo Carvalho de Melo   [IP]: Introduce i...
27
  #include <linux/skbuff.h>
14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
28
29
  
  #include <net/inet_sock.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
  #include <net/snmp.h>
86b08d867   KOVACS Krisztian   ipv4: Make Netfil...
31
  #include <net/flow.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
  
  struct sock;
fd2c3ef76   Eric Dumazet   net: cleanup incl...
34
  struct inet_skb_parm {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
35
36
  	struct ip_options	opt;		/* Compiled IP options		*/
  	unsigned char		flags;
8cdfab8a4   Patrick McHardy   [IPV4]: reset IPC...
37
38
  #define IPSKB_FORWARDED		1
  #define IPSKB_XFRM_TUNNEL_SIZE	2
3e3850e98   Patrick McHardy   [NETFILTER]: Fix ...
39
40
  #define IPSKB_XFRM_TRANSFORMED	4
  #define IPSKB_FRAG_COMPLETE	8
48d5cad87   Patrick McHardy   [XFRM]: Fix SNAT-...
41
  #define IPSKB_REROUTED		16
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
  };
c9bdd4b52   Arnaldo Carvalho de Melo   [IP]: Introduce i...
43
44
  static inline unsigned int ip_hdrlen(const struct sk_buff *skb)
  {
eddc9ec53   Arnaldo Carvalho de Melo   [SK_BUFF]: Introd...
45
  	return ip_hdr(skb)->ihl * 4;
c9bdd4b52   Arnaldo Carvalho de Melo   [IP]: Introduce i...
46
  }
fd2c3ef76   Eric Dumazet   net: cleanup incl...
47
  struct ipcm_cookie {
c1d18f9fa   Al Viro   [IPV4]: struct ip...
48
  	__be32			addr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
  	int			oif;
f6d8bd051   Eric Dumazet   inet: add RCU pro...
50
  	struct ip_options_rcu	*opt;
2244d07bf   Oliver Hartkopp   net: simplify fla...
51
  	__u8			tx_flags;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
  };
  
  #define IPCB(skb) ((struct inet_skb_parm*)((skb)->cb))
fd2c3ef76   Eric Dumazet   net: cleanup incl...
55
  struct ip_ra_chain {
43a951e99   Eric Dumazet   ipv4: add __rcu a...
56
  	struct ip_ra_chain __rcu *next;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
  	struct sock		*sk;
592fcb9df   Eric Dumazet   ip: ip_ra_control...
58
59
60
61
  	union {
  		void			(*destructor)(struct sock *);
  		struct sock		*saved_sk;
  	};
66018506e   Eric Dumazet   ip: Router Alert ...
62
  	struct rcu_head		rcu;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
63
  };
43a951e99   Eric Dumazet   ipv4: add __rcu a...
64
  extern struct ip_ra_chain __rcu *ip_ra_chain;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
70
71
72
  
  /* IP flags. */
  #define IP_CE		0x8000		/* Flag: "Congestion"		*/
  #define IP_DF		0x4000		/* Flag: "Don't Fragment"	*/
  #define IP_MF		0x2000		/* Flag: "More Fragments"	*/
  #define IP_OFFSET	0x1FFF		/* "Fragment Offset" part	*/
  
  #define IP_FRAG_TIME	(30 * HZ)		/* fragment lifetime	*/
14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
73
74
75
76
  struct msghdr;
  struct net_device;
  struct packet_type;
  struct rtable;
14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
77
  struct sockaddr;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
78
79
80
81
82
83
84
  extern int		igmp_mc_proc_init(void);
  
  /*
   *	Functions provided by ip.c
   */
  
  extern int		ip_build_and_send_pkt(struct sk_buff *skb, struct sock *sk,
13d8eaa06   Al Viro   [IPV4]: ip_build_...
85
  					      __be32 saddr, __be32 daddr,
f6d8bd051   Eric Dumazet   inet: add RCU pro...
86
  					      struct ip_options_rcu *opt);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
87
  extern int		ip_rcv(struct sk_buff *skb, struct net_device *dev,
f2ccd8fa0   David S. Miller   [NET]: Kill skb->...
88
  			       struct packet_type *pt, struct net_device *orig_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
91
92
  extern int		ip_local_deliver(struct sk_buff *skb);
  extern int		ip_mr_input(struct sk_buff *skb);
  extern int		ip_output(struct sk_buff *skb);
  extern int		ip_mc_output(struct sk_buff *skb);
2e2f7aefa   Patrick McHardy   [NETFILTER]: Fix ...
93
  extern int		ip_fragment(struct sk_buff *skb, int (*output)(struct sk_buff *));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
94
95
  extern int		ip_do_nat(struct sk_buff *skb);
  extern void		ip_send_check(struct iphdr *ip);
c439cb2e4   Herbert Xu   [IPV4]: Add ip_lo...
96
97
  extern int		__ip_local_out(struct sk_buff *skb);
  extern int		ip_local_out(struct sk_buff *skb);
d9d8da805   David S. Miller   inet: Pass flowi ...
98
  extern int		ip_queue_xmit(struct sk_buff *skb, struct flowi *fl);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  extern void		ip_init(void);
f5fca6086   David S. Miller   ipv4: Pass flow k...
100
  extern int		ip_append_data(struct sock *sk, struct flowi4 *fl4,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
102
103
104
  				       int getfrag(void *from, char *to, int offset, int len,
  						   int odd, struct sk_buff *skb),
  				void *from, int len, int protolen,
  				struct ipcm_cookie *ipc,
2e77d89b2   Eric Dumazet   net: avoid a pair...
105
  				struct rtable **rt,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
  				unsigned int flags);
  extern int		ip_generic_getfrag(void *from, char *to, int offset, int len, int odd, struct sk_buff *skb);
f5fca6086   David S. Miller   ipv4: Pass flow k...
108
  extern ssize_t		ip_append_page(struct sock *sk, struct flowi4 *fl4, struct page *page,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
  				int offset, size_t size, int flags);
1c32c5ad6   Herbert Xu   inet: Add ip_make...
110
  extern struct sk_buff  *__ip_make_skb(struct sock *sk,
77968b782   David S. Miller   ipv4: Pass flow k...
111
  				      struct flowi4 *fl4,
1c32c5ad6   Herbert Xu   inet: Add ip_make...
112
113
114
  				      struct sk_buff_head *queue,
  				      struct inet_cork *cork);
  extern int		ip_send_skb(struct sk_buff *skb);
77968b782   David S. Miller   ipv4: Pass flow k...
115
  extern int		ip_push_pending_frames(struct sock *sk, struct flowi4 *fl4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
116
  extern void		ip_flush_pending_frames(struct sock *sk);
1c32c5ad6   Herbert Xu   inet: Add ip_make...
117
  extern struct sk_buff  *ip_make_skb(struct sock *sk,
77968b782   David S. Miller   ipv4: Pass flow k...
118
  				    struct flowi4 *fl4,
1c32c5ad6   Herbert Xu   inet: Add ip_make...
119
120
121
122
123
124
  				    int getfrag(void *from, char *to, int offset, int len,
  						int odd, struct sk_buff *skb),
  				    void *from, int length, int transhdrlen,
  				    struct ipcm_cookie *ipc,
  				    struct rtable **rtp,
  				    unsigned int flags);
77968b782   David S. Miller   ipv4: Pass flow k...
125
  static inline struct sk_buff *ip_finish_skb(struct sock *sk, struct flowi4 *fl4)
1c32c5ad6   Herbert Xu   inet: Add ip_make...
126
  {
77968b782   David S. Miller   ipv4: Pass flow k...
127
  	return __ip_make_skb(sk, fl4, &sk->sk_write_queue, &inet_sk(sk)->cork.base);
1c32c5ad6   Herbert Xu   inet: Add ip_make...
128
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
129
130
131
132
133
134
135
136
137
138
139
  
  /* datagram.c */
  extern int		ip4_datagram_connect(struct sock *sk, 
  					     struct sockaddr *uaddr, int addr_len);
  
  /*
   *	Map a multicast IP onto multicast MAC for type Token Ring.
   *      This conforms to RFC1469 Option 2 Multicasting i.e.
   *      using a functional address to transmit / receive 
   *      multicast packets.
   */
714e85be3   Al Viro   [IPV6]: Assorted ...
140
  static inline void ip_tr_mc_map(__be32 addr, char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
142
143
144
145
146
147
148
149
150
151
  {
  	buf[0]=0xC0;
  	buf[1]=0x00;
  	buf[2]=0x00;
  	buf[3]=0x04;
  	buf[4]=0x00;
  	buf[5]=0x00;
  }
  
  struct ip_reply_arg {
  	struct kvec iov[1];   
88ef4a5a7   KOVACS Krisztian   tcp: Handle TCP S...
152
  	int	    flags;
d6f5493c1   Al Viro   [NET]: Annotate c...
153
  	__wsum 	    csum;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
  	int	    csumoffset; /* u16 offset of csum in iov[0].iov_base */
  				/* -1 if not needed */ 
f0e48dbfc   Patrick McHardy   [TCP]: Honour sk_...
156
  	int	    bound_dev_if;
66b13d99d   Eric Dumazet   ipv4: tcp: fix TO...
157
  	u8  	    tos;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
158
  }; 
88ef4a5a7   KOVACS Krisztian   tcp: Handle TCP S...
159
  #define IP_REPLY_ARG_NOSRCCHECK 1
86b08d867   KOVACS Krisztian   ipv4: Make Netfil...
160
161
162
163
  static inline __u8 ip_reply_arg_flowi_flags(const struct ip_reply_arg *arg)
  {
  	return (arg->flags & IP_REPLY_ARG_NOSRCCHECK) ? FLOWI_FLAG_ANYSRC : 0;
  }
0a5ebb800   David S. Miller   ipv4: Pass explic...
164
  void ip_send_reply(struct sock *sk, struct sk_buff *skb, __be32 daddr,
66b13d99d   Eric Dumazet   ipv4: tcp: fix TO...
165
  		   const struct ip_reply_arg *arg, unsigned int len);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
166

fd2c3ef76   Eric Dumazet   net: cleanup incl...
167
  struct ipv4_config {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
  	int	log_martians;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
169
170
171
172
  	int	no_pmtu_disc;
  };
  
  extern struct ipv4_config ipv4_config;
4ce3c183f   Eric Dumazet   snmp: 64bit ipsta...
173
174
175
176
177
178
  #define IP_INC_STATS(net, field)	SNMP_INC_STATS64((net)->mib.ip_statistics, field)
  #define IP_INC_STATS_BH(net, field)	SNMP_INC_STATS64_BH((net)->mib.ip_statistics, field)
  #define IP_ADD_STATS(net, field, val)	SNMP_ADD_STATS64((net)->mib.ip_statistics, field, val)
  #define IP_ADD_STATS_BH(net, field, val) SNMP_ADD_STATS64_BH((net)->mib.ip_statistics, field, val)
  #define IP_UPD_PO_STATS(net, field, val) SNMP_UPD_PO_STATS64((net)->mib.ip_statistics, field, val)
  #define IP_UPD_PO_STATS_BH(net, field, val) SNMP_UPD_PO_STATS64_BH((net)->mib.ip_statistics, field, val)
61a7e2602   Pavel Emelyanov   mib: put net stat...
179
180
181
182
183
  #define NET_INC_STATS(net, field)	SNMP_INC_STATS((net)->mib.net_statistics, field)
  #define NET_INC_STATS_BH(net, field)	SNMP_INC_STATS_BH((net)->mib.net_statistics, field)
  #define NET_INC_STATS_USER(net, field) 	SNMP_INC_STATS_USER((net)->mib.net_statistics, field)
  #define NET_ADD_STATS_BH(net, field, adnd) SNMP_ADD_STATS_BH((net)->mib.net_statistics, field, adnd)
  #define NET_ADD_STATS_USER(net, field, adnd) SNMP_ADD_STATS_USER((net)->mib.net_statistics, field, adnd)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
184

7d720c3e4   Tejun Heo   percpu: add __per...
185
  extern unsigned long snmp_fold_field(void __percpu *mib[], int offt);
4ce3c183f   Eric Dumazet   snmp: 64bit ipsta...
186
187
188
189
190
191
192
193
  #if BITS_PER_LONG==32
  extern u64 snmp_fold_field64(void __percpu *mib[], int offt, size_t sync_off);
  #else
  static inline u64 snmp_fold_field64(void __percpu *mib[], int offt, size_t syncp_off)
  {
  	return snmp_fold_field(mib, offt);
  }
  #endif
1823e4c80   Eric Dumazet   snmp: add align p...
194
  extern int snmp_mib_init(void __percpu *ptr[2], size_t mibsize, size_t align);
7d720c3e4   Tejun Heo   percpu: add __per...
195
  extern void snmp_mib_free(void __percpu *ptr[2]);
334901700   YOSHIFUJI Hideaki   [IPV4] SNMP: Move...
196

3c689b732   Eric Dumazet   inet: cleanup of ...
197
198
199
200
  extern struct local_ports {
  	seqlock_t	lock;
  	int		range[2];
  } sysctl_local_ports;
227b60f51   Stephen Hemminger   [INET]: local por...
201
  extern void inet_get_local_port_range(int *low, int *high);
e3826f1e9   Amerigo Wang   net: reserve port...
202
203
204
205
206
  extern unsigned long *sysctl_local_reserved_ports;
  static inline int inet_is_reserved_local_port(int port)
  {
  	return test_bit(port, sysctl_local_reserved_ports);
  }
cdac4e077   Neil Horman   [SCTP] Add suppor...
207
  extern int sysctl_ip_nonlocal_bind;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
208

b27aeadb5   Alexey Dobriyan   netns xfrm: per-n...
209
  extern struct ctl_path net_core_path[];
3d7cc2ba6   Pavel Emelyanov   [NETFILTER]: Swit...
210
  extern struct ctl_path net_ipv4_ctl_path[];
20380731b   Arnaldo Carvalho de Melo   [NET]: Fix sparse...
211
212
213
214
  /* From inetpeer.c */
  extern int inet_peer_threshold;
  extern int inet_peer_minttl;
  extern int inet_peer_maxttl;
20380731b   Arnaldo Carvalho de Melo   [NET]: Fix sparse...
215
216
217
218
219
  
  /* From ip_output.c */
  extern int sysctl_ip_dynaddr;
  
  extern void ipfrag_init(void);
bd7b1533c   Al Viro   [PATCH] sysctl: m...
220
  extern void ip_static_sysctl_init(void);
d18cd551d   David S. Miller   net: Fix build fa...
221
222
223
224
  static inline bool ip_is_fragment(const struct iphdr *iph)
  {
  	return (iph->frag_off & htons(IP_MF | IP_OFFSET)) != 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
225
  #ifdef CONFIG_INET
14c850212   Arnaldo Carvalho de Melo   [INET_SOCK]: Move...
226
  #include <net/dst.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
228
229
230
231
  /* The function in 2.2 was invalid, producing wrong result for
   * check=0xFEFF. It was noticed by Arthur Skawina _year_ ago. --ANK(000625) */
  static inline
  int ip_decrease_ttl(struct iphdr *iph)
  {
5c78f275e   Al Viro   [NET]: IP header ...
232
233
234
  	u32 check = (__force u32)iph->check;
  	check += (__force u32)htons(0x0100);
  	iph->check = (__force __sum16)(check + (check>=0xFFFF));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
235
236
237
238
239
240
  	return --iph->ttl;
  }
  
  static inline
  int ip_dont_fragment(struct sock *sk, struct dst_entry *dst)
  {
a02cec215   Eric Dumazet   net: return opera...
241
  	return  inet_sk(sk)->pmtudisc == IP_PMTUDISC_DO ||
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
242
  		(inet_sk(sk)->pmtudisc == IP_PMTUDISC_WANT &&
a02cec215   Eric Dumazet   net: return opera...
243
  		 !(dst_metric_locked(dst, RTAX_MTU)));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
245
246
247
248
249
250
251
252
253
254
255
  }
  
  extern void __ip_select_ident(struct iphdr *iph, struct dst_entry *dst, int more);
  
  static inline void ip_select_ident(struct iphdr *iph, struct dst_entry *dst, struct sock *sk)
  {
  	if (iph->frag_off & htons(IP_DF)) {
  		/* This is only to work around buggy Windows95/2000
  		 * VJ compression implementations.  If the ID field
  		 * does not change, they drop every other packet in
  		 * a TCP stream using header compression.
  		 */
c720c7e83   Eric Dumazet   inet: rename some...
256
257
  		iph->id = (sk && inet_sk(sk)->inet_daddr) ?
  					htons(inet_sk(sk)->inet_id++) : 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
258
259
260
261
262
263
264
  	} else
  		__ip_select_ident(iph, dst, 0);
  }
  
  static inline void ip_select_ident_more(struct iphdr *iph, struct dst_entry *dst, struct sock *sk, int more)
  {
  	if (iph->frag_off & htons(IP_DF)) {
c720c7e83   Eric Dumazet   inet: rename some...
265
266
267
  		if (sk && inet_sk(sk)->inet_daddr) {
  			iph->id = htons(inet_sk(sk)->inet_id);
  			inet_sk(sk)->inet_id += 1 + more;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
268
269
270
271
272
273
274
275
276
  		} else
  			iph->id = 0;
  	} else
  		__ip_select_ident(iph, dst, more);
  }
  
  /*
   *	Map a multicast IP onto multicast MAC for type ethernet.
   */
714e85be3   Al Viro   [IPV6]: Assorted ...
277
  static inline void ip_eth_mc_map(__be32 naddr, char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
  {
714e85be3   Al Viro   [IPV6]: Assorted ...
279
  	__u32 addr=ntohl(naddr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
280
281
282
283
284
285
286
287
288
289
290
291
292
293
  	buf[0]=0x01;
  	buf[1]=0x00;
  	buf[2]=0x5e;
  	buf[5]=addr&0xFF;
  	addr>>=8;
  	buf[4]=addr&0xFF;
  	addr>>=8;
  	buf[3]=addr&0x7F;
  }
  
  /*
   *	Map a multicast IP onto multicast MAC for type IP-over-InfiniBand.
   *	Leave P_Key as 0 to be filled in by driver.
   */
a9e527e3f   Rolf Manderscheid   IPoIB: improve IP...
294
  static inline void ip_ib_mc_map(__be32 naddr, const unsigned char *broadcast, char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
295
  {
714e85be3   Al Viro   [IPV6]: Assorted ...
296
  	__u32 addr;
a9e527e3f   Rolf Manderscheid   IPoIB: improve IP...
297
  	unsigned char scope = broadcast[5] & 0xF;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
298
299
300
301
  	buf[0]  = 0;		/* Reserved */
  	buf[1]  = 0xff;		/* Multicast QPN */
  	buf[2]  = 0xff;
  	buf[3]  = 0xff;
714e85be3   Al Viro   [IPV6]: Assorted ...
302
  	addr    = ntohl(naddr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
303
  	buf[4]  = 0xff;
a9e527e3f   Rolf Manderscheid   IPoIB: improve IP...
304
  	buf[5]  = 0x10 | scope;	/* scope from broadcast address */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305
306
  	buf[6]  = 0x40;		/* IPv4 signature */
  	buf[7]  = 0x1b;
a9e527e3f   Rolf Manderscheid   IPoIB: improve IP...
307
308
  	buf[8]  = broadcast[8];		/* P_Key */
  	buf[9]  = broadcast[9];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
309
310
311
312
313
314
315
316
317
318
319
320
321
322
  	buf[10] = 0;
  	buf[11] = 0;
  	buf[12] = 0;
  	buf[13] = 0;
  	buf[14] = 0;
  	buf[15] = 0;
  	buf[19] = addr & 0xff;
  	addr  >>= 8;
  	buf[18] = addr & 0xff;
  	addr  >>= 8;
  	buf[17] = addr & 0xff;
  	addr  >>= 8;
  	buf[16] = addr & 0x0f;
  }
93ca3bb5d   Timo Teräs   net: gre: provide...
323
324
325
326
327
328
329
  static inline void ip_ipgre_mc_map(__be32 naddr, const unsigned char *broadcast, char *buf)
  {
  	if ((broadcast[0] | broadcast[1] | broadcast[2] | broadcast[3]) != 0)
  		memcpy(buf, broadcast, 4);
  	else
  		memcpy(buf, &naddr, sizeof(naddr));
  }
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
330
  #if IS_ENABLED(CONFIG_IPV6)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
331
332
333
334
335
  #include <linux/ipv6.h>
  #endif
  
  static __inline__ void inet_reset_saddr(struct sock *sk)
  {
c720c7e83   Eric Dumazet   inet: rename some...
336
  	inet_sk(sk)->inet_rcv_saddr = inet_sk(sk)->inet_saddr = 0;
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
337
  #if IS_ENABLED(CONFIG_IPV6)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
338
339
340
341
342
343
344
345
346
347
  	if (sk->sk_family == PF_INET6) {
  		struct ipv6_pinfo *np = inet6_sk(sk);
  
  		memset(&np->saddr, 0, sizeof(np->saddr));
  		memset(&np->rcv_saddr, 0, sizeof(np->rcv_saddr));
  	}
  #endif
  }
  
  #endif
7ad6848c7   Octavian Purdila   ip: fix mc_loop c...
348
349
350
351
352
353
354
  static inline int sk_mc_loop(struct sock *sk)
  {
  	if (!sk)
  		return 1;
  	switch (sk->sk_family) {
  	case AF_INET:
  		return inet_sk(sk)->mc_loop;
dfd56b8b3   Eric Dumazet   net: use IS_ENABL...
355
  #if IS_ENABLED(CONFIG_IPV6)
7ad6848c7   Octavian Purdila   ip: fix mc_loop c...
356
357
358
359
  	case AF_INET6:
  		return inet6_sk(sk)->mc_loop;
  #endif
  	}
cd65c3c7d   Octavian Purdila   net: fix build er...
360
  	WARN_ON(1);
7ad6848c7   Octavian Purdila   ip: fix mc_loop c...
361
362
  	return 1;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
363
364
365
  extern int	ip_call_ra_chain(struct sk_buff *skb);
  
  /*
b798232fc   Rami Rosen   [IPV4]: Remove th...
366
   *	Functions provided by ip_fragment.c
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
367
   */
fd2c3ef76   Eric Dumazet   net: cleanup incl...
368
  enum ip_defrag_users {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
369
370
371
  	IP_DEFRAG_LOCAL_DELIVER,
  	IP_DEFRAG_CALL_RA_CHAIN,
  	IP_DEFRAG_CONNTRACK_IN,
4be929be3   Alexey Dobriyan   kernel-wide: repl...
372
  	__IP_DEFRAG_CONNTRACK_IN_END	= IP_DEFRAG_CONNTRACK_IN + USHRT_MAX,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
373
  	IP_DEFRAG_CONNTRACK_OUT,
4be929be3   Alexey Dobriyan   kernel-wide: repl...
374
  	__IP_DEFRAG_CONNTRACK_OUT_END	= IP_DEFRAG_CONNTRACK_OUT + USHRT_MAX,
8fa9ff684   Patrick McHardy   netfilter: fix cr...
375
  	IP_DEFRAG_CONNTRACK_BRIDGE_IN,
4be929be3   Alexey Dobriyan   kernel-wide: repl...
376
  	__IP_DEFRAG_CONNTRACK_BRIDGE_IN = IP_DEFRAG_CONNTRACK_BRIDGE_IN + USHRT_MAX,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
377
378
  	IP_DEFRAG_VS_IN,
  	IP_DEFRAG_VS_OUT,
595fc71ba   David S. Miller   ipv4: Add ip_defr...
379
380
  	IP_DEFRAG_VS_FWD,
  	IP_DEFRAG_AF_PACKET,
bc416d976   Eric Dumazet   macvlan: handle f...
381
  	IP_DEFRAG_MACVLAN,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
382
  };
776c729e8   Herbert Xu   [IPV4]: Change ip...
383
  int ip_defrag(struct sk_buff *skb, u32 user);
bc416d976   Eric Dumazet   macvlan: handle f...
384
385
386
387
388
389
390
391
  #ifdef CONFIG_INET
  struct sk_buff *ip_check_defrag(struct sk_buff *skb, u32 user);
  #else
  static inline struct sk_buff *ip_check_defrag(struct sk_buff *skb, u32 user)
  {
  	return skb;
  }
  #endif
6ddc08222   Pavel Emelyanov   [NETNS][FRAGS]: M...
392
  int ip_frag_mem(struct net *net);
e5a2bb842   Pavel Emelyanov   [NETNS][FRAGS]: M...
393
  int ip_frag_nqueues(struct net *net);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
394
395
396
397
398
399
  
  /*
   *	Functions provided by ip_forward.c
   */
   
  extern int ip_forward(struct sk_buff *skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
400
401
402
403
404
   
  /*
   *	Functions provided by ip_options.c
   */
   
f6d8bd051   Eric Dumazet   inet: add RCU pro...
405
406
  extern void ip_options_build(struct sk_buff *skb, struct ip_options *opt,
  			     __be32 daddr, struct rtable *rt, int is_frag);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
407
408
  extern int ip_options_echo(struct ip_options *dopt, struct sk_buff *skb);
  extern void ip_options_fragment(struct sk_buff *skb);
0e6bd4a1c   Denis V. Lunev   [NETNS]: Add name...
409
410
  extern int ip_options_compile(struct net *net,
  			      struct ip_options *opt, struct sk_buff *skb);
f6d8bd051   Eric Dumazet   inet: add RCU pro...
411
  extern int ip_options_get(struct net *net, struct ip_options_rcu **optp,
4c6ea29d8   Arnaldo Carvalho de Melo   [IP]: Introduce i...
412
  			  unsigned char *data, int optlen);
f6d8bd051   Eric Dumazet   inet: add RCU pro...
413
  extern int ip_options_get_from_user(struct net *net, struct ip_options_rcu **optp,
4c6ea29d8   Arnaldo Carvalho de Melo   [IP]: Introduce i...
414
  				    unsigned char __user *data, int optlen);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
415
416
417
418
419
420
421
  extern void ip_options_undo(struct ip_options * opt);
  extern void ip_forward_options(struct sk_buff *skb);
  extern int ip_options_rcv_srr(struct sk_buff *skb);
  
  /*
   *	Functions provided by ip_sockglue.c
   */
d826eb14e   Eric Dumazet   ipv4: PKTINFO doe...
422
  extern void	ipv4_pktinfo_prepare(struct sk_buff *skb);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
423
  extern void	ip_cmsg_recv(struct msghdr *msg, struct sk_buff *skb);
7a6adb92f   Denis V. Lunev   [NETNS]: Add name...
424
425
  extern int	ip_cmsg_send(struct net *net,
  			     struct msghdr *msg, struct ipcm_cookie *ipc);
b7058842c   David S. Miller   net: Make setsock...
426
  extern int	ip_setsockopt(struct sock *sk, int level, int optname, char __user *optval, unsigned int optlen);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
427
  extern int	ip_getsockopt(struct sock *sk, int level, int optname, char __user *optval, int __user *optlen);
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
428
  extern int	compat_ip_setsockopt(struct sock *sk, int level,
b7058842c   David S. Miller   net: Make setsock...
429
  			int optname, char __user *optval, unsigned int optlen);
3fdadf7d2   Dmitry Mishin   [NET]: {get|set}s...
430
431
  extern int	compat_ip_getsockopt(struct sock *sk, int level,
  			int optname, char __user *optval, int __user *optlen);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
432
433
434
435
  extern int	ip_ra_control(struct sock *sk, unsigned char on, void (*destructor)(struct sock *));
  
  extern int 	ip_recv_error(struct sock *sk, struct msghdr *msg, int len);
  extern void	ip_icmp_error(struct sock *sk, struct sk_buff *skb, int err, 
35986b329   Al Viro   [IPV4]: ip_icmp_e...
436
  			      __be16 port, u32 info, u8 *payload);
0579016ec   Al Viro   [IPV4]: ip_local_...
437
  extern void	ip_local_error(struct sock *sk, int err, __be32 daddr, __be16 dport,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
438
  			       u32 info);
20380731b   Arnaldo Carvalho de Melo   [NET]: Fix sparse...
439
440
441
  #ifdef CONFIG_PROC_FS
  extern int ip_misc_proc_init(void);
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
442
  #endif	/* _IP_H */