⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 kernel_routes.c

📁 wifi 无线网络路由协议OLSR linux下C代码
💻 C
字号:
/* * The olsr.org Optimized Link-State Routing daemon (olsrd) * Copyright (c) 2004, Thomas Lopatic (thomas@lopatic.de) * All rights reserved. * * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions  * are met: * * * Redistributions of source code must retain the above copyright  *   notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright  *   notice, this list of conditions and the following disclaimer in  *   the documentation and/or other materials provided with the  *   distribution. * * Neither the name of olsr.org, olsrd nor the names of its  *   contributors may be used to endorse or promote products derived  *   from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE  * POSSIBILITY OF SUCH DAMAGE. * * Visit http://www.olsr.org for more information. * * If you find this software useful feel free to make a donation * to the project. For more information see the website or contact * the copyright holders. * * $Id: kernel_routes.c,v 1.23 2007/09/05 22:17:26 bernd67 Exp $ */#include <stdio.h>#include "net/route.h"#include "kernel_routes.h"#include "defs.h"#define WIN32_LEAN_AND_MEAN#include <iprtrmib.h>#include <iphlpapi.h>#undef interfacechar *StrError(unsigned int ErrNo);/** *Insert a route in the kernel routing table * *@param destination the route to add * *@return negative on error */int olsr_ioctl_add_route(struct rt_entry *rt){  MIB_IPFORWARDROW Row;  union olsr_ip_addr mask;  unsigned long Res;  OLSR_PRINTF(2, "KERN: Adding %s\n", olsr_rt_to_string(rt));  memset(&Row, 0, sizeof (MIB_IPFORWARDROW));  Row.dwForwardDest = rt->rt_dst.prefix.v4;  if (!olsr_prefix_to_netmask(&mask, rt->rt_dst.prefix_len)) {    return -1;  } else {      Row.dwForwardMask = mask.v4;  }  Row.dwForwardPolicy = 0;  Row.dwForwardNextHop = rt->rt_best->rtp_nexthop.gateway.v4;  Row.dwForwardIfIndex = rt->rt_best->rtp_nexthop.iif_index;  // MIB_IPROUTE_TYPE_DIRECT and MIB_IPROUTE_TYPE_INDIRECT  Row.dwForwardType = (rt->rt_dst.prefix.v4 == rt->rt_best->rtp_nexthop.gateway.v4) ? 3 : 4;  Row.dwForwardProto = 3; // MIB_IPPROTO_NETMGMT  Row.dwForwardAge = INFINITE;  Row.dwForwardNextHopAS = 0;  Row.dwForwardMetric1 = RT_METRIC_DEFAULT;  Row.dwForwardMetric2 = -1;  Row.dwForwardMetric3 = -1;  Row.dwForwardMetric4 = -1;  Row.dwForwardMetric5 = -1;  Res = SetIpForwardEntry(&Row);  if (Res != NO_ERROR)  {    if (Res != ERROR_NOT_FOUND)      fprintf(stderr, "SetIpForwardEntry() = %08lx, %s", Res, StrError(Res));    Res = CreateIpForwardEntry(&Row);  }  if (Res != NO_ERROR)  {    fprintf(stderr, "CreateIpForwardEntry() = %08lx, %s", Res, StrError(Res));    // XXX - report error in a different way    errno = Res;    return -1;  }  /*   * Send IPC route update message   */  if(olsr_cnf->open_ipc) {    ipc_route_send_rtentry(&rt->rt_dst.prefix, &rt->rt_best->rtp_nexthop.gateway,        rt->rt_best->rtp_metric.hops, 1,        if_ifwithindex_name(rt->rt_best->rtp_nexthop.iif_index));  }  return 0;}// XXX - to be implementedint olsr_ioctl_add_route6(struct rt_entry *rt __attribute__((unused))){  return 0;}/** *Remove a route from the kernel * *@param destination the route to remove * *@return negative on error */int olsr_ioctl_del_route(struct rt_entry *rt){  MIB_IPFORWARDROW Row;  union olsr_ip_addr mask;  unsigned long Res;  OLSR_PRINTF(2, "KERN: Deleting %s\n", olsr_rt_to_string(rt));  memset(&Row, 0, sizeof (MIB_IPFORWARDROW));  Row.dwForwardDest = rt->rt_dst.prefix.v4;  if (!olsr_prefix_to_netmask(&mask, rt->rt_dst.prefix_len)) {    return -1;  } else {      Row.dwForwardMask = mask.v4;  }  Row.dwForwardPolicy = 0;  Row.dwForwardNextHop = rt->rt_nexthop.gateway.v4;  Row.dwForwardIfIndex = rt->rt_nexthop.iif_index;  // MIB_IPROUTE_TYPE_DIRECT and MIB_IPROUTE_TYPE_INDIRECT  Row.dwForwardType = (rt->rt_dst.prefix.v4 == rt->rt_nexthop.gateway.v4) ? 3 : 4;  Row.dwForwardProto = 3; // MIB_IPPROTO_NETMGMT  Row.dwForwardAge = INFINITE;  Row.dwForwardNextHopAS = 0;  Row.dwForwardMetric1 = RT_METRIC_DEFAULT;  Row.dwForwardMetric2 = -1;  Row.dwForwardMetric3 = -1;  Row.dwForwardMetric4 = -1;  Row.dwForwardMetric5 = -1;  Res = DeleteIpForwardEntry(&Row);  if (Res != NO_ERROR)  {    fprintf(stderr, "DeleteIpForwardEntry() = %08lx, %s", Res, StrError(Res));    // XXX - report error in a different way    errno = Res;    return -1;  }  /*   * Send IPC route update message   */  if(olsr_cnf->open_ipc) {    ipc_route_send_rtentry(&rt->rt_dst.prefix, NULL, 0 , 0, NULL);  }  return 0;}// XXX - to be implementedint olsr_ioctl_del_route6(struct rt_entry *rt __attribute__((unused))){  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -