blob: 61da15be2618152714f8ec1781cd438bf382fe57 [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001#ifndef __LIBNETLINK_H__
2#define __LIBNETLINK_H__ 1
3
4#include <asm/types.h>
5#include <linux/netlink.h>
6#include <linux/rtnetlink.h>
Stephen Hemmingeread2ba72006-12-05 09:54:48 -08007#include <linux/if_link.h>
8#include <linux/if_addr.h>
9#include <linux/neighbour.h>
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000010
11struct rtnl_handle
12{
13 int fd;
14 struct sockaddr_nl local;
15 struct sockaddr_nl peer;
16 __u32 seq;
17 __u32 dump;
18};
19
Patrick McHardy7f031912009-10-28 20:50:48 +010020extern int rcvbuf;
21
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000022extern int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions);
net[shemminger]!shemmingerc7699872004-07-07 17:05:56 +000023extern int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions, int protocol);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000024extern void rtnl_close(struct rtnl_handle *rth);
25extern int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type);
26extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000027
Stephen Hemmingerae665a52006-12-05 10:10:22 -080028typedef int (*rtnl_filter_t)(const struct sockaddr_nl *,
osdl.net!shemminger50772dc2004-12-07 21:48:29 +000029 struct nlmsghdr *n, void *);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000030extern int rtnl_dump_filter(struct rtnl_handle *rth, rtnl_filter_t filter,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000031 void *arg1,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000032 rtnl_filter_t junk,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000033 void *arg2);
34extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
35 unsigned groups, struct nlmsghdr *answer,
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000036 rtnl_filter_t junk,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000037 void *jarg);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000038extern int rtnl_send(struct rtnl_handle *rth, const char *buf, int);
Stephen Hemmingerf31a37f2008-01-31 21:38:58 -080039extern int rtnl_send_check(struct rtnl_handle *rth, const char *buf, int);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000040
41extern int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000042extern int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen);
5!tgrafa10ab082005-01-18 13:58:49 +000043extern int addraw_l(struct nlmsghdr *n, int maxlen, const void *data, int len);
Patrick McHardy2f90c9c2007-08-14 11:21:19 -070044extern struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type);
45extern int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
46extern struct rtattr *addattr_nest_compat(struct nlmsghdr *n, int maxlen, int type, const void *data, int len);
47extern int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000048extern int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000049extern int rta_addattr_l(struct rtattr *rta, int maxlen, int type, const void *data, int alen);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000050
51extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
net[shemminger]!shemmingerc7699872004-07-07 17:05:56 +000052extern int parse_rtattr_byindex(struct rtattr *tb[], int max, struct rtattr *rta, int len);
Patrick McHardy2f90c9c2007-08-14 11:21:19 -070053extern int __parse_rtattr_nested_compat(struct rtattr *tb[], int max, struct rtattr *rta, int len);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000054
5!tgraf753fca42005-01-18 22:11:58 +000055#define parse_rtattr_nested(tb, max, rta) \
56 (parse_rtattr((tb), (max), RTA_DATA(rta), RTA_PAYLOAD(rta)))
57
Patrick McHardy2f90c9c2007-08-14 11:21:19 -070058#define parse_rtattr_nested_compat(tb, max, rta, data, len) \
59({ data = RTA_PAYLOAD(rta) >= len ? RTA_DATA(rta) : NULL; \
60 __parse_rtattr_nested_compat(tb, max, rta, len); })
61
Stephen Hemmingerae665a52006-12-05 10:10:22 -080062extern int rtnl_listen(struct rtnl_handle *, rtnl_filter_t handler,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000063 void *jarg);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000064extern int rtnl_from_file(FILE *, rtnl_filter_t handler,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000065 void *jarg);
66
5!tgraf370d67b2005-01-18 01:24:18 +000067#define NLMSG_TAIL(nmsg) \
68 ((struct rtattr *) (((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
69
Stephen Hemmingeread2ba72006-12-05 09:54:48 -080070#ifndef IFA_RTA
71#define IFA_RTA(r) \
72 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
73#endif
74#ifndef IFA_PAYLOAD
75#define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
76#endif
77
78#ifndef IFLA_RTA
79#define IFLA_RTA(r) \
80 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
81#endif
82#ifndef IFLA_PAYLOAD
83#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
84#endif
85
86#ifndef NDA_RTA
87#define NDA_RTA(r) \
88 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
89#endif
90#ifndef NDA_PAYLOAD
91#define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
92#endif
93
94#ifndef NDTA_RTA
95#define NDTA_RTA(r) \
96 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndtmsg))))
97#endif
98#ifndef NDTA_PAYLOAD
99#define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
100#endif
101
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000102#endif /* __LIBNETLINK_H__ */
103