PageRenderTime 51ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/kernels/linux-2.6.16-gazineu/net/ipv6/proc.c

http://snake-os.googlecode.com/
C | 301 lines | 229 code | 42 blank | 30 comment | 16 complexity | d6c6139d51f90c7e4b1b08de50216649 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.0, 0BSD, BSD-3-Clause, GPL-3.0, AGPL-1.0, CC-BY-SA-3.0
  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. * This file implements the various access functions for the
  7. * PROC file system. This is very similar to the IPv4 version,
  8. * except it reports the sockets in the INET6 address family.
  9. *
  10. * Version: $Id: proc.c,v 1.17 2002/02/01 22:01:04 davem Exp $
  11. *
  12. * Authors: David S. Miller (davem@caip.rutgers.edu)
  13. * YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
  14. *
  15. * This program is free software; you can redistribute it and/or
  16. * modify it under the terms of the GNU General Public License
  17. * as published by the Free Software Foundation; either version
  18. * 2 of the License, or (at your option) any later version.
  19. */
  20. #include <linux/config.h>
  21. #include <linux/sched.h>
  22. #include <linux/socket.h>
  23. #include <linux/net.h>
  24. #include <linux/ipv6.h>
  25. #include <linux/proc_fs.h>
  26. #include <linux/seq_file.h>
  27. #include <linux/stddef.h>
  28. #include <net/sock.h>
  29. #include <net/tcp.h>
  30. #include <net/transp_v6.h>
  31. #include <net/ipv6.h>
  32. #ifdef CONFIG_PROC_FS
  33. static struct proc_dir_entry *proc_net_devsnmp6;
  34. static int fold_prot_inuse(struct proto *proto)
  35. {
  36. int res = 0;
  37. int cpu;
  38. for_each_cpu(cpu)
  39. res += proto->stats[cpu].inuse;
  40. return res;
  41. }
  42. static int sockstat6_seq_show(struct seq_file *seq, void *v)
  43. {
  44. seq_printf(seq, "TCP6: inuse %d\n",
  45. fold_prot_inuse(&tcpv6_prot));
  46. seq_printf(seq, "UDP6: inuse %d\n",
  47. fold_prot_inuse(&udpv6_prot));
  48. seq_printf(seq, "RAW6: inuse %d\n",
  49. fold_prot_inuse(&rawv6_prot));
  50. seq_printf(seq, "FRAG6: inuse %d memory %d\n",
  51. ip6_frag_nqueues, atomic_read(&ip6_frag_mem));
  52. return 0;
  53. }
  54. static struct snmp_mib snmp6_ipstats_list[] = {
  55. /* ipv6 mib according to RFC 2465 */
  56. SNMP_MIB_ITEM("Ip6InReceives", IPSTATS_MIB_INRECEIVES),
  57. SNMP_MIB_ITEM("Ip6InHdrErrors", IPSTATS_MIB_INHDRERRORS),
  58. SNMP_MIB_ITEM("Ip6InTooBigErrors", IPSTATS_MIB_INTOOBIGERRORS),
  59. SNMP_MIB_ITEM("Ip6InNoRoutes", IPSTATS_MIB_INNOROUTES),
  60. SNMP_MIB_ITEM("Ip6InAddrErrors", IPSTATS_MIB_INADDRERRORS),
  61. SNMP_MIB_ITEM("Ip6InUnknownProtos", IPSTATS_MIB_INUNKNOWNPROTOS),
  62. SNMP_MIB_ITEM("Ip6InTruncatedPkts", IPSTATS_MIB_INTRUNCATEDPKTS),
  63. SNMP_MIB_ITEM("Ip6InDiscards", IPSTATS_MIB_INDISCARDS),
  64. SNMP_MIB_ITEM("Ip6InDelivers", IPSTATS_MIB_INDELIVERS),
  65. SNMP_MIB_ITEM("Ip6OutForwDatagrams", IPSTATS_MIB_OUTFORWDATAGRAMS),
  66. SNMP_MIB_ITEM("Ip6OutRequests", IPSTATS_MIB_OUTREQUESTS),
  67. SNMP_MIB_ITEM("Ip6OutDiscards", IPSTATS_MIB_OUTDISCARDS),
  68. SNMP_MIB_ITEM("Ip6OutNoRoutes", IPSTATS_MIB_OUTNOROUTES),
  69. SNMP_MIB_ITEM("Ip6ReasmTimeout", IPSTATS_MIB_REASMTIMEOUT),
  70. SNMP_MIB_ITEM("Ip6ReasmReqds", IPSTATS_MIB_REASMREQDS),
  71. SNMP_MIB_ITEM("Ip6ReasmOKs", IPSTATS_MIB_REASMOKS),
  72. SNMP_MIB_ITEM("Ip6ReasmFails", IPSTATS_MIB_REASMFAILS),
  73. SNMP_MIB_ITEM("Ip6FragOKs", IPSTATS_MIB_FRAGOKS),
  74. SNMP_MIB_ITEM("Ip6FragFails", IPSTATS_MIB_FRAGFAILS),
  75. SNMP_MIB_ITEM("Ip6FragCreates", IPSTATS_MIB_FRAGCREATES),
  76. SNMP_MIB_ITEM("Ip6InMcastPkts", IPSTATS_MIB_INMCASTPKTS),
  77. SNMP_MIB_ITEM("Ip6OutMcastPkts", IPSTATS_MIB_OUTMCASTPKTS),
  78. SNMP_MIB_SENTINEL
  79. };
  80. static struct snmp_mib snmp6_icmp6_list[] = {
  81. /* icmpv6 mib according to RFC 2466
  82. Exceptions: {In|Out}AdminProhibs are removed, because I see
  83. no good reasons to account them separately
  84. of another dest.unreachs.
  85. OutErrs is zero identically.
  86. OutEchos too.
  87. OutRouterAdvertisements too.
  88. OutGroupMembQueries too.
  89. */
  90. SNMP_MIB_ITEM("Icmp6InMsgs", ICMP6_MIB_INMSGS),
  91. SNMP_MIB_ITEM("Icmp6InErrors", ICMP6_MIB_INERRORS),
  92. SNMP_MIB_ITEM("Icmp6InDestUnreachs", ICMP6_MIB_INDESTUNREACHS),
  93. SNMP_MIB_ITEM("Icmp6InPktTooBigs", ICMP6_MIB_INPKTTOOBIGS),
  94. SNMP_MIB_ITEM("Icmp6InTimeExcds", ICMP6_MIB_INTIMEEXCDS),
  95. SNMP_MIB_ITEM("Icmp6InParmProblems", ICMP6_MIB_INPARMPROBLEMS),
  96. SNMP_MIB_ITEM("Icmp6InEchos", ICMP6_MIB_INECHOS),
  97. SNMP_MIB_ITEM("Icmp6InEchoReplies", ICMP6_MIB_INECHOREPLIES),
  98. SNMP_MIB_ITEM("Icmp6InGroupMembQueries", ICMP6_MIB_INGROUPMEMBQUERIES),
  99. SNMP_MIB_ITEM("Icmp6InGroupMembResponses", ICMP6_MIB_INGROUPMEMBRESPONSES),
  100. SNMP_MIB_ITEM("Icmp6InGroupMembReductions", ICMP6_MIB_INGROUPMEMBREDUCTIONS),
  101. SNMP_MIB_ITEM("Icmp6InRouterSolicits", ICMP6_MIB_INROUTERSOLICITS),
  102. SNMP_MIB_ITEM("Icmp6InRouterAdvertisements", ICMP6_MIB_INROUTERADVERTISEMENTS),
  103. SNMP_MIB_ITEM("Icmp6InNeighborSolicits", ICMP6_MIB_INNEIGHBORSOLICITS),
  104. SNMP_MIB_ITEM("Icmp6InNeighborAdvertisements", ICMP6_MIB_INNEIGHBORADVERTISEMENTS),
  105. SNMP_MIB_ITEM("Icmp6InRedirects", ICMP6_MIB_INREDIRECTS),
  106. SNMP_MIB_ITEM("Icmp6OutMsgs", ICMP6_MIB_OUTMSGS),
  107. SNMP_MIB_ITEM("Icmp6OutDestUnreachs", ICMP6_MIB_OUTDESTUNREACHS),
  108. SNMP_MIB_ITEM("Icmp6OutPktTooBigs", ICMP6_MIB_OUTPKTTOOBIGS),
  109. SNMP_MIB_ITEM("Icmp6OutTimeExcds", ICMP6_MIB_OUTTIMEEXCDS),
  110. SNMP_MIB_ITEM("Icmp6OutParmProblems", ICMP6_MIB_OUTPARMPROBLEMS),
  111. SNMP_MIB_ITEM("Icmp6OutEchoReplies", ICMP6_MIB_OUTECHOREPLIES),
  112. SNMP_MIB_ITEM("Icmp6OutRouterSolicits", ICMP6_MIB_OUTROUTERSOLICITS),
  113. SNMP_MIB_ITEM("Icmp6OutNeighborSolicits", ICMP6_MIB_OUTNEIGHBORSOLICITS),
  114. SNMP_MIB_ITEM("Icmp6OutNeighborAdvertisements", ICMP6_MIB_OUTNEIGHBORADVERTISEMENTS),
  115. SNMP_MIB_ITEM("Icmp6OutRedirects", ICMP6_MIB_OUTREDIRECTS),
  116. SNMP_MIB_ITEM("Icmp6OutGroupMembResponses", ICMP6_MIB_OUTGROUPMEMBRESPONSES),
  117. SNMP_MIB_ITEM("Icmp6OutGroupMembReductions", ICMP6_MIB_OUTGROUPMEMBREDUCTIONS),
  118. SNMP_MIB_SENTINEL
  119. };
  120. static struct snmp_mib snmp6_udp6_list[] = {
  121. SNMP_MIB_ITEM("Udp6InDatagrams", UDP_MIB_INDATAGRAMS),
  122. SNMP_MIB_ITEM("Udp6NoPorts", UDP_MIB_NOPORTS),
  123. SNMP_MIB_ITEM("Udp6InErrors", UDP_MIB_INERRORS),
  124. SNMP_MIB_ITEM("Udp6OutDatagrams", UDP_MIB_OUTDATAGRAMS),
  125. SNMP_MIB_SENTINEL
  126. };
  127. static unsigned long
  128. fold_field(void *mib[], int offt)
  129. {
  130. unsigned long res = 0;
  131. int i;
  132. for_each_cpu(i) {
  133. res += *(((unsigned long *)per_cpu_ptr(mib[0], i)) + offt);
  134. res += *(((unsigned long *)per_cpu_ptr(mib[1], i)) + offt);
  135. }
  136. return res;
  137. }
  138. static inline void
  139. snmp6_seq_show_item(struct seq_file *seq, void **mib, struct snmp_mib *itemlist)
  140. {
  141. int i;
  142. for (i=0; itemlist[i].name; i++)
  143. seq_printf(seq, "%-32s\t%lu\n", itemlist[i].name,
  144. fold_field(mib, itemlist[i].entry));
  145. }
  146. static int snmp6_seq_show(struct seq_file *seq, void *v)
  147. {
  148. struct inet6_dev *idev = (struct inet6_dev *)seq->private;
  149. if (idev) {
  150. seq_printf(seq, "%-32s\t%u\n", "ifIndex", idev->dev->ifindex);
  151. snmp6_seq_show_item(seq, (void **)idev->stats.icmpv6, snmp6_icmp6_list);
  152. } else {
  153. snmp6_seq_show_item(seq, (void **)ipv6_statistics, snmp6_ipstats_list);
  154. snmp6_seq_show_item(seq, (void **)icmpv6_statistics, snmp6_icmp6_list);
  155. snmp6_seq_show_item(seq, (void **)udp_stats_in6, snmp6_udp6_list);
  156. }
  157. return 0;
  158. }
  159. static int sockstat6_seq_open(struct inode *inode, struct file *file)
  160. {
  161. return single_open(file, sockstat6_seq_show, NULL);
  162. }
  163. static struct file_operations sockstat6_seq_fops = {
  164. .owner = THIS_MODULE,
  165. .open = sockstat6_seq_open,
  166. .read = seq_read,
  167. .llseek = seq_lseek,
  168. .release = single_release,
  169. };
  170. static int snmp6_seq_open(struct inode *inode, struct file *file)
  171. {
  172. return single_open(file, snmp6_seq_show, PDE(inode)->data);
  173. }
  174. static struct file_operations snmp6_seq_fops = {
  175. .owner = THIS_MODULE,
  176. .open = snmp6_seq_open,
  177. .read = seq_read,
  178. .llseek = seq_lseek,
  179. .release = single_release,
  180. };
  181. int snmp6_register_dev(struct inet6_dev *idev)
  182. {
  183. struct proc_dir_entry *p;
  184. if (!idev || !idev->dev)
  185. return -EINVAL;
  186. if (!proc_net_devsnmp6)
  187. return -ENOENT;
  188. p = create_proc_entry(idev->dev->name, S_IRUGO, proc_net_devsnmp6);
  189. if (!p)
  190. return -ENOMEM;
  191. p->data = idev;
  192. p->proc_fops = &snmp6_seq_fops;
  193. idev->stats.proc_dir_entry = p;
  194. return 0;
  195. }
  196. int snmp6_unregister_dev(struct inet6_dev *idev)
  197. {
  198. if (!proc_net_devsnmp6)
  199. return -ENOENT;
  200. if (!idev || !idev->stats.proc_dir_entry)
  201. return -EINVAL;
  202. remove_proc_entry(idev->stats.proc_dir_entry->name,
  203. proc_net_devsnmp6);
  204. return 0;
  205. }
  206. int __init ipv6_misc_proc_init(void)
  207. {
  208. int rc = 0;
  209. if (!proc_net_fops_create("snmp6", S_IRUGO, &snmp6_seq_fops))
  210. goto proc_snmp6_fail;
  211. proc_net_devsnmp6 = proc_mkdir("dev_snmp6", proc_net);
  212. if (!proc_net_devsnmp6)
  213. goto proc_dev_snmp6_fail;
  214. if (!proc_net_fops_create("sockstat6", S_IRUGO, &sockstat6_seq_fops))
  215. goto proc_sockstat6_fail;
  216. out:
  217. return rc;
  218. proc_sockstat6_fail:
  219. proc_net_remove("dev_snmp6");
  220. proc_dev_snmp6_fail:
  221. proc_net_remove("snmp6");
  222. proc_snmp6_fail:
  223. rc = -ENOMEM;
  224. goto out;
  225. }
  226. void ipv6_misc_proc_exit(void)
  227. {
  228. proc_net_remove("sockstat6");
  229. proc_net_remove("dev_snmp6");
  230. proc_net_remove("snmp6");
  231. }
  232. #else /* CONFIG_PROC_FS */
  233. int snmp6_register_dev(struct inet6_dev *idev)
  234. {
  235. return 0;
  236. }
  237. int snmp6_unregister_dev(struct inet6_dev *idev)
  238. {
  239. return 0;
  240. }
  241. #endif /* CONFIG_PROC_FS */
  242. int snmp6_alloc_dev(struct inet6_dev *idev)
  243. {
  244. int err = -ENOMEM;
  245. if (!idev || !idev->dev)
  246. return -EINVAL;
  247. if (snmp6_mib_init((void **)idev->stats.icmpv6, sizeof(struct icmpv6_mib),
  248. __alignof__(struct icmpv6_mib)) < 0)
  249. goto err_icmp;
  250. return 0;
  251. err_icmp:
  252. return err;
  253. }
  254. int snmp6_free_dev(struct inet6_dev *idev)
  255. {
  256. snmp6_mib_free((void **)idev->stats.icmpv6);
  257. return 0;
  258. }