sockopt.c
上传用户:xiaozhuqw
上传日期:2009-11-15
资源大小:1338k
文件大小:5k
源码类别:

网络

开发平台:

Unix_Linux

  1. /* setsockopt functions
  2.  * Copyright (C) 1999 Kunihiro Ishiguro
  3.  *
  4.  * This file is part of GNU Zebra.
  5.  *
  6.  * GNU Zebra is free software; you can redistribute it and/or modify it
  7.  * under the terms of the GNU General Public License as published by the
  8.  * Free Software Foundation; either version 2, or (at your option) any
  9.  * later version.
  10.  *
  11.  * GNU Zebra is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.  * General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with GNU Zebra; see the file COPYING.  If not, write to the Free
  18.  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  19.  * 02111-1307, USA.  
  20.  */
  21. #include <zebra.h>
  22. #include "log.h"
  23. #ifdef HAVE_IPV6
  24. /* Set IPv6 packet info to the socket. */
  25. int
  26. setsockopt_ipv6_pktinfo (int sock, int val)
  27. {
  28.   int ret;
  29.     
  30. #ifdef IPV6_RECVPKTINFO /*2292bis-01*/
  31.   ret = setsockopt(sock, IPPROTO_IPV6, IPV6_RECVPKTINFO, &val, sizeof(val));
  32.   if (ret < 0)
  33.     zlog_warn ("can't setsockopt IPV6_RECVPKTINFO : %s", strerror (errno));
  34. #else /*RFC2292*/
  35.   ret = setsockopt(sock, IPPROTO_IPV6, IPV6_PKTINFO, &val, sizeof(val));
  36.   if (ret < 0)
  37.     zlog_warn ("can't setsockopt IPV6_PKTINFO : %s", strerror (errno));
  38. #endif /* INIA_IPV6 */
  39.   return ret;
  40. }
  41. /* Set multicast hops val to the socket. */
  42. int
  43. setsockopt_ipv6_checksum (int sock, int val)
  44. {
  45.   int ret;
  46. #ifdef GNU_LINUX
  47.   ret = setsockopt(sock, IPPROTO_RAW, IPV6_CHECKSUM, &val, sizeof(val));
  48. #else
  49.   ret = setsockopt(sock, IPPROTO_IPV6, IPV6_CHECKSUM, &val, sizeof(val));
  50. #endif /* GNU_LINUX */
  51.   if (ret < 0)
  52.     zlog_warn ("can't setsockopt IPV6_CHECKSUM");
  53.   return ret;
  54. }
  55. /* Set multicast hops val to the socket. */
  56. int
  57. setsockopt_ipv6_multicast_hops (int sock, int val)
  58. {
  59.   int ret;
  60.   ret = setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &val, sizeof(val));
  61.   if (ret < 0)
  62.     zlog_warn ("can't setsockopt IPV6_MULTICAST_HOPS");
  63.   return ret;
  64. }
  65. /* Set multicast hops val to the socket. */
  66. int
  67. setsockopt_ipv6_unicast_hops (int sock, int val)
  68. {
  69.   int ret;
  70.   ret = setsockopt(sock, IPPROTO_IPV6, IPV6_UNICAST_HOPS, &val, sizeof(val));
  71.   if (ret < 0)
  72.     zlog_warn ("can't setsockopt IPV6_UNICAST_HOPS");
  73.   return ret;
  74. }
  75. int
  76. setsockopt_ipv6_hoplimit (int sock, int val)
  77. {
  78.   int ret;
  79. #ifdef IPV6_RECVHOPLIMIT /*2292bis-01*/
  80.   ret = setsockopt (sock, IPPROTO_IPV6, IPV6_RECVHOPLIMIT, &val, sizeof(val));
  81.   if (ret < 0)
  82.     zlog_warn ("can't setsockopt IPV6_RECVHOPLIMIT");
  83. #else /*RFC2292*/
  84.   ret = setsockopt (sock, IPPROTO_IPV6, IPV6_HOPLIMIT, &val, sizeof(val));
  85.   if (ret < 0)
  86.     zlog_warn ("can't setsockopt IPV6_HOPLIMIT");
  87. #endif
  88.   return ret;
  89. }
  90. /* Set multicast loop zero to the socket. */
  91. int
  92. setsockopt_ipv6_multicast_loop (int sock, int val)
  93. {
  94.   int ret;
  95.     
  96.   ret = setsockopt (sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &val,
  97.     sizeof (val));
  98.   if (ret < 0)
  99.     zlog_warn ("can't setsockopt IPV6_MULTICAST_LOOP");
  100.   return ret;
  101. }
  102. #endif /* HAVE_IPV6 */
  103. /* Set up a multicast socket options for IPv4
  104.    This is here so that people only have to do their OS multicast mess 
  105.    in one place rather than all through zebra, ospfd, and ripd 
  106.    NB: This is a hookpoint for specific OS functionality */
  107. int
  108. setsockopt_multicast_ipv4(int sock, 
  109. int optname, 
  110. struct in_addr if_addr,
  111. unsigned int mcast_addr,
  112. unsigned int ifindex)
  113. {
  114.   /* Linux 2.2.0 and up */
  115. #if defined(GNU_LINUX) && LINUX_VERSION_CODE > 131584
  116.   /* This is better because it uses ifindex directly */
  117.   struct ip_mreqn mreqn;
  118.   
  119.   switch (optname)
  120.     {
  121.     case IP_MULTICAST_IF:
  122.     case IP_ADD_MEMBERSHIP:
  123.     case IP_DROP_MEMBERSHIP:
  124.       memset (&mreqn, 0, sizeof(mreqn));
  125.       if (mcast_addr)
  126. mreqn.imr_multiaddr.s_addr = mcast_addr;
  127.       
  128.       if (ifindex)
  129. mreqn.imr_ifindex = ifindex;
  130.       else
  131. mreqn.imr_address = if_addr;
  132.       
  133.       return setsockopt(sock, IPPROTO_IP, optname, (void *)&mreqn, sizeof(mreqn));
  134.       break;
  135.     default:
  136.       /* Can out and give an understandable error */
  137.       errno = EINVAL;
  138.       return -1;
  139.       break;
  140.     }
  141.   /* Example defines for another OS, boilerplate off other code in this
  142.      function, AND handle optname as per other sections for consistency !! */
  143.   /* #elif  defined(BOGON_NIX) && EXAMPLE_VERSION_CODE > -100000 */
  144.   /* Add your favourite OS here! */
  145. #else /* #if OS_TYPE */ 
  146.   /* default OS support */
  147.   struct in_addr m;
  148.   struct ip_mreq mreq;
  149.   switch (optname)
  150.     {
  151.     case IP_MULTICAST_IF:
  152.       m = if_addr;
  153.       
  154.       return setsockopt (sock, IPPROTO_IP, optname, (void *)&m, sizeof(m)); 
  155.       break;
  156.     case IP_ADD_MEMBERSHIP:
  157.     case IP_DROP_MEMBERSHIP:
  158.       memset (&mreq, 0, sizeof(mreq));
  159.       mreq.imr_multiaddr.s_addr = mcast_addr;
  160.       mreq.imr_interface = if_addr;
  161.       
  162.       return setsockopt (sock, 
  163.  IPPROTO_IP, 
  164.  optname, 
  165.  (void *)&mreq, 
  166.  sizeof(mreq));
  167.       break;
  168.       
  169.     default:
  170.       /* Can out and give an understandable error */
  171.       errno = EINVAL;
  172.       return -1;
  173.       break;
  174.     }
  175. #endif /* #if OS_TYPE */
  176. }