proc.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  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. * This file implements the various access functions for the
  8. * PROC file system. This is very similar to the IPv4 version,
  9. * except it reports the sockets in the INET6 address family.
  10. *
  11. * Authors: David S. Miller (davem@caip.rutgers.edu)
  12. * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
  13. */
  14. #include <linux/socket.h>
  15. #include <linux/net.h>
  16. #include <linux/ipv6.h>
  17. #include <linux/proc_fs.h>
  18. #include <linux/seq_file.h>
  19. #include <linux/stddef.h>
  20. #include <linux/export.h>
  21. #include <net/net_namespace.h>
  22. #include <net/ip.h>
  23. #include <net/sock.h>
  24. #include <net/tcp.h>
  25. #include <net/udp.h>
  26. #include <net/transp_v6.h>
  27. #include <net/ipv6.h>
  28. #define MAX4(a, b, c, d) \
  29. MAX_T(u32, MAX_T(u32, a, b), MAX_T(u32, c, d))
  30. #define SNMP_MIB_MAX MAX4(UDP_MIB_MAX, TCP_MIB_MAX, \
  31. IPSTATS_MIB_MAX, ICMP_MIB_MAX)
  32. static int sockstat6_seq_show(struct seq_file *seq, void *v)
  33. {
  34. struct net *net = seq->private;
  35. seq_printf(seq, "TCP6: inuse %d\n",
  36. sock_prot_inuse_get(net, &tcpv6_prot));
  37. seq_printf(seq, "UDP6: inuse %d\n",
  38. sock_prot_inuse_get(net, &udpv6_prot));
  39. seq_printf(seq, "UDPLITE6: inuse %d\n",
  40. sock_prot_inuse_get(net, &udplitev6_prot));
  41. seq_printf(seq, "RAW6: inuse %d\n",
  42. sock_prot_inuse_get(net, &rawv6_prot));
  43. seq_printf(seq, "FRAG6: inuse %u memory %lu\n",
  44. atomic_read(&net->ipv6.fqdir->rhashtable.nelems),
  45. frag_mem_limit(net->ipv6.fqdir));
  46. return 0;
  47. }
  48. static const struct snmp_mib snmp6_ipstats_list[] = {
  49. /* ipv6 mib according to RFC 2465 */
  50. SNMP_MIB_ITEM("Ip6InReceives", IPSTATS_MIB_INPKTS),
  51. SNMP_MIB_ITEM("Ip6InHdrErrors", IPSTATS_MIB_INHDRERRORS),
  52. SNMP_MIB_ITEM("Ip6InTooBigErrors", IPSTATS_MIB_INTOOBIGERRORS),
  53. SNMP_MIB_ITEM("Ip6InNoRoutes", IPSTATS_MIB_INNOROUTES),
  54. SNMP_MIB_ITEM("Ip6InAddrErrors", IPSTATS_MIB_INADDRERRORS),
  55. SNMP_MIB_ITEM("Ip6InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS),
  56. SNMP_MIB_ITEM("Ip6InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS),
  57. SNMP_MIB_ITEM("Ip6InDiscards", IPSTATS_MIB_INDISCARDS),
  58. SNMP_MIB_ITEM("Ip6InDelivers", IPSTATS_MIB_INDELIVERS),
  59. SNMP_MIB_ITEM("Ip6OutForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS),
  60. SNMP_MIB_ITEM("Ip6OutRequests", IPSTATS_MIB_OUTREQUESTS),
  61. SNMP_MIB_ITEM("Ip6OutDiscards", IPSTATS_MIB_OUTDISCARDS),
  62. SNMP_MIB_ITEM("Ip6OutNoRoutes", IPSTATS_MIB_OUTNOROUTES),
  63. SNMP_MIB_ITEM("Ip6ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT),
  64. SNMP_MIB_ITEM("Ip6ReasmReqds", IPSTATS_MIB_REASMREQDS),
  65. SNMP_MIB_ITEM("Ip6ReasmOKs", IPSTATS_MIB_REASMOKS),
  66. SNMP_MIB_ITEM("Ip6ReasmFails", IPSTATS_MIB_REASMFAILS),
  67. SNMP_MIB_ITEM("Ip6FragOKs", IPSTATS_MIB_FRAGOKS),
  68. SNMP_MIB_ITEM("Ip6FragFails", IPSTATS_MIB_FRAGFAILS),
  69. SNMP_MIB_ITEM("Ip6FragCreates", IPSTATS_MIB_FRAGCREATES),
  70. SNMP_MIB_ITEM("Ip6InMcastPkts", IPSTATS_MIB_INMCASTPKTS),
  71. SNMP_MIB_ITEM("Ip6OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS),
  72. SNMP_MIB_ITEM("Ip6InOctets", IPSTATS_MIB_INOCTETS),
  73. SNMP_MIB_ITEM("Ip6OutOctets", IPSTATS_MIB_OUTOCTETS),
  74. SNMP_MIB_ITEM("Ip6InMcastOctets", IPSTATS_MIB_INMCASTOCTETS),
  75. SNMP_MIB_ITEM("Ip6OutMcastOctets", IPSTATS_MIB_OUTMCASTOCTETS),
  76. SNMP_MIB_ITEM("Ip6InBcastOctets", IPSTATS_MIB_INBCASTOCTETS),
  77. SNMP_MIB_ITEM("Ip6OutBcastOctets", IPSTATS_MIB_OUTBCASTOCTETS),
  78. /* IPSTATS_MIB_CSUMERRORS is not relevant in IPv6 (no checksum) */
  79. SNMP_MIB_ITEM("Ip6InNoECTPkts", IPSTATS_MIB_NOECTPKTS),
  80. SNMP_MIB_ITEM("Ip6InECT1Pkts", IPSTATS_MIB_ECT1PKTS),
  81. SNMP_MIB_ITEM("Ip6InECT0Pkts", IPSTATS_MIB_ECT0PKTS),
  82. SNMP_MIB_ITEM("Ip6InCEPkts", IPSTATS_MIB_CEPKTS),
  83. SNMP_MIB_ITEM("Ip6OutTransmits", IPSTATS_MIB_OUTPKTS),
  84. };
  85. static const struct snmp_mib snmp6_icmp6_list[] = {
  86. /* icmpv6 mib according to RFC 2466 */
  87. SNMP_MIB_ITEM("Icmp6InMsgs", ICMP6_MIB_INMSGS),
  88. SNMP_MIB_ITEM("Icmp6InErrors", ICMP6_MIB_INERRORS),
  89. SNMP_MIB_ITEM("Icmp6OutMsgs", ICMP6_MIB_OUTMSGS),
  90. SNMP_MIB_ITEM("Icmp6OutErrors", ICMP6_MIB_OUTERRORS),
  91. SNMP_MIB_ITEM("Icmp6InCsumErrors", ICMP6_MIB_CSUMERRORS),
  92. /* ICMP6_MIB_RATELIMITHOST needs to be last, see snmp6_dev_seq_show(). */
  93. SNMP_MIB_ITEM("Icmp6OutRateLimitHost", ICMP6_MIB_RATELIMITHOST),
  94. };
  95. static const struct snmp_mib snmp6_udp6_list[] = {
  96. SNMP_MIB_ITEM("Udp6InDatagrams", UDP_MIB_INDATAGRAMS),
  97. SNMP_MIB_ITEM("Udp6NoPorts", UDP_MIB_NOPORTS),
  98. SNMP_MIB_ITEM("Udp6InErrors", UDP_MIB_INERRORS),
  99. SNMP_MIB_ITEM("Udp6OutDatagrams", UDP_MIB_OUTDATAGRAMS),
  100. SNMP_MIB_ITEM("Udp6RcvbufErrors", UDP_MIB_RCVBUFERRORS),
  101. SNMP_MIB_ITEM("Udp6SndbufErrors", UDP_MIB_SNDBUFERRORS),
  102. SNMP_MIB_ITEM("Udp6InCsumErrors", UDP_MIB_CSUMERRORS),
  103. SNMP_MIB_ITEM("Udp6IgnoredMulti", UDP_MIB_IGNOREDMULTI),
  104. SNMP_MIB_ITEM("Udp6MemErrors", UDP_MIB_MEMERRORS),
  105. };
  106. static const struct snmp_mib snmp6_udplite6_list[] = {
  107. SNMP_MIB_ITEM("UdpLite6InDatagrams", UDP_MIB_INDATAGRAMS),
  108. SNMP_MIB_ITEM("UdpLite6NoPorts", UDP_MIB_NOPORTS),
  109. SNMP_MIB_ITEM("UdpLite6InErrors", UDP_MIB_INERRORS),
  110. SNMP_MIB_ITEM("UdpLite6OutDatagrams", UDP_MIB_OUTDATAGRAMS),
  111. SNMP_MIB_ITEM("UdpLite6RcvbufErrors", UDP_MIB_RCVBUFERRORS),
  112. SNMP_MIB_ITEM("UdpLite6SndbufErrors", UDP_MIB_SNDBUFERRORS),
  113. SNMP_MIB_ITEM("UdpLite6InCsumErrors", UDP_MIB_CSUMERRORS),
  114. SNMP_MIB_ITEM("UdpLite6MemErrors", UDP_MIB_MEMERRORS),
  115. };
  116. static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib)
  117. {
  118. char name[32];
  119. int i;
  120. /* print by name -- deprecated items */
  121. for (i = 0; i < ICMP6MSG_MIB_MAX; i++) {
  122. const char *p = NULL;
  123. int icmptype;
  124. #define CASE(TYP, STR) case TYP: p = STR; break;
  125. icmptype = i & 0xff;
  126. switch (icmptype) {
  127. /* RFC 4293 v6 ICMPMsgStatsTable; named items for RFC 2466 compatibility */
  128. CASE(ICMPV6_DEST_UNREACH, "DestUnreachs")
  129. CASE(ICMPV6_PKT_TOOBIG, "PktTooBigs")
  130. CASE(ICMPV6_TIME_EXCEED, "TimeExcds")
  131. CASE(ICMPV6_PARAMPROB, "ParmProblems")
  132. CASE(ICMPV6_ECHO_REQUEST, "Echos")
  133. CASE(ICMPV6_ECHO_REPLY, "EchoReplies")
  134. CASE(ICMPV6_MGM_QUERY, "GroupMembQueries")
  135. CASE(ICMPV6_MGM_REPORT, "GroupMembResponses")
  136. CASE(ICMPV6_MGM_REDUCTION, "GroupMembReductions")
  137. CASE(ICMPV6_MLD2_REPORT, "MLDv2Reports")
  138. CASE(NDISC_ROUTER_ADVERTISEMENT, "RouterAdvertisements")
  139. CASE(NDISC_ROUTER_SOLICITATION, "RouterSolicits")
  140. CASE(NDISC_NEIGHBOUR_ADVERTISEMENT, "NeighborAdvertisements")
  141. CASE(NDISC_NEIGHBOUR_SOLICITATION, "NeighborSolicits")
  142. CASE(NDISC_REDIRECT, "Redirects")
  143. }
  144. #undef CASE
  145. if (!p) /* don't print un-named types here */
  146. continue;
  147. snprintf(name, sizeof(name), "Icmp6%s%s",
  148. i & 0x100 ? "Out" : "In", p);
  149. seq_printf(seq, "%-32s\t%lu\n", name,
  150. atomic_long_read(smib + i));
  151. }
  152. /* print by number (nonzero only) - ICMPMsgStat format */
  153. for (i = 0; i < ICMP6MSG_MIB_MAX; i++) {
  154. unsigned long val;
  155. val = atomic_long_read(smib + i);
  156. if (!val)
  157. continue;
  158. snprintf(name, sizeof(name), "Icmp6%sType%u",
  159. i & 0x100 ? "Out" : "In", i & 0xff);
  160. seq_printf(seq, "%-32s\t%lu\n", name, val);
  161. }
  162. }
  163. /* can be called either with percpu mib (pcpumib != NULL),
  164. * or shared one (smib != NULL)
  165. */
  166. static void snmp6_seq_show_item(struct seq_file *seq, void __percpu *pcpumib,
  167. atomic_long_t *smib,
  168. const struct snmp_mib *itemlist,
  169. int cnt)
  170. {
  171. unsigned long buff[SNMP_MIB_MAX];
  172. int i;
  173. if (pcpumib) {
  174. memset(buff, 0, sizeof(unsigned long) * cnt);
  175. snmp_get_cpu_field_batch_cnt(buff, itemlist, cnt, pcpumib);
  176. for (i = 0; i < cnt; i++)
  177. seq_printf(seq, "%-32s\t%lu\n",
  178. itemlist[i].name, buff[i]);
  179. } else {
  180. for (i = 0; i < cnt; i++)
  181. seq_printf(seq, "%-32s\t%lu\n", itemlist[i].name,
  182. atomic_long_read(smib + itemlist[i].entry));
  183. }
  184. }
  185. static void snmp6_seq_show_item64(struct seq_file *seq, void __percpu *mib,
  186. const struct snmp_mib *itemlist,
  187. int cnt, size_t syncpoff)
  188. {
  189. u64 buff64[SNMP_MIB_MAX];
  190. int i;
  191. memset(buff64, 0, sizeof(u64) * cnt);
  192. snmp_get_cpu_field64_batch_cnt(buff64, itemlist, cnt, mib, syncpoff);
  193. for (i = 0; i < cnt; i++)
  194. seq_printf(seq, "%-32s\t%llu\n", itemlist[i].name, buff64[i]);
  195. }
  196. static int snmp6_seq_show(struct seq_file *seq, void *v)
  197. {
  198. struct net *net = (struct net *)seq->private;
  199. snmp6_seq_show_item64(seq, net->mib.ipv6_statistics,
  200. snmp6_ipstats_list,
  201. ARRAY_SIZE(snmp6_ipstats_list),
  202. offsetof(struct ipstats_mib, syncp));
  203. snmp6_seq_show_item(seq, net->mib.icmpv6_statistics,
  204. NULL, snmp6_icmp6_list,
  205. ARRAY_SIZE(snmp6_icmp6_list));
  206. snmp6_seq_show_icmpv6msg(seq, net->mib.icmpv6msg_statistics->mibs);
  207. snmp6_seq_show_item(seq, net->mib.udp_stats_in6,
  208. NULL, snmp6_udp6_list,
  209. ARRAY_SIZE(snmp6_udp6_list));
  210. snmp6_seq_show_item(seq, net->mib.udplite_stats_in6,
  211. NULL, snmp6_udplite6_list,
  212. ARRAY_SIZE(snmp6_udplite6_list));
  213. return 0;
  214. }
  215. static int snmp6_dev_seq_show(struct seq_file *seq, void *v)
  216. {
  217. struct inet6_dev *idev = (struct inet6_dev *)seq->private;
  218. seq_printf(seq, "%-32s\t%u\n", "ifIndex", idev->dev->ifindex);
  219. snmp6_seq_show_item64(seq, idev->stats.ipv6,
  220. snmp6_ipstats_list,
  221. ARRAY_SIZE(snmp6_ipstats_list),
  222. offsetof(struct ipstats_mib, syncp));
  223. /* Per idev icmp stats do not have ICMP6_MIB_RATELIMITHOST */
  224. snmp6_seq_show_item(seq, NULL, idev->stats.icmpv6dev->mibs,
  225. snmp6_icmp6_list, ARRAY_SIZE(snmp6_icmp6_list) - 1);
  226. snmp6_seq_show_icmpv6msg(seq, idev->stats.icmpv6msgdev->mibs);
  227. return 0;
  228. }
  229. int snmp6_register_dev(struct inet6_dev *idev)
  230. {
  231. struct proc_dir_entry *p;
  232. struct net *net;
  233. if (!idev || !idev->dev)
  234. return -EINVAL;
  235. net = dev_net(idev->dev);
  236. if (!net->mib.proc_net_devsnmp6)
  237. return -ENOENT;
  238. p = proc_create_single_data(idev->dev->name, 0444,
  239. net->mib.proc_net_devsnmp6, snmp6_dev_seq_show, idev);
  240. if (!p)
  241. return -ENOMEM;
  242. idev->stats.proc_dir_entry = p;
  243. return 0;
  244. }
  245. int snmp6_unregister_dev(struct inet6_dev *idev)
  246. {
  247. struct net *net = dev_net(idev->dev);
  248. if (!net->mib.proc_net_devsnmp6)
  249. return -ENOENT;
  250. if (!idev->stats.proc_dir_entry)
  251. return -EINVAL;
  252. proc_remove(idev->stats.proc_dir_entry);
  253. idev->stats.proc_dir_entry = NULL;
  254. return 0;
  255. }
  256. static int __net_init ipv6_proc_init_net(struct net *net)
  257. {
  258. if (!proc_create_net_single("sockstat6", 0444, net->proc_net,
  259. sockstat6_seq_show, NULL))
  260. return -ENOMEM;
  261. if (!proc_create_net_single("snmp6", 0444, net->proc_net,
  262. snmp6_seq_show, NULL))
  263. goto proc_snmp6_fail;
  264. net->mib.proc_net_devsnmp6 = proc_mkdir("dev_snmp6", net->proc_net);
  265. if (!net->mib.proc_net_devsnmp6)
  266. goto proc_dev_snmp6_fail;
  267. return 0;
  268. proc_dev_snmp6_fail:
  269. remove_proc_entry("snmp6", net->proc_net);
  270. proc_snmp6_fail:
  271. remove_proc_entry("sockstat6", net->proc_net);
  272. return -ENOMEM;
  273. }
  274. static void __net_exit ipv6_proc_exit_net(struct net *net)
  275. {
  276. remove_proc_entry("sockstat6", net->proc_net);
  277. remove_proc_entry("dev_snmp6", net->proc_net);
  278. remove_proc_entry("snmp6", net->proc_net);
  279. }
  280. static struct pernet_operations ipv6_proc_ops = {
  281. .init = ipv6_proc_init_net,
  282. .exit = ipv6_proc_exit_net,
  283. };
  284. int __init ipv6_misc_proc_init(void)
  285. {
  286. return register_pernet_subsys(&ipv6_proc_ops);
  287. }
  288. void ipv6_misc_proc_exit(void)
  289. {
  290. unregister_pernet_subsys(&ipv6_proc_ops);
  291. }