2 * a real quick'n'dirty hack to add/remove vcan interfaces.
3 * (also to have something to test the new RTNL API in vcan.)
4 * this will be added to ip(8) of the iproute package, making
7 * we don't check the return value of sendto() and don't wait for
8 * a reply using recvmsg(). We just hope everything works fine,
9 * otherwise use strace, or feel free to add the code before this
10 * whole thing is dumped to the bit bucket.
12 * Parts of this code were taken from the iproute source.
22 #include <sys/socket.h>
25 #include <asm/types.h>
26 #include <linux/netlink.h>
27 #include <linux/rtnetlink.h>
29 #include <linux/if_link.h>
32 #define IFLA_LINKINFO 18
44 #define NLMSG_TAIL(nmsg) \
45 ((struct rtattr *)(((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
47 int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data,
52 fprintf(stderr, "Usage: vcan create\n"
53 " vcan delete iface\n");
57 int main(int argc, char **argv)
66 struct sockaddr_nl nladdr;
67 struct rtattr *linkinfo;
70 fprintf(stderr, "This program is a temporary hack and is now obsolete.\n"
71 "Please use ip(8) instead, i.e.\n"
72 " ip link add type vcan or\n"
73 " ip link delete iface\n");
80 s = socket(PF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
82 memset(&req, 0, sizeof(req));
84 if (strcmp(cmd, "create") == 0) {
85 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
86 req.n.nlmsg_flags = NLM_F_REQUEST | NLM_F_CREATE | NLM_F_EXCL;
87 req.n.nlmsg_type = RTM_NEWLINK;
89 req.i.ifi_family = AF_UNSPEC;
91 linkinfo = NLMSG_TAIL(&req.n);
92 addattr_l(&req.n, sizeof(req), IFLA_LINKINFO, NULL, 0);
93 addattr_l(&req.n, sizeof(req), IFLA_INFO_KIND, "vcan", strlen("vcan"));
94 linkinfo->rta_len = (void*)NLMSG_TAIL(&req.n) - (void*)linkinfo;
96 } else if (strcmp(cmd, "delete") == 0) {
100 req.n.nlmsg_len = NLMSG_LENGTH(sizeof(struct ifinfomsg));
101 req.n.nlmsg_flags = NLM_F_REQUEST;
102 req.n.nlmsg_type = RTM_DELLINK;
103 req.i.ifi_family = AF_UNSPEC;
104 req.i.ifi_index = if_nametoindex(dev);
108 memset(&nladdr, 0, sizeof(nladdr));
109 nladdr.nl_family = AF_NETLINK;
111 nladdr.nl_groups = 0;
113 sendto(s, &req, req.n.nlmsg_len, 0,
114 (struct sockaddr*)&nladdr, sizeof(nladdr));
119 for (i = 0; i < req.n.nlmsg_len; i++) {
120 printf(" %02x", ((unsigned char*)&req)[i]);
132 int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data,
135 int len = RTA_LENGTH(alen);
138 if (NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len) > maxlen) {
139 fprintf(stderr, "addattr_l ERROR: message exceeded bound of %d\n",
144 rta->rta_type = type;
146 memcpy(RTA_DATA(rta), data, alen);
147 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + RTA_ALIGN(len);