Reputation: 2160
The question is how can I get routing table on MACOSX?
I don’t mean netstat -nr. I mean how to do it programmatically using C.
The first of all I have downloaded netstat source codes from opensource.apple.com.
I have found void mroutepr(void) function in mroute.c.
This function looks like function which get routing table but I am not sure.
There is a array declaration: struct vif viftable[CONFIG_MAXVIFS];
But when I tried to compile mroutepr I revealed that struct vif is not declared in /usr/include/netinet/ip_mroute.h I have added all necessary includes. I have checked it seven times :))
Then I check xnu kernel source code. I have found this structute in xnu kernel, in this file: xnu/bsd/netinet/ip_mroute.h. There was complete definition of struct vif.
It seems that this structure available only in kernel mode.
I am puzzled.
How can struct vif be declared only for kernel code? How netstat utility works?
Everythig above is incorrect :)))
The solution is in route.c file.
ntreestuff(void) function is entry point for getting routing table.
Then in np_rtentry(rtm) function we print table to the console.
static void ntreestuff(void)
{
size_t needed;
int mib[6];
char *buf, *next, *lim;
struct rt_msghdr2 *rtm;
mib[0] = CTL_NET;
mib[1] = PF_ROUTE;
mib[2] = 0;
mib[3] = 0;
mib[4] = NET_RT_DUMP2;
mib[5] = 0;
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0)
{
err(1, "sysctl: net.route.0.0.dump estimate");
}
if ((buf = malloc(needed)) == 0)
{
err(2, "malloc(%lu)", (unsigned long)needed);
}
if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0)
{
err(1, "sysctl: net.route.0.0.dump");
}
lim = buf + needed;
for (next = buf; next < lim; next += rtm->rtm_msglen)
{
rtm = (struct rt_msghdr2 *)next;
np_rtentry(rtm);
}
}
Upvotes: 1
Views: 7007
Reputation: 28036
This basically does what you want. There's another mechanism that (personally I like a little more than sysctl - but I think both require root access so it's a wash.. But, by making an RTM_GET request to a routing socket you can get the same info. 6 of one, half a dozen, etc.
#include <stdio.h>
#include <stdlib.h>
#include <err.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <net/route.h>
/* Darwin doesn't define this for some very odd reason */
#ifndef SA_SIZE
# define SA_SIZE(sa) \
( (!(sa) || ((struct sockaddr *)(sa))->sa_len == 0) ? \
sizeof(long) : \
1 + ( (((struct sockaddr *)(sa))->sa_len - 1) | (sizeof(long) - 1) ) )
#endif
static void
ntreestuff(void)
{
size_t needed;
int mib[6];
char *buf, *next, *lim;
struct rt_msghdr *rtm;
struct sockaddr *sa;
struct sockaddr_in *sockin;
char line[MAXHOSTNAMELEN];
mib[0] = CTL_NET;
mib[1] = PF_ROUTE;
mib[2] = 0;
mib[3] = 0;
mib[4] = NET_RT_DUMP;
mib[5] = 0;
if (sysctl(mib, 6, NULL, &needed, NULL, 0) < 0) {
err(1, "sysctl: net.route.0.0.dump estimate");
}
if ((buf = (char *)malloc(needed)) == NULL) {
errx(2, "malloc(%lu)", (unsigned long)needed);
}
if (sysctl(mib, 6, buf, &needed, NULL, 0) < 0) {
err(1, "sysctl: net.route.0.0.dump");
}
lim = buf + needed;
for (next = buf; next < lim; next += rtm->rtm_msglen) {
rtm = (struct rt_msghdr *)next;
sa = (struct sockaddr *)(rtm + 1);
sa = (struct sockaddr *)(SA_SIZE(sa) + (char *)sa);
sockin = (struct sockaddr_in *)sa;
inet_ntop(AF_INET, &sockin->sin_addr.s_addr, line, sizeof(line) - 1);
printf("defaultrouter=%s\n", line);
break;
}
free(buf);
}
int
main(int argc __unused, char *argv[] __unused)
{
ntreestuff();
return (0);
}
Upvotes: 2