Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * INET An implementation of the TCP/IP protocol suite for the LINUX |
| 3 | * operating system. INET is implemented using the BSD Socket |
| 4 | * interface as the means of communication with the user level. |
| 5 | * |
| 6 | * Definitions for the ICMP module. |
| 7 | * |
| 8 | * Version: @(#)icmp.h 1.0.4 05/13/93 |
| 9 | * |
Jesper Juhl | 02c30a8 | 2005-05-05 16:16:16 -0700 | [diff] [blame] | 10 | * Authors: Ross Biro |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License |
| 15 | * as published by the Free Software Foundation; either version |
| 16 | * 2 of the License, or (at your option) any later version. |
| 17 | */ |
| 18 | #ifndef _ICMP_H |
| 19 | #define _ICMP_H |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/icmp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 23 | #include <net/inet_sock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <net/snmp.h> |
Nazarov Sergey | 55ea53a | 2019-02-25 19:24:15 +0300 | [diff] [blame] | 25 | #include <net/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | struct icmp_err { |
| 28 | int errno; |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 29 | unsigned int fatal:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
Alexey Dobriyan | e754834 | 2010-01-22 10:18:25 +0000 | [diff] [blame] | 32 | extern const struct icmp_err icmp_err_convert[]; |
Pavel Emelyanov | b60538a | 2008-07-18 04:04:02 -0700 | [diff] [blame] | 33 | #define ICMP_INC_STATS(net, field) SNMP_INC_STATS((net)->mib.icmp_statistics, field) |
Eric Dumazet | 13415e4 | 2016-04-27 16:44:43 -0700 | [diff] [blame] | 34 | #define __ICMP_INC_STATS(net, field) __SNMP_INC_STATS((net)->mib.icmp_statistics, field) |
Eric Dumazet | acb32ba | 2011-11-08 13:04:43 +0000 | [diff] [blame] | 35 | #define ICMPMSGOUT_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field+256) |
Eric Dumazet | 214d3f1 | 2016-04-27 16:44:33 -0700 | [diff] [blame] | 36 | #define ICMPMSGIN_INC_STATS(net, field) SNMP_INC_STATS_ATOMIC_LONG((net)->mib.icmpmsg_statistics, field) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 38 | struct dst_entry; |
| 39 | struct net_proto_family; |
| 40 | struct sk_buff; |
Pavel Emelyanov | 0388b00 | 2008-07-14 23:00:43 -0700 | [diff] [blame] | 41 | struct net; |
Arnaldo Carvalho de Melo | 14c8502 | 2005-12-27 02:43:12 -0200 | [diff] [blame] | 42 | |
Nazarov Sergey | 55ea53a | 2019-02-25 19:24:15 +0300 | [diff] [blame] | 43 | void __icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info, |
| 44 | const struct ip_options *opt); |
| 45 | static inline void icmp_send(struct sk_buff *skb_in, int type, int code, __be32 info) |
| 46 | { |
| 47 | __icmp_send(skb_in, type, code, info, &IPCB(skb_in)->opt); |
| 48 | } |
| 49 | |
Jason A. Donenfeld | e9b0676 | 2020-02-11 20:47:05 +0100 | [diff] [blame] | 50 | #if IS_ENABLED(CONFIG_NF_NAT) |
| 51 | void icmp_ndo_send(struct sk_buff *skb_in, int type, int code, __be32 info); |
| 52 | #else |
Jason A. Donenfeld | 0c5bdc2 | 2021-02-23 14:18:58 +0100 | [diff] [blame] | 53 | static inline void icmp_ndo_send(struct sk_buff *skb_in, int type, int code, __be32 info) |
| 54 | { |
| 55 | struct ip_options opts = { 0 }; |
| 56 | __icmp_send(skb_in, type, code, info, &opts); |
| 57 | } |
Jason A. Donenfeld | e9b0676 | 2020-02-11 20:47:05 +0100 | [diff] [blame] | 58 | #endif |
| 59 | |
Joe Perches | e60ab84 | 2013-09-20 11:23:28 -0700 | [diff] [blame] | 60 | int icmp_rcv(struct sk_buff *skb); |
| 61 | void icmp_err(struct sk_buff *skb, u32 info); |
| 62 | int icmp_init(void); |
| 63 | void icmp_out_count(struct net *net, unsigned char type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | #endif /* _ICMP_H */ |