linux下得到路由

#include <asm/types.h>
#include <netinet/ether.h>
#include <stdio.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <linux/netlink.h>
#include <linux/rtnetlink.h>
#include <sys/types.h>
#include <ifaddrs.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

#include "gateway.h"
#define BUFSIZE 8192

struct route_info{
    in_addr_t dstAddr;
    in_addr_t srcAddr;
    in_addr_t gateWay;
    char ifName[IF_NAMESIZE];
};

struct route_info route_table[1024];

int readNlSock(int sockFd, char *bufPtr, int seqNum, int pId){
    struct nlmsghdr *nlHdr;
    int readLen = 0, msgLen = 0;

    do{
        /* Recieve response from the kernel */
        if((readLen = recv(sockFd, bufPtr, BUFSIZE - msgLen, 0)) < 0){
            perror("SOCK READ: ");
            return -1;
        }

        nlHdr = (struct nlmsghdr *)bufPtr;

        /* Check if the header is valid */
        if((NLMSG_OK(nlHdr, readLen) == 0) || (nlHdr->nlmsg_type == NLMSG_ERROR))
        {
            perror("Error in recieved packet");
            return -1;
        }

        /* Check if the its the last message */
        if(nlHdr->nlmsg_type == NLMSG_DONE) {
            break;
        }
        else{
            /* Else move the pointer to buffer appropriately */
            bufPtr += readLen;
            msgLen += readLen;
        }

        /* Check if its a multi part message */
        if((nlHdr->nlmsg_flags & NLM_F_MULTI) == 0) {
            /* return if its not */
            break;
        }
    } while((nlHdr->nlmsg_seq != seqNum) || (nlHdr->nlmsg_pid != pId));
    return msgLen;
}

/* For printing the routes. */
void printRoute(struct route_info *rtInfo)
{
    char tempBuf[512];
    if(!rtInfo)
        return;

    /* Print Destination address */
    if(rtInfo->dstAddr != 0)
        strcpy(tempBuf, (char *)inet_ntoa((struct in_addr&)rtInfo->dstAddr));
    else
        sprintf(tempBuf,"*.*.*.*\t");
    fprintf(stdout,"%s\t", tempBuf);

    /* Print Source address */
    if(rtInfo->srcAddr != 0)
        strcpy(tempBuf, (char *)inet_ntoa((struct in_addr&)rtInfo->srcAddr));
    else
        sprintf(tempBuf,"*.*.*.*\t");
    fprintf(stdout,"%s\t", tempBuf);

    /* Print Gateway address */
    if(rtInfo->gateWay != 0)
        strcpy(tempBuf, (char *)inet_ntoa((struct in_addr&)rtInfo->gateWay));
    else
        sprintf(tempBuf,"*.*.*.*\t");
    fprintf(stdout,"%s\t", tempBuf);

    /* Print Interface Name*/
    fprintf(stdout,"%s\n", rtInfo->ifName);
}

/* For parsing the route info returned */
void parseRoutes(struct nlmsghdr *nlHdr, struct route_info *rtInfo)
{
    struct rtmsg *rtMsg;
    struct rtattr *rtAttr;
    int rtLen;

    rtMsg = (struct rtmsg *)NLMSG_DATA(nlHdr);

    /* If the route is not for AF_INET or does not belong to main routing table
 then return. */
    if((rtMsg->rtm_family != AF_INET) || (rtMsg->rtm_table != RT_TABLE_MAIN))
        return;

    /* get the rtattr field */
    rtAttr = (struct rtattr *)RTM_RTA(rtMsg);
    rtLen = RTM_PAYLOAD(nlHdr);
    for(;RTA_OK(rtAttr,rtLen);rtAttr = RTA_NEXT(rtAttr,rtLen)){
        switch(rtAttr->rta_type) {
        case RTA_OIF:
            if_indextoname(*(int *)RTA_DATA(rtAttr), rtInfo->ifName);
            break;
        case RTA_GATEWAY:
            rtInfo->gateWay = *(u_int *)RTA_DATA(rtAttr);
            break;
        case RTA_PREFSRC:
            rtInfo->srcAddr = *(u_int *)RTA_DATA(rtAttr);
            break;
        case RTA_DST:
            rtInfo->dstAddr = *(u_int *)RTA_DATA(rtAttr);
            break;
        }
    }
    //printf("%s\n", (char *)inet_ntoa(rtInfo->dstAddr));

    // ADDED BY BOB - ALSO COMMENTED printRoute

    //printRoute(rtInfo);
    return;
}

int get_route(struct route_info **table, int *table_length)
{
    struct nlmsghdr *nlMsg;
    char msgBuf[BUFSIZE];
    int i = 0;
    int sock, len, msgSeq = 0;


    /* Create Socket */
    if((sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE)) < 0)
        perror("Socket Creation: ");

    /* Initialize the buffer */
    memset(msgBuf, 0, BUFSIZE);
    memset(route_table, 0, sizeof(struct route_info));

    /* point the header and the msg structure pointers into the buffer */
    nlMsg = (struct nlmsghdr *)msgBuf;

    /* Fill in the nlmsg header*/
    nlMsg->nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg)); // Length of message.

    nlMsg->nlmsg_type = RTM_GETROUTE; // Get the routes from kernel routing table .

    nlMsg->nlmsg_flags = NLM_F_DUMP | NLM_F_REQUEST; // The message is a request for dump.

    nlMsg->nlmsg_seq = msgSeq++; // Sequence of the message packet.

    nlMsg->nlmsg_pid = getpid(); // PID of process sending the request.


    /* Send the request */
    if(send(sock, nlMsg, nlMsg->nlmsg_len, 0) < 0){
        printf("Write To Socket Failed...\n");
        return -1;
    }

    /* Read the response */
    if((len = readNlSock(sock, msgBuf, msgSeq, getpid())) < 0) {
        printf("Read From Socket Failed...\n");
        return -1;
    }

    // ADDED BY BOB

    /* THIS IS THE NETTSTAT -RL code I commented out the printing here and in parse routes */
    //fprintf(stdout, "Destination\tGateway\tInterface\tSource\n");
    i = 0;
    for(;NLMSG_OK(nlMsg,len);nlMsg = NLMSG_NEXT(nlMsg,len)){
        parseRoutes(nlMsg, &route_table[i++]);
    }
    *table_length = i + 1;
    close(sock);

    *table = route_table;
    return 0;
}

void test()
{
    int i = 0, j = 0;
    struct route_info *table;

    get_route(&table, &i);
    while(j < i)
    {
        printRoute(&table[j++]);
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值