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.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * Based on ipv4/udp.c code.
15 * Authors: Vasiliy Kulikov / Openwall (for Linux 2.6),
16 * Pavel Kankovsky (for Linux 2.4.32)
18 * Pavel gave all rights to bugs to Vasiliy,
19 * none of the bugs are Pavel's now.
23 #include <linux/uaccess.h>
24 #include <linux/types.h>
25 #include <linux/fcntl.h>
26 #include <linux/socket.h>
27 #include <linux/sockios.h>
29 #include <linux/errno.h>
30 #include <linux/timer.h>
32 #include <linux/inet.h>
33 #include <linux/netdevice.h>
37 #include <net/protocol.h>
38 #include <linux/skbuff.h>
39 #include <linux/proc_fs.h>
40 #include <linux/export.h>
44 #include <net/route.h>
45 #include <net/inet_common.h>
46 #include <net/checksum.h>
48 #if IS_ENABLED(CONFIG_IPV6)
49 #include <linux/in6.h>
50 #include <linux/icmpv6.h>
51 #include <net/addrconf.h>
53 #include <net/transp_v6.h>
57 struct ping_table ping_table
;
58 struct pingv6_ops pingv6_ops
;
59 EXPORT_SYMBOL_GPL(pingv6_ops
);
61 static u16 ping_port_rover
;
63 static inline int ping_hashfn(struct net
*net
, unsigned int num
, unsigned int mask
)
65 int res
= (num
+ net_hash_mix(net
)) & mask
;
67 pr_debug("hash(%d) = %d\n", num
, res
);
70 EXPORT_SYMBOL_GPL(ping_hash
);
72 static inline struct hlist_nulls_head
*ping_hashslot(struct ping_table
*table
,
73 struct net
*net
, unsigned int num
)
75 return &table
->hash
[ping_hashfn(net
, num
, PING_HTABLE_MASK
)];
78 int ping_get_port(struct sock
*sk
, unsigned short ident
)
80 struct hlist_nulls_node
*node
;
81 struct hlist_nulls_head
*hlist
;
82 struct inet_sock
*isk
, *isk2
;
83 struct sock
*sk2
= NULL
;
86 write_lock_bh(&ping_table
.lock
);
89 u16 result
= ping_port_rover
+ 1;
91 for (i
= 0; i
< (1L << 16); i
++, result
++) {
93 result
++; /* avoid zero */
94 hlist
= ping_hashslot(&ping_table
, sock_net(sk
),
96 ping_portaddr_for_each_entry(sk2
, node
, hlist
) {
99 if (isk2
->inet_num
== result
)
104 ping_port_rover
= ident
= result
;
112 hlist
= ping_hashslot(&ping_table
, sock_net(sk
), ident
);
113 ping_portaddr_for_each_entry(sk2
, node
, hlist
) {
116 /* BUG? Why is this reuse and not reuseaddr? ping.c
117 * doesn't turn off SO_REUSEADDR, and it doesn't expect
118 * that other ping processes can steal its packets.
120 if ((isk2
->inet_num
== ident
) &&
122 (!sk2
->sk_reuse
|| !sk
->sk_reuse
))
127 pr_debug("found port/ident = %d\n", ident
);
128 isk
->inet_num
= ident
;
129 if (sk_unhashed(sk
)) {
130 pr_debug("was not hashed\n");
132 hlist_nulls_add_head(&sk
->sk_nulls_node
, hlist
);
133 sock_prot_inuse_add(sock_net(sk
), sk
->sk_prot
, 1);
135 write_unlock_bh(&ping_table
.lock
);
139 write_unlock_bh(&ping_table
.lock
);
142 EXPORT_SYMBOL_GPL(ping_get_port
);
144 void ping_hash(struct sock
*sk
)
146 pr_debug("ping_hash(sk->port=%u)\n", inet_sk(sk
)->inet_num
);
147 BUG(); /* "Please do not press this button again." */
150 void ping_unhash(struct sock
*sk
)
152 struct inet_sock
*isk
= inet_sk(sk
);
153 pr_debug("ping_unhash(isk=%p,isk->num=%u)\n", isk
, isk
->inet_num
);
155 write_lock_bh(&ping_table
.lock
);
156 hlist_nulls_del(&sk
->sk_nulls_node
);
160 sock_prot_inuse_add(sock_net(sk
), sk
->sk_prot
, -1);
161 write_unlock_bh(&ping_table
.lock
);
164 EXPORT_SYMBOL_GPL(ping_unhash
);
166 static struct sock
*ping_lookup(struct net
*net
, struct sk_buff
*skb
, u16 ident
)
168 struct hlist_nulls_head
*hslot
= ping_hashslot(&ping_table
, net
, ident
);
169 struct sock
*sk
= NULL
;
170 struct inet_sock
*isk
;
171 struct hlist_nulls_node
*hnode
;
172 int dif
= skb
->dev
->ifindex
;
174 if (skb
->protocol
== htons(ETH_P_IP
)) {
175 pr_debug("try to find: num = %d, daddr = %pI4, dif = %d\n",
176 (int)ident
, &ip_hdr(skb
)->daddr
, dif
);
177 #if IS_ENABLED(CONFIG_IPV6)
178 } else if (skb
->protocol
== htons(ETH_P_IPV6
)) {
179 pr_debug("try to find: num = %d, daddr = %pI6c, dif = %d\n",
180 (int)ident
, &ipv6_hdr(skb
)->daddr
, dif
);
184 read_lock_bh(&ping_table
.lock
);
186 ping_portaddr_for_each_entry(sk
, hnode
, hslot
) {
189 pr_debug("iterate\n");
190 if (isk
->inet_num
!= ident
)
193 if (skb
->protocol
== htons(ETH_P_IP
) &&
194 sk
->sk_family
== AF_INET
) {
195 pr_debug("found: %p: num=%d, daddr=%pI4, dif=%d\n", sk
,
196 (int) isk
->inet_num
, &isk
->inet_rcv_saddr
,
197 sk
->sk_bound_dev_if
);
199 if (isk
->inet_rcv_saddr
&&
200 isk
->inet_rcv_saddr
!= ip_hdr(skb
)->daddr
)
202 #if IS_ENABLED(CONFIG_IPV6)
203 } else if (skb
->protocol
== htons(ETH_P_IPV6
) &&
204 sk
->sk_family
== AF_INET6
) {
205 struct ipv6_pinfo
*np
= inet6_sk(sk
);
207 pr_debug("found: %p: num=%d, daddr=%pI6c, dif=%d\n", sk
,
209 &inet6_sk(sk
)->rcv_saddr
,
210 sk
->sk_bound_dev_if
);
212 if (!ipv6_addr_any(&np
->rcv_saddr
) &&
213 !ipv6_addr_equal(&np
->rcv_saddr
,
214 &ipv6_hdr(skb
)->daddr
))
219 if (sk
->sk_bound_dev_if
&& sk
->sk_bound_dev_if
!= dif
)
228 read_unlock_bh(&ping_table
.lock
);
233 static void inet_get_ping_group_range_net(struct net
*net
, kgid_t
*low
,
236 kgid_t
*data
= net
->ipv4
.sysctl_ping_group_range
;
240 seq
= read_seqbegin(&sysctl_local_ports
.lock
);
244 } while (read_seqretry(&sysctl_local_ports
.lock
, seq
));
248 int ping_init_sock(struct sock
*sk
)
250 struct net
*net
= sock_net(sk
);
251 kgid_t group
= current_egid();
252 struct group_info
*group_info
= get_current_groups();
253 int i
, j
, count
= group_info
->ngroups
;
256 inet_get_ping_group_range_net(net
, &low
, &high
);
257 if (gid_lte(low
, group
) && gid_lte(group
, high
))
260 for (i
= 0; i
< group_info
->nblocks
; i
++) {
261 int cp_count
= min_t(int, NGROUPS_PER_BLOCK
, count
);
262 for (j
= 0; j
< cp_count
; j
++) {
263 kgid_t gid
= group_info
->blocks
[i
][j
];
264 if (gid_lte(low
, gid
) && gid_lte(gid
, high
))
273 EXPORT_SYMBOL_GPL(ping_init_sock
);
275 void ping_close(struct sock
*sk
, long timeout
)
277 pr_debug("ping_close(sk=%p,sk->num=%u)\n",
278 inet_sk(sk
), inet_sk(sk
)->inet_num
);
279 pr_debug("isk->refcnt = %d\n", sk
->sk_refcnt
.counter
);
281 sk_common_release(sk
);
283 EXPORT_SYMBOL_GPL(ping_close
);
285 /* Checks the bind address and possibly modifies sk->sk_bound_dev_if. */
286 static int ping_check_bind_addr(struct sock
*sk
, struct inet_sock
*isk
,
287 struct sockaddr
*uaddr
, int addr_len
) {
288 struct net
*net
= sock_net(sk
);
289 if (sk
->sk_family
== AF_INET
) {
290 struct sockaddr_in
*addr
= (struct sockaddr_in
*) uaddr
;
293 if (addr_len
< sizeof(*addr
))
296 pr_debug("ping_check_bind_addr(sk=%p,addr=%pI4,port=%d)\n",
297 sk
, &addr
->sin_addr
.s_addr
, ntohs(addr
->sin_port
));
299 chk_addr_ret
= inet_addr_type(net
, addr
->sin_addr
.s_addr
);
301 if (addr
->sin_addr
.s_addr
== htonl(INADDR_ANY
))
302 chk_addr_ret
= RTN_LOCAL
;
304 if ((sysctl_ip_nonlocal_bind
== 0 &&
305 isk
->freebind
== 0 && isk
->transparent
== 0 &&
306 chk_addr_ret
!= RTN_LOCAL
) ||
307 chk_addr_ret
== RTN_MULTICAST
||
308 chk_addr_ret
== RTN_BROADCAST
)
309 return -EADDRNOTAVAIL
;
311 #if IS_ENABLED(CONFIG_IPV6)
312 } else if (sk
->sk_family
== AF_INET6
) {
313 struct sockaddr_in6
*addr
= (struct sockaddr_in6
*) uaddr
;
314 int addr_type
, scoped
, has_addr
;
315 struct net_device
*dev
= NULL
;
317 if (addr_len
< sizeof(*addr
))
320 pr_debug("ping_check_bind_addr(sk=%p,addr=%pI6c,port=%d)\n",
321 sk
, addr
->sin6_addr
.s6_addr
, ntohs(addr
->sin6_port
));
323 addr_type
= ipv6_addr_type(&addr
->sin6_addr
);
324 scoped
= __ipv6_addr_needs_scope_id(addr_type
);
325 if ((addr_type
!= IPV6_ADDR_ANY
&&
326 !(addr_type
& IPV6_ADDR_UNICAST
)) ||
327 (scoped
&& !addr
->sin6_scope_id
))
331 if (addr
->sin6_scope_id
) {
332 dev
= dev_get_by_index_rcu(net
, addr
->sin6_scope_id
);
338 has_addr
= pingv6_ops
.ipv6_chk_addr(net
, &addr
->sin6_addr
, dev
,
342 if (!(isk
->freebind
|| isk
->transparent
|| has_addr
||
343 addr_type
== IPV6_ADDR_ANY
))
344 return -EADDRNOTAVAIL
;
347 sk
->sk_bound_dev_if
= addr
->sin6_scope_id
;
350 return -EAFNOSUPPORT
;
355 static void ping_set_saddr(struct sock
*sk
, struct sockaddr
*saddr
)
357 if (saddr
->sa_family
== AF_INET
) {
358 struct inet_sock
*isk
= inet_sk(sk
);
359 struct sockaddr_in
*addr
= (struct sockaddr_in
*) saddr
;
360 isk
->inet_rcv_saddr
= isk
->inet_saddr
= addr
->sin_addr
.s_addr
;
361 #if IS_ENABLED(CONFIG_IPV6)
362 } else if (saddr
->sa_family
== AF_INET6
) {
363 struct sockaddr_in6
*addr
= (struct sockaddr_in6
*) saddr
;
364 struct ipv6_pinfo
*np
= inet6_sk(sk
);
365 np
->rcv_saddr
= np
->saddr
= addr
->sin6_addr
;
370 static void ping_clear_saddr(struct sock
*sk
, int dif
)
372 sk
->sk_bound_dev_if
= dif
;
373 if (sk
->sk_family
== AF_INET
) {
374 struct inet_sock
*isk
= inet_sk(sk
);
375 isk
->inet_rcv_saddr
= isk
->inet_saddr
= 0;
376 #if IS_ENABLED(CONFIG_IPV6)
377 } else if (sk
->sk_family
== AF_INET6
) {
378 struct ipv6_pinfo
*np
= inet6_sk(sk
);
379 memset(&np
->rcv_saddr
, 0, sizeof(np
->rcv_saddr
));
380 memset(&np
->saddr
, 0, sizeof(np
->saddr
));
385 * We need our own bind because there are no privileged id's == local ports.
386 * Moreover, we don't allow binding to multi- and broadcast addresses.
389 int ping_bind(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
391 struct inet_sock
*isk
= inet_sk(sk
);
394 int dif
= sk
->sk_bound_dev_if
;
396 err
= ping_check_bind_addr(sk
, isk
, uaddr
, addr_len
);
403 if (isk
->inet_num
!= 0)
407 ping_set_saddr(sk
, uaddr
);
408 snum
= ntohs(((struct sockaddr_in
*)uaddr
)->sin_port
);
409 if (ping_get_port(sk
, snum
) != 0) {
410 ping_clear_saddr(sk
, dif
);
414 pr_debug("after bind(): num = %d, dif = %d\n",
416 (int)sk
->sk_bound_dev_if
);
419 if ((sk
->sk_family
== AF_INET
&& isk
->inet_rcv_saddr
) ||
420 (sk
->sk_family
== AF_INET6
&&
421 !ipv6_addr_any(&inet6_sk(sk
)->rcv_saddr
)))
422 sk
->sk_userlocks
|= SOCK_BINDADDR_LOCK
;
425 sk
->sk_userlocks
|= SOCK_BINDPORT_LOCK
;
426 isk
->inet_sport
= htons(isk
->inet_num
);
430 #if IS_ENABLED(CONFIG_IPV6)
431 if (sk
->sk_family
== AF_INET6
)
432 memset(&inet6_sk(sk
)->daddr
, 0, sizeof(inet6_sk(sk
)->daddr
));
438 pr_debug("ping_v4_bind -> %d\n", err
);
441 EXPORT_SYMBOL_GPL(ping_bind
);
444 * Is this a supported type of ICMP message?
447 static inline int ping_supported(int family
, int type
, int code
)
449 return (family
== AF_INET
&& type
== ICMP_ECHO
&& code
== 0) ||
450 (family
== AF_INET6
&& type
== ICMPV6_ECHO_REQUEST
&& code
== 0);
454 * This routine is called by the ICMP module when it gets some
455 * sort of error condition.
458 void ping_err(struct sk_buff
*skb
, int offset
, u32 info
)
461 struct icmphdr
*icmph
;
462 struct inet_sock
*inet_sock
;
465 struct net
*net
= dev_net(skb
->dev
);
470 if (skb
->protocol
== htons(ETH_P_IP
)) {
472 type
= icmp_hdr(skb
)->type
;
473 code
= icmp_hdr(skb
)->code
;
474 icmph
= (struct icmphdr
*)(skb
->data
+ offset
);
475 } else if (skb
->protocol
== htons(ETH_P_IPV6
)) {
477 type
= icmp6_hdr(skb
)->icmp6_type
;
478 code
= icmp6_hdr(skb
)->icmp6_code
;
479 icmph
= (struct icmphdr
*) (skb
->data
+ offset
);
484 /* We assume the packet has already been checked by icmp_unreach */
486 if (!ping_supported(family
, icmph
->type
, icmph
->code
))
489 pr_debug("ping_err(proto=0x%x,type=%d,code=%d,id=%04x,seq=%04x)\n",
490 skb
->protocol
, type
, code
, ntohs(icmph
->un
.echo
.id
),
491 ntohs(icmph
->un
.echo
.sequence
));
493 sk
= ping_lookup(net
, skb
, ntohs(icmph
->un
.echo
.id
));
495 pr_debug("no socket, dropping\n");
496 return; /* No socket for error */
498 pr_debug("err on socket %p\n", sk
);
502 inet_sock
= inet_sk(sk
);
504 if (skb
->protocol
== htons(ETH_P_IP
)) {
507 case ICMP_TIME_EXCEEDED
:
510 case ICMP_SOURCE_QUENCH
:
511 /* This is not a real error but ping wants to see it.
512 * Report it with some fake errno.
516 case ICMP_PARAMETERPROB
:
520 case ICMP_DEST_UNREACH
:
521 if (code
== ICMP_FRAG_NEEDED
) { /* Path MTU discovery */
522 ipv4_sk_update_pmtu(skb
, sk
, info
);
523 if (inet_sock
->pmtudisc
!= IP_PMTUDISC_DONT
) {
531 if (code
<= NR_ICMP_UNREACH
) {
532 harderr
= icmp_err_convert
[code
].fatal
;
533 err
= icmp_err_convert
[code
].errno
;
537 /* See ICMP_SOURCE_QUENCH */
538 ipv4_sk_redirect(skb
, sk
);
542 #if IS_ENABLED(CONFIG_IPV6)
543 } else if (skb
->protocol
== htons(ETH_P_IPV6
)) {
544 harderr
= pingv6_ops
.icmpv6_err_convert(type
, code
, &err
);
549 * RFC1122: OK. Passes ICMP errors back to application, as per
552 if ((family
== AF_INET
&& !inet_sock
->recverr
) ||
553 (family
== AF_INET6
&& !inet6_sk(sk
)->recverr
)) {
554 if (!harderr
|| sk
->sk_state
!= TCP_ESTABLISHED
)
557 if (family
== AF_INET
) {
558 ip_icmp_error(sk
, skb
, err
, 0 /* no remote port */,
560 #if IS_ENABLED(CONFIG_IPV6)
561 } else if (family
== AF_INET6
) {
562 pingv6_ops
.ipv6_icmp_error(sk
, skb
, err
, 0,
568 sk
->sk_error_report(sk
);
572 EXPORT_SYMBOL_GPL(ping_err
);
575 * Copy and checksum an ICMP Echo packet from user space into a buffer
576 * starting from the payload.
579 int ping_getfrag(void *from
, char *to
,
580 int offset
, int fraglen
, int odd
, struct sk_buff
*skb
)
582 struct pingfakehdr
*pfh
= (struct pingfakehdr
*)from
;
585 if (fraglen
< sizeof(struct icmphdr
))
587 if (csum_partial_copy_fromiovecend(to
+ sizeof(struct icmphdr
),
588 pfh
->iov
, 0, fraglen
- sizeof(struct icmphdr
),
591 } else if (offset
< sizeof(struct icmphdr
)) {
594 if (csum_partial_copy_fromiovecend
595 (to
, pfh
->iov
, offset
- sizeof(struct icmphdr
),
596 fraglen
, &pfh
->wcheck
))
600 #if IS_ENABLED(CONFIG_IPV6)
601 /* For IPv6, checksum each skb as we go along, as expected by
602 * icmpv6_push_pending_frames. For IPv4, accumulate the checksum in
603 * wcheck, it will be finalized in ping_v4_push_pending_frames.
605 if (pfh
->family
== AF_INET6
) {
606 skb
->csum
= pfh
->wcheck
;
607 skb
->ip_summed
= CHECKSUM_NONE
;
614 EXPORT_SYMBOL_GPL(ping_getfrag
);
616 static int ping_v4_push_pending_frames(struct sock
*sk
, struct pingfakehdr
*pfh
,
619 struct sk_buff
*skb
= skb_peek(&sk
->sk_write_queue
);
621 pfh
->wcheck
= csum_partial((char *)&pfh
->icmph
,
622 sizeof(struct icmphdr
), pfh
->wcheck
);
623 pfh
->icmph
.checksum
= csum_fold(pfh
->wcheck
);
624 memcpy(icmp_hdr(skb
), &pfh
->icmph
, sizeof(struct icmphdr
));
625 skb
->ip_summed
= CHECKSUM_NONE
;
626 return ip_push_pending_frames(sk
, fl4
);
629 int ping_common_sendmsg(int family
, struct msghdr
*msg
, size_t len
,
630 void *user_icmph
, size_t icmph_len
) {
640 /* Mirror BSD error message compatibility */
641 if (msg
->msg_flags
& MSG_OOB
)
645 * Fetch the ICMP header provided by the userland.
646 * iovec is modified! The ICMP header is consumed.
648 if (memcpy_fromiovec(user_icmph
, msg
->msg_iov
, icmph_len
))
651 if (family
== AF_INET
) {
652 type
= ((struct icmphdr
*) user_icmph
)->type
;
653 code
= ((struct icmphdr
*) user_icmph
)->code
;
654 #if IS_ENABLED(CONFIG_IPV6)
655 } else if (family
== AF_INET6
) {
656 type
= ((struct icmp6hdr
*) user_icmph
)->icmp6_type
;
657 code
= ((struct icmp6hdr
*) user_icmph
)->icmp6_code
;
663 if (!ping_supported(family
, type
, code
))
668 EXPORT_SYMBOL_GPL(ping_common_sendmsg
);
670 int ping_v4_sendmsg(struct kiocb
*iocb
, struct sock
*sk
, struct msghdr
*msg
,
673 struct net
*net
= sock_net(sk
);
675 struct inet_sock
*inet
= inet_sk(sk
);
676 struct ipcm_cookie ipc
;
677 struct icmphdr user_icmph
;
678 struct pingfakehdr pfh
;
679 struct rtable
*rt
= NULL
;
680 struct ip_options_data opt_copy
;
682 __be32 saddr
, daddr
, faddr
;
686 pr_debug("ping_v4_sendmsg(sk=%p,sk->num=%u)\n", inet
, inet
->inet_num
);
688 err
= ping_common_sendmsg(AF_INET
, msg
, len
, &user_icmph
,
694 * Get and verify the address.
698 struct sockaddr_in
*usin
= (struct sockaddr_in
*)msg
->msg_name
;
699 if (msg
->msg_namelen
< sizeof(*usin
))
701 if (usin
->sin_family
!= AF_INET
)
703 daddr
= usin
->sin_addr
.s_addr
;
706 if (sk
->sk_state
!= TCP_ESTABLISHED
)
707 return -EDESTADDRREQ
;
708 daddr
= inet
->inet_daddr
;
712 ipc
.addr
= inet
->inet_saddr
;
714 ipc
.oif
= sk
->sk_bound_dev_if
;
717 sock_tx_timestamp(sk
, &ipc
.tx_flags
);
719 if (msg
->msg_controllen
) {
720 err
= ip_cmsg_send(sock_net(sk
), msg
, &ipc
);
727 struct ip_options_rcu
*inet_opt
;
730 inet_opt
= rcu_dereference(inet
->inet_opt
);
732 memcpy(&opt_copy
, inet_opt
,
733 sizeof(*inet_opt
) + inet_opt
->opt
.optlen
);
734 ipc
.opt
= &opt_copy
.opt
;
740 ipc
.addr
= faddr
= daddr
;
742 if (ipc
.opt
&& ipc
.opt
->opt
.srr
) {
745 faddr
= ipc
.opt
->opt
.faddr
;
747 tos
= RT_TOS(inet
->tos
);
748 if (sock_flag(sk
, SOCK_LOCALROUTE
) ||
749 (msg
->msg_flags
& MSG_DONTROUTE
) ||
750 (ipc
.opt
&& ipc
.opt
->opt
.is_strictroute
)) {
754 if (ipv4_is_multicast(daddr
)) {
756 ipc
.oif
= inet
->mc_index
;
758 saddr
= inet
->mc_addr
;
760 ipc
.oif
= inet
->uc_index
;
762 flowi4_init_output(&fl4
, ipc
.oif
, sk
->sk_mark
, tos
,
763 RT_SCOPE_UNIVERSE
, sk
->sk_protocol
,
764 inet_sk_flowi_flags(sk
), faddr
, saddr
, 0, 0);
766 security_sk_classify_flow(sk
, flowi4_to_flowi(&fl4
));
767 rt
= ip_route_output_flow(net
, &fl4
, sk
);
771 if (err
== -ENETUNREACH
)
772 IP_INC_STATS_BH(net
, IPSTATS_MIB_OUTNOROUTES
);
777 if ((rt
->rt_flags
& RTCF_BROADCAST
) &&
778 !sock_flag(sk
, SOCK_BROADCAST
))
781 if (msg
->msg_flags
& MSG_CONFIRM
)
786 ipc
.addr
= fl4
.daddr
;
790 pfh
.icmph
.type
= user_icmph
.type
; /* already checked */
791 pfh
.icmph
.code
= user_icmph
.code
; /* ditto */
792 pfh
.icmph
.checksum
= 0;
793 pfh
.icmph
.un
.echo
.id
= inet
->inet_sport
;
794 pfh
.icmph
.un
.echo
.sequence
= user_icmph
.un
.echo
.sequence
;
795 pfh
.iov
= msg
->msg_iov
;
797 pfh
.family
= AF_INET
;
799 err
= ip_append_data(sk
, &fl4
, ping_getfrag
, &pfh
, len
,
800 0, &ipc
, &rt
, msg
->msg_flags
);
802 ip_flush_pending_frames(sk
);
804 err
= ping_v4_push_pending_frames(sk
, &pfh
, &fl4
);
812 icmp_out_count(sock_net(sk
), user_icmph
.type
);
818 dst_confirm(&rt
->dst
);
819 if (!(msg
->msg_flags
& MSG_PROBE
) || len
)
820 goto back_from_confirm
;
825 int ping_recvmsg(struct kiocb
*iocb
, struct sock
*sk
, struct msghdr
*msg
,
826 size_t len
, int noblock
, int flags
, int *addr_len
)
828 struct inet_sock
*isk
= inet_sk(sk
);
829 int family
= sk
->sk_family
;
830 struct sockaddr_in
*sin
;
831 struct sockaddr_in6
*sin6
;
835 pr_debug("ping_recvmsg(sk=%p,sk->num=%u)\n", isk
, isk
->inet_num
);
842 if (family
== AF_INET
)
843 *addr_len
= sizeof(*sin
);
844 else if (family
== AF_INET6
&& addr_len
)
845 *addr_len
= sizeof(*sin6
);
848 if (flags
& MSG_ERRQUEUE
) {
849 if (family
== AF_INET
) {
850 return ip_recv_error(sk
, msg
, len
);
851 #if IS_ENABLED(CONFIG_IPV6)
852 } else if (family
== AF_INET6
) {
853 return pingv6_ops
.ipv6_recv_error(sk
, msg
, len
);
858 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
864 msg
->msg_flags
|= MSG_TRUNC
;
868 /* Don't bother checking the checksum */
869 err
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
873 sock_recv_timestamp(msg
, sk
, skb
);
875 /* Copy the address and add cmsg data. */
876 if (family
== AF_INET
) {
877 sin
= (struct sockaddr_in
*) msg
->msg_name
;
878 sin
->sin_family
= AF_INET
;
879 sin
->sin_port
= 0 /* skb->h.uh->source */;
880 sin
->sin_addr
.s_addr
= ip_hdr(skb
)->saddr
;
881 memset(sin
->sin_zero
, 0, sizeof(sin
->sin_zero
));
884 ip_cmsg_recv(msg
, skb
);
886 #if IS_ENABLED(CONFIG_IPV6)
887 } else if (family
== AF_INET6
) {
888 struct ipv6_pinfo
*np
= inet6_sk(sk
);
889 struct ipv6hdr
*ip6
= ipv6_hdr(skb
);
890 sin6
= (struct sockaddr_in6
*) msg
->msg_name
;
891 sin6
->sin6_family
= AF_INET6
;
893 sin6
->sin6_addr
= ip6
->saddr
;
895 sin6
->sin6_flowinfo
= 0;
897 sin6
->sin6_flowinfo
= ip6_flowinfo(ip6
);
899 sin6
->sin6_scope_id
= ipv6_iface_scope_id(&sin6
->sin6_addr
,
902 if (inet6_sk(sk
)->rxopt
.all
)
903 pingv6_ops
.ip6_datagram_recv_ctl(sk
, msg
, skb
);
912 skb_free_datagram(sk
, skb
);
914 pr_debug("ping_recvmsg -> %d\n", err
);
917 EXPORT_SYMBOL_GPL(ping_recvmsg
);
919 int ping_queue_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
921 pr_debug("ping_queue_rcv_skb(sk=%p,sk->num=%d,skb=%p)\n",
922 inet_sk(sk
), inet_sk(sk
)->inet_num
, skb
);
923 if (sock_queue_rcv_skb(sk
, skb
) < 0) {
925 pr_debug("ping_queue_rcv_skb -> failed\n");
930 EXPORT_SYMBOL_GPL(ping_queue_rcv_skb
);
934 * All we need to do is get the socket.
937 void ping_rcv(struct sk_buff
*skb
)
940 struct net
*net
= dev_net(skb
->dev
);
941 struct icmphdr
*icmph
= icmp_hdr(skb
);
943 /* We assume the packet has already been checked by icmp_rcv */
945 pr_debug("ping_rcv(skb=%p,id=%04x,seq=%04x)\n",
946 skb
, ntohs(icmph
->un
.echo
.id
), ntohs(icmph
->un
.echo
.sequence
));
948 /* Push ICMP header back */
949 skb_push(skb
, skb
->data
- (u8
*)icmph
);
951 sk
= ping_lookup(net
, skb
, ntohs(icmph
->un
.echo
.id
));
953 pr_debug("rcv on socket %p\n", sk
);
954 ping_queue_rcv_skb(sk
, skb_get(skb
));
958 pr_debug("no socket, dropping\n");
960 /* We're called from icmp_rcv(). kfree_skb() is done there. */
962 EXPORT_SYMBOL_GPL(ping_rcv
);
964 struct proto ping_prot
= {
966 .owner
= THIS_MODULE
,
967 .init
= ping_init_sock
,
969 .connect
= ip4_datagram_connect
,
970 .disconnect
= udp_disconnect
,
971 .setsockopt
= ip_setsockopt
,
972 .getsockopt
= ip_getsockopt
,
973 .sendmsg
= ping_v4_sendmsg
,
974 .recvmsg
= ping_recvmsg
,
976 .backlog_rcv
= ping_queue_rcv_skb
,
977 .release_cb
= ip4_datagram_release_cb
,
979 .unhash
= ping_unhash
,
980 .get_port
= ping_get_port
,
981 .obj_size
= sizeof(struct inet_sock
),
983 EXPORT_SYMBOL(ping_prot
);
985 #ifdef CONFIG_PROC_FS
987 static struct sock
*ping_get_first(struct seq_file
*seq
, int start
)
990 struct ping_iter_state
*state
= seq
->private;
991 struct net
*net
= seq_file_net(seq
);
993 for (state
->bucket
= start
; state
->bucket
< PING_HTABLE_SIZE
;
995 struct hlist_nulls_node
*node
;
996 struct hlist_nulls_head
*hslot
;
998 hslot
= &ping_table
.hash
[state
->bucket
];
1000 if (hlist_nulls_empty(hslot
))
1003 sk_nulls_for_each(sk
, node
, hslot
) {
1004 if (net_eq(sock_net(sk
), net
) &&
1005 sk
->sk_family
== state
->family
)
1014 static struct sock
*ping_get_next(struct seq_file
*seq
, struct sock
*sk
)
1016 struct ping_iter_state
*state
= seq
->private;
1017 struct net
*net
= seq_file_net(seq
);
1020 sk
= sk_nulls_next(sk
);
1021 } while (sk
&& (!net_eq(sock_net(sk
), net
)));
1024 return ping_get_first(seq
, state
->bucket
+ 1);
1028 static struct sock
*ping_get_idx(struct seq_file
*seq
, loff_t pos
)
1030 struct sock
*sk
= ping_get_first(seq
, 0);
1033 while (pos
&& (sk
= ping_get_next(seq
, sk
)) != NULL
)
1035 return pos
? NULL
: sk
;
1038 void *ping_seq_start(struct seq_file
*seq
, loff_t
*pos
, sa_family_t family
)
1040 struct ping_iter_state
*state
= seq
->private;
1042 state
->family
= family
;
1044 read_lock_bh(&ping_table
.lock
);
1046 return *pos
? ping_get_idx(seq
, *pos
-1) : SEQ_START_TOKEN
;
1048 EXPORT_SYMBOL_GPL(ping_seq_start
);
1050 static void *ping_v4_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1052 return ping_seq_start(seq
, pos
, AF_INET
);
1055 void *ping_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1059 if (v
== SEQ_START_TOKEN
)
1060 sk
= ping_get_idx(seq
, 0);
1062 sk
= ping_get_next(seq
, v
);
1067 EXPORT_SYMBOL_GPL(ping_seq_next
);
1069 void ping_seq_stop(struct seq_file
*seq
, void *v
)
1071 read_unlock_bh(&ping_table
.lock
);
1073 EXPORT_SYMBOL_GPL(ping_seq_stop
);
1075 static void ping_v4_format_sock(struct sock
*sp
, struct seq_file
*f
,
1076 int bucket
, int *len
)
1078 struct inet_sock
*inet
= inet_sk(sp
);
1079 __be32 dest
= inet
->inet_daddr
;
1080 __be32 src
= inet
->inet_rcv_saddr
;
1081 __u16 destp
= ntohs(inet
->inet_dport
);
1082 __u16 srcp
= ntohs(inet
->inet_sport
);
1084 seq_printf(f
, "%5d: %08X:%04X %08X:%04X"
1085 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %pK %d%n",
1086 bucket
, src
, srcp
, dest
, destp
, sp
->sk_state
,
1087 sk_wmem_alloc_get(sp
),
1088 sk_rmem_alloc_get(sp
),
1090 from_kuid_munged(seq_user_ns(f
), sock_i_uid(sp
)),
1092 atomic_read(&sp
->sk_refcnt
), sp
,
1093 atomic_read(&sp
->sk_drops
), len
);
1096 static int ping_v4_seq_show(struct seq_file
*seq
, void *v
)
1098 if (v
== SEQ_START_TOKEN
)
1099 seq_printf(seq
, "%-127s\n",
1100 " sl local_address rem_address st tx_queue "
1101 "rx_queue tr tm->when retrnsmt uid timeout "
1102 "inode ref pointer drops");
1104 struct ping_iter_state
*state
= seq
->private;
1107 ping_v4_format_sock(v
, seq
, state
->bucket
, &len
);
1108 seq_printf(seq
, "%*s\n", 127 - len
, "");
1113 static const struct seq_operations ping_v4_seq_ops
= {
1114 .show
= ping_v4_seq_show
,
1115 .start
= ping_v4_seq_start
,
1116 .next
= ping_seq_next
,
1117 .stop
= ping_seq_stop
,
1120 static int ping_seq_open(struct inode
*inode
, struct file
*file
)
1122 struct ping_seq_afinfo
*afinfo
= PDE_DATA(inode
);
1123 return seq_open_net(inode
, file
, &afinfo
->seq_ops
,
1124 sizeof(struct ping_iter_state
));
1127 const struct file_operations ping_seq_fops
= {
1128 .open
= ping_seq_open
,
1130 .llseek
= seq_lseek
,
1131 .release
= seq_release_net
,
1133 EXPORT_SYMBOL_GPL(ping_seq_fops
);
1135 static struct ping_seq_afinfo ping_v4_seq_afinfo
= {
1138 .seq_fops
= &ping_seq_fops
,
1140 .start
= ping_v4_seq_start
,
1141 .show
= ping_v4_seq_show
,
1142 .next
= ping_seq_next
,
1143 .stop
= ping_seq_stop
,
1147 int ping_proc_register(struct net
*net
, struct ping_seq_afinfo
*afinfo
)
1149 struct proc_dir_entry
*p
;
1150 p
= proc_create_data(afinfo
->name
, S_IRUGO
, net
->proc_net
,
1151 afinfo
->seq_fops
, afinfo
);
1156 EXPORT_SYMBOL_GPL(ping_proc_register
);
1158 void ping_proc_unregister(struct net
*net
, struct ping_seq_afinfo
*afinfo
)
1160 remove_proc_entry(afinfo
->name
, net
->proc_net
);
1162 EXPORT_SYMBOL_GPL(ping_proc_unregister
);
1164 static int __net_init
ping_v4_proc_init_net(struct net
*net
)
1166 return ping_proc_register(net
, &ping_v4_seq_afinfo
);
1169 static void __net_exit
ping_v4_proc_exit_net(struct net
*net
)
1171 ping_proc_unregister(net
, &ping_v4_seq_afinfo
);
1174 static struct pernet_operations ping_v4_net_ops
= {
1175 .init
= ping_v4_proc_init_net
,
1176 .exit
= ping_v4_proc_exit_net
,
1179 int __init
ping_proc_init(void)
1181 return register_pernet_subsys(&ping_v4_net_ops
);
1184 void ping_proc_exit(void)
1186 unregister_pernet_subsys(&ping_v4_net_ops
);
1191 void __init
ping_init(void)
1195 for (i
= 0; i
< PING_HTABLE_SIZE
; i
++)
1196 INIT_HLIST_NULLS_HEAD(&ping_table
.hash
[i
], i
);
1197 rwlock_init(&ping_table
.lock
);