ping.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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. * "Ping" sockets
  7. *
  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.
  12. *
  13. * Based on ipv4/ping.c code.
  14. *
  15. * Authors: Lorenzo Colitti (IPv6 support)
  16. * Vasiliy Kulikov / Openwall (IPv4 implementation, for Linux 2.6),
  17. * Pavel Kankovsky (IPv4 implementation, for Linux 2.4.32)
  18. *
  19. */
  20. #include <net/addrconf.h>
  21. #include <net/ipv6.h>
  22. #include <net/ip6_route.h>
  23. #include <net/protocol.h>
  24. #include <net/udp.h>
  25. #include <net/transp_v6.h>
  26. #include <net/ping.h>
  27. /* Compatibility glue so we can support IPv6 when it's compiled as a module */
  28. static int dummy_ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len,
  29. int *addr_len)
  30. {
  31. return -EAFNOSUPPORT;
  32. }
  33. static void dummy_ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
  34. struct sk_buff *skb)
  35. {
  36. }
  37. static int dummy_icmpv6_err_convert(u8 type, u8 code, int *err)
  38. {
  39. return -EAFNOSUPPORT;
  40. }
  41. static void dummy_ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
  42. __be16 port, u32 info, u8 *payload) {}
  43. static int dummy_ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
  44. const struct net_device *dev, int strict)
  45. {
  46. return 0;
  47. }
  48. static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
  49. {
  50. struct inet_sock *inet = inet_sk(sk);
  51. struct ipv6_pinfo *np = inet6_sk(sk);
  52. struct icmp6hdr user_icmph;
  53. int addr_type;
  54. struct in6_addr *daddr;
  55. int iif = 0;
  56. struct flowi6 fl6;
  57. int err;
  58. int hlimit;
  59. struct dst_entry *dst;
  60. struct rt6_info *rt;
  61. struct pingfakehdr pfh;
  62. pr_debug("ping_v6_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);
  63. err = ping_common_sendmsg(AF_INET6, msg, len, &user_icmph,
  64. sizeof(user_icmph));
  65. if (err)
  66. return err;
  67. if (msg->msg_name) {
  68. DECLARE_SOCKADDR(struct sockaddr_in6 *, u, msg->msg_name);
  69. if (msg->msg_namelen < sizeof(*u))
  70. return -EINVAL;
  71. if (u->sin6_family != AF_INET6) {
  72. return -EAFNOSUPPORT;
  73. }
  74. if (sk->sk_bound_dev_if &&
  75. sk->sk_bound_dev_if != u->sin6_scope_id) {
  76. return -EINVAL;
  77. }
  78. daddr = &(u->sin6_addr);
  79. iif = u->sin6_scope_id;
  80. } else {
  81. if (sk->sk_state != TCP_ESTABLISHED)
  82. return -EDESTADDRREQ;
  83. daddr = &sk->sk_v6_daddr;
  84. }
  85. if (!iif)
  86. iif = sk->sk_bound_dev_if;
  87. addr_type = ipv6_addr_type(daddr);
  88. if (__ipv6_addr_needs_scope_id(addr_type) && !iif)
  89. return -EINVAL;
  90. if (addr_type & IPV6_ADDR_MAPPED)
  91. return -EINVAL;
  92. /* TODO: use ip6_datagram_send_ctl to get options from cmsg */
  93. memset(&fl6, 0, sizeof(fl6));
  94. fl6.flowi6_proto = IPPROTO_ICMPV6;
  95. fl6.saddr = np->saddr;
  96. fl6.daddr = *daddr;
  97. fl6.flowi6_mark = sk->sk_mark;
  98. fl6.fl6_icmp_type = user_icmph.icmp6_type;
  99. fl6.fl6_icmp_code = user_icmph.icmp6_code;
  100. security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
  101. if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
  102. fl6.flowi6_oif = np->mcast_oif;
  103. else if (!fl6.flowi6_oif)
  104. fl6.flowi6_oif = np->ucast_oif;
  105. dst = ip6_sk_dst_lookup_flow(sk, &fl6, daddr);
  106. if (IS_ERR(dst))
  107. return PTR_ERR(dst);
  108. rt = (struct rt6_info *) dst;
  109. np = inet6_sk(sk);
  110. if (!np)
  111. return -EBADF;
  112. if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
  113. fl6.flowi6_oif = np->mcast_oif;
  114. else if (!fl6.flowi6_oif)
  115. fl6.flowi6_oif = np->ucast_oif;
  116. pfh.icmph.type = user_icmph.icmp6_type;
  117. pfh.icmph.code = user_icmph.icmp6_code;
  118. pfh.icmph.checksum = 0;
  119. pfh.icmph.un.echo.id = inet->inet_sport;
  120. pfh.icmph.un.echo.sequence = user_icmph.icmp6_sequence;
  121. pfh.msg = msg;
  122. pfh.wcheck = 0;
  123. pfh.family = AF_INET6;
  124. hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
  125. lock_sock(sk);
  126. err = ip6_append_data(sk, ping_getfrag, &pfh, len,
  127. 0, hlimit,
  128. np->tclass, NULL, &fl6, rt,
  129. MSG_DONTWAIT, np->dontfrag);
  130. if (err) {
  131. ICMP6_INC_STATS(sock_net(sk), rt->rt6i_idev,
  132. ICMP6_MIB_OUTERRORS);
  133. ip6_flush_pending_frames(sk);
  134. } else {
  135. err = icmpv6_push_pending_frames(sk, &fl6,
  136. (struct icmp6hdr *) &pfh.icmph,
  137. len);
  138. }
  139. release_sock(sk);
  140. if (err)
  141. return err;
  142. return len;
  143. }
  144. struct proto pingv6_prot = {
  145. .name = "PINGv6",
  146. .owner = THIS_MODULE,
  147. .init = ping_init_sock,
  148. .close = ping_close,
  149. .connect = ip6_datagram_connect_v6_only,
  150. .disconnect = udp_disconnect,
  151. .setsockopt = ipv6_setsockopt,
  152. .getsockopt = ipv6_getsockopt,
  153. .sendmsg = ping_v6_sendmsg,
  154. .recvmsg = ping_recvmsg,
  155. .bind = ping_bind,
  156. .backlog_rcv = ping_queue_rcv_skb,
  157. .hash = ping_hash,
  158. .unhash = ping_unhash,
  159. .get_port = ping_get_port,
  160. .obj_size = sizeof(struct raw6_sock),
  161. };
  162. EXPORT_SYMBOL_GPL(pingv6_prot);
  163. static struct inet_protosw pingv6_protosw = {
  164. .type = SOCK_DGRAM,
  165. .protocol = IPPROTO_ICMPV6,
  166. .prot = &pingv6_prot,
  167. .ops = &inet6_dgram_ops,
  168. .flags = INET_PROTOSW_REUSE,
  169. };
  170. #ifdef CONFIG_PROC_FS
  171. static void *ping_v6_seq_start(struct seq_file *seq, loff_t *pos)
  172. {
  173. return ping_seq_start(seq, pos, AF_INET6);
  174. }
  175. static int ping_v6_seq_show(struct seq_file *seq, void *v)
  176. {
  177. if (v == SEQ_START_TOKEN) {
  178. seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
  179. } else {
  180. int bucket = ((struct ping_iter_state *) seq->private)->bucket;
  181. struct inet_sock *inet = inet_sk(v);
  182. __u16 srcp = ntohs(inet->inet_sport);
  183. __u16 destp = ntohs(inet->inet_dport);
  184. ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
  185. }
  186. return 0;
  187. }
  188. static struct ping_seq_afinfo ping_v6_seq_afinfo = {
  189. .name = "icmp6",
  190. .family = AF_INET6,
  191. .seq_fops = &ping_seq_fops,
  192. .seq_ops = {
  193. .start = ping_v6_seq_start,
  194. .show = ping_v6_seq_show,
  195. .next = ping_seq_next,
  196. .stop = ping_seq_stop,
  197. },
  198. };
  199. static int __net_init ping_v6_proc_init_net(struct net *net)
  200. {
  201. return ping_proc_register(net, &ping_v6_seq_afinfo);
  202. }
  203. static void __net_init ping_v6_proc_exit_net(struct net *net)
  204. {
  205. return ping_proc_unregister(net, &ping_v6_seq_afinfo);
  206. }
  207. static struct pernet_operations ping_v6_net_ops = {
  208. .init = ping_v6_proc_init_net,
  209. .exit = ping_v6_proc_exit_net,
  210. };
  211. #endif
  212. int __init pingv6_init(void)
  213. {
  214. #ifdef CONFIG_PROC_FS
  215. int ret = register_pernet_subsys(&ping_v6_net_ops);
  216. if (ret)
  217. return ret;
  218. #endif
  219. pingv6_ops.ipv6_recv_error = ipv6_recv_error;
  220. pingv6_ops.ip6_datagram_recv_common_ctl = ip6_datagram_recv_common_ctl;
  221. pingv6_ops.ip6_datagram_recv_specific_ctl =
  222. ip6_datagram_recv_specific_ctl;
  223. pingv6_ops.icmpv6_err_convert = icmpv6_err_convert;
  224. pingv6_ops.ipv6_icmp_error = ipv6_icmp_error;
  225. pingv6_ops.ipv6_chk_addr = ipv6_chk_addr;
  226. return inet6_register_protosw(&pingv6_protosw);
  227. }
  228. /* This never gets called because it's not possible to unload the ipv6 module,
  229. * but just in case.
  230. */
  231. void pingv6_exit(void)
  232. {
  233. pingv6_ops.ipv6_recv_error = dummy_ipv6_recv_error;
  234. pingv6_ops.ip6_datagram_recv_common_ctl = dummy_ip6_datagram_recv_ctl;
  235. pingv6_ops.ip6_datagram_recv_specific_ctl = dummy_ip6_datagram_recv_ctl;
  236. pingv6_ops.icmpv6_err_convert = dummy_icmpv6_err_convert;
  237. pingv6_ops.ipv6_icmp_error = dummy_ipv6_icmp_error;
  238. pingv6_ops.ipv6_chk_addr = dummy_ipv6_chk_addr;
  239. #ifdef CONFIG_PROC_FS
  240. unregister_pernet_subsys(&ping_v6_net_ops);
  241. #endif
  242. inet6_unregister_protosw(&pingv6_protosw);
  243. }