udplite.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * UDPLITE An implementation of the UDP-Lite protocol (RFC 3828).
  3. *
  4. * Version: $Id: udplite.c,v 1.25 2006/10/19 07:22:36 gerrit Exp $
  5. *
  6. * Authors: Gerrit Renker <gerrit@erg.abdn.ac.uk>
  7. *
  8. * Changes:
  9. * Fixes:
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. */
  15. #include "udp_impl.h"
  16. DEFINE_SNMP_STAT(struct udp_mib, udplite_statistics) __read_mostly;
  17. struct hlist_head udplite_hash[UDP_HTABLE_SIZE];
  18. static int udplite_port_rover;
  19. int udplite_get_port(struct sock *sk, unsigned short p,
  20. const struct udp_get_port_ops *ops)
  21. {
  22. return __udp_lib_get_port(sk, p, udplite_hash,
  23. &udplite_port_rover, ops);
  24. }
  25. static int udplite_v4_get_port(struct sock *sk, unsigned short snum)
  26. {
  27. return udplite_get_port(sk, snum, &udp_ipv4_ops);
  28. }
  29. static int udplite_rcv(struct sk_buff *skb)
  30. {
  31. return __udp4_lib_rcv(skb, udplite_hash, IPPROTO_UDPLITE);
  32. }
  33. static void udplite_err(struct sk_buff *skb, u32 info)
  34. {
  35. return __udp4_lib_err(skb, info, udplite_hash);
  36. }
  37. static struct net_protocol udplite_protocol = {
  38. .handler = udplite_rcv,
  39. .err_handler = udplite_err,
  40. .no_policy = 1,
  41. };
  42. struct proto udplite_prot = {
  43. .name = "UDP-Lite",
  44. .owner = THIS_MODULE,
  45. .close = udp_lib_close,
  46. .connect = ip4_datagram_connect,
  47. .disconnect = udp_disconnect,
  48. .ioctl = udp_ioctl,
  49. .init = udplite_sk_init,
  50. .destroy = udp_destroy_sock,
  51. .setsockopt = udp_setsockopt,
  52. .getsockopt = udp_getsockopt,
  53. .sendmsg = udp_sendmsg,
  54. .recvmsg = udp_recvmsg,
  55. .sendpage = udp_sendpage,
  56. .backlog_rcv = udp_queue_rcv_skb,
  57. .hash = udp_lib_hash,
  58. .unhash = udp_lib_unhash,
  59. .get_port = udplite_v4_get_port,
  60. .obj_size = sizeof(struct udp_sock),
  61. #ifdef CONFIG_COMPAT
  62. .compat_setsockopt = compat_udp_setsockopt,
  63. .compat_getsockopt = compat_udp_getsockopt,
  64. #endif
  65. };
  66. static struct inet_protosw udplite4_protosw = {
  67. .type = SOCK_DGRAM,
  68. .protocol = IPPROTO_UDPLITE,
  69. .prot = &udplite_prot,
  70. .ops = &inet_dgram_ops,
  71. .capability = -1,
  72. .no_check = 0, /* must checksum (RFC 3828) */
  73. .flags = INET_PROTOSW_PERMANENT,
  74. };
  75. #ifdef CONFIG_PROC_FS
  76. static struct file_operations udplite4_seq_fops;
  77. static struct udp_seq_afinfo udplite4_seq_afinfo = {
  78. .owner = THIS_MODULE,
  79. .name = "udplite",
  80. .family = AF_INET,
  81. .hashtable = udplite_hash,
  82. .seq_show = udp4_seq_show,
  83. .seq_fops = &udplite4_seq_fops,
  84. };
  85. #endif
  86. void __init udplite4_register(void)
  87. {
  88. if (proto_register(&udplite_prot, 1))
  89. goto out_register_err;
  90. if (inet_add_protocol(&udplite_protocol, IPPROTO_UDPLITE) < 0)
  91. goto out_unregister_proto;
  92. inet_register_protosw(&udplite4_protosw);
  93. #ifdef CONFIG_PROC_FS
  94. if (udp_proc_register(&udplite4_seq_afinfo)) /* udplite4_proc_init() */
  95. printk(KERN_ERR "%s: Cannot register /proc!\n", __FUNCTION__);
  96. #endif
  97. return;
  98. out_unregister_proto:
  99. proto_unregister(&udplite_prot);
  100. out_register_err:
  101. printk(KERN_CRIT "%s: Cannot add UDP-Lite protocol.\n", __FUNCTION__);
  102. }
  103. EXPORT_SYMBOL(udplite_hash);
  104. EXPORT_SYMBOL(udplite_prot);
  105. EXPORT_SYMBOL(udplite_get_port);