Re: receive only one record from the routing table
From: Tomáš Macek <hidden>
Date: 2005-06-22 10:07:00
quoted
...or give libnl a second chance
I would like to give it second change, but when typing 'make', it outputs this: ... Entering lib MAKE libnl.so.0.5.1 CC helpers.c helpers.c:417: error: `ARPHRD_EUI64' undeclared here (not in a function) helpers.c:417: error: initializer element is not constant helpers.c:417: error: (near initialization for `llprotos[13].i') helpers.c:417: error: initializer element is not constant helpers.c:417: error: (near initialization for `llprotos[13]') helpers.c:418: error: initializer element is not constant helpers.c:418: error: (near initialization for `llprotos[14]') helpers.c:419: error: initializer element is not constant helpers.c:419: error: (near initialization for `llprotos[15]') helpers.c:420: error: initializer element is not constant helpers.c:420: error: (near initialization for `llprotos[16]') helpers.c:421: error: initializer element is not constant helpers.c:421: error: (near initialization for `llprotos[17]') ... On Sat, 18 Jun 2005, Thomas Graf wrote:
* Tom?? Macek [ref] 2005-06-18 20:55quoted
The 'rtm_dst_len = 16' should mean the mask of the route I'm looking for, correct?Yes.quoted
The whole code before sending the packet is below: /* Create Socket */ if((sock = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE)) < 0) perror("Socket Creation: "); /* Initialize the buffer */ memset(msgBuf, 0, BUFSIZE); /* point the header and the msg structure pointers into the buffer */ nlMsg = (struct nlmsghdr *)msgBuf; rtMsg = (struct rtmsg *)NLMSG_DATA(nlMsg); rtMsg->rtm_family = AF_INET; rtMsg->rtm_dst_len = 16; /* 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_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. char *cp; unsigned int xx[4]; int i = 0; unsigned char *ap = (unsigned char *)xx; for (cp = argv[1], i = 0; *cp; cp++) { if (*cp <= '9' && *cp >= '0') { ap[i] = 10*ap[i] + (*cp-'0'); continue; } if (*cp == '.' && ++i <= 3) continue; return -1; } NetlinkAddAttr(nlMsg, sizeof(nlMsg), RTA_DST, &xx, 4);This looks good but your NetlinkAddAttr is bogus, it should be something like this: int nl_msg_append_tlv(struct nlmsghdr *n, int type, void *data, size_t len) { int tlen; struct rtattr *rta; tlen = NLMSG_ALIGN(n->nlmsg_len) + RTA_LENGTH(NLMSG_ALIGN(len)); rta = (struct rtattr *) NLMSG_TAIL(n); rta->rta_type = type; rta->rta_len = RTA_LENGTH(NLMSG_ALIGN(len)); memcpy(RTA_DATA(rta), data, len); n->nlmsg_len = tlen; return 0; } Your code is missing various alignment requirements. I can't tell whether this is the last bug. I recommend you to read ip/iproute.c in the iproute2 source or give libnl a second chance.