blob: 968034ba5e1595738b7649292aeedd48b2a7bd34 [file] [log] [blame]
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00001#ifndef __LIBNETLINK_H__
2#define __LIBNETLINK_H__ 1
3
Strake5bd9dd42012-12-23 08:46:04 -05004#include <stdio.h>
Jan Engelhardtf5b830d2011-12-31 23:16:27 +01005#include <string.h>
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +00006#include <asm/types.h>
7#include <linux/netlink.h>
8#include <linux/rtnetlink.h>
Stephen Hemmingeread2ba72006-12-05 09:54:48 -08009#include <linux/if_link.h>
10#include <linux/if_addr.h>
11#include <linux/neighbour.h>
Nicolas Dichtel9d0efc12012-12-12 09:09:23 -080012#include <linux/netconf.h>
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000013
14struct rtnl_handle
15{
16 int fd;
17 struct sockaddr_nl local;
18 struct sockaddr_nl peer;
19 __u32 seq;
20 __u32 dump;
vadimk8a4025f2014-12-04 12:32:58 +020021 int proto;
Vadim Kochan486ccd92014-12-26 04:26:27 +020022 FILE *dump_fp;
Nicolas Dichtel449b8242015-05-20 16:20:00 +020023#define RTNL_HANDLE_F_LISTEN_ALL_NSID 0x01
24 int flags;
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000025};
26
Patrick McHardy7f031912009-10-28 20:50:48 +010027extern int rcvbuf;
28
Stephen Hemmingerd2468da2013-12-20 08:15:02 -080029extern int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions)
30 __attribute__((warn_unused_result));
31
32extern int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions,
33 int protocol)
34 __attribute__((warn_unused_result));
35
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000036extern void rtnl_close(struct rtnl_handle *rth);
Stephen Hemmingerd2468da2013-12-20 08:15:02 -080037extern int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type)
38 __attribute__((warn_unused_result));
Vlad Yasevich9eff0e52013-02-28 10:04:05 +000039extern int rtnl_wilddump_req_filter(struct rtnl_handle *rth, int fam, int type,
Stephen Hemmingerd2468da2013-12-20 08:15:02 -080040 __u32 filt_mask)
41 __attribute__((warn_unused_result));
42extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req,
43 int len)
44 __attribute__((warn_unused_result));
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000045
Nicolas Dichtel0628cdd2015-05-20 16:19:58 +020046struct rtnl_ctrl_data {
Nicolas Dichtel449b8242015-05-20 16:20:00 +020047 int nsid;
Nicolas Dichtel0628cdd2015-05-20 16:19:58 +020048};
49
Stephen Hemmingerae665a52006-12-05 10:10:22 -080050typedef int (*rtnl_filter_t)(const struct sockaddr_nl *,
osdl.net!shemminger50772dc2004-12-07 21:48:29 +000051 struct nlmsghdr *n, void *);
Simon Hormanb49240e2009-12-03 12:08:27 +110052
Nicolas Dichtel0628cdd2015-05-20 16:19:58 +020053typedef int (*rtnl_listen_filter_t)(const struct sockaddr_nl *,
54 struct rtnl_ctrl_data *,
55 struct nlmsghdr *n, void *);
56
Simon Hormanb49240e2009-12-03 12:08:27 +110057struct rtnl_dump_filter_arg
58{
59 rtnl_filter_t filter;
60 void *arg1;
Simon Hormanb49240e2009-12-03 12:08:27 +110061};
62
63extern int rtnl_dump_filter_l(struct rtnl_handle *rth,
64 const struct rtnl_dump_filter_arg *arg);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000065extern int rtnl_dump_filter(struct rtnl_handle *rth, rtnl_filter_t filter,
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -080066 void *arg);
Stephen Hemmingerc079e122015-05-27 12:26:14 -070067extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n,
68 struct nlmsghdr *answer, size_t len)
Stephen Hemmingerd2468da2013-12-20 08:15:02 -080069 __attribute__((warn_unused_result));
70extern int rtnl_send(struct rtnl_handle *rth, const void *buf, int)
71 __attribute__((warn_unused_result));
72extern int rtnl_send_check(struct rtnl_handle *rth, const void *buf, int)
73 __attribute__((warn_unused_result));
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000074
Stephen Hemminger2aa3dd22011-12-23 10:43:54 -080075extern int addattr(struct nlmsghdr *n, int maxlen, int type);
76extern int addattr8(struct nlmsghdr *n, int maxlen, int type, __u8 data);
77extern int addattr16(struct nlmsghdr *n, int maxlen, int type, __u16 data);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000078extern int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
Stephen Hemminger2aa3dd22011-12-23 10:43:54 -080079extern int addattr64(struct nlmsghdr *n, int maxlen, int type, __u64 data);
80extern int addattrstrz(struct nlmsghdr *n, int maxlen, int type, const char *data);
81
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000082extern int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen);
5!tgrafa10ab082005-01-18 13:58:49 +000083extern int addraw_l(struct nlmsghdr *n, int maxlen, const void *data, int len);
Patrick McHardy2f90c9c2007-08-14 11:21:19 -070084extern struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type);
85extern int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
86extern struct rtattr *addattr_nest_compat(struct nlmsghdr *n, int maxlen, int type, const void *data, int len);
87extern int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000088extern int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data);
osdl.net!shemminger6dc9f012004-08-31 17:45:21 +000089extern int rta_addattr_l(struct rtattr *rta, int maxlen, int type, const void *data, int alen);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000090
91extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
Vlad Yasevichb1b7ce02013-03-15 10:01:28 -070092extern int parse_rtattr_flags(struct rtattr *tb[], int max, struct rtattr *rta,
93 int len, unsigned short flags);
net[shemminger]!shemmingerc7699872004-07-07 17:05:56 +000094extern int parse_rtattr_byindex(struct rtattr *tb[], int max, struct rtattr *rta, int len);
Jiri Pirkodecbb432015-01-06 17:23:45 +010095extern struct rtattr *parse_rtattr_one(int type, struct rtattr *rta, int len);
Patrick McHardy2f90c9c2007-08-14 11:21:19 -070096extern int __parse_rtattr_nested_compat(struct rtattr *tb[], int max, struct rtattr *rta, int len);
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +000097
5!tgraf753fca42005-01-18 22:11:58 +000098#define parse_rtattr_nested(tb, max, rta) \
99 (parse_rtattr((tb), (max), RTA_DATA(rta), RTA_PAYLOAD(rta)))
100
Jiri Pirkodecbb432015-01-06 17:23:45 +0100101#define parse_rtattr_one_nested(type, rta) \
102 (parse_rtattr_one(type, RTA_DATA(rta), RTA_PAYLOAD(rta)))
103
Patrick McHardy2f90c9c2007-08-14 11:21:19 -0700104#define parse_rtattr_nested_compat(tb, max, rta, data, len) \
Stephen Hemmingercd70f3f2011-12-28 10:37:12 -0800105 ({ data = RTA_PAYLOAD(rta) >= len ? RTA_DATA(rta) : NULL; \
106 __parse_rtattr_nested_compat(tb, max, rta, len); })
Patrick McHardy2f90c9c2007-08-14 11:21:19 -0700107
Stephen Hemminger7dd03712012-03-15 17:47:51 -0700108static inline __u8 rta_getattr_u8(const struct rtattr *rta)
109{
110 return *(__u8 *)RTA_DATA(rta);
111}
Stephen Hemminger46c5d642011-12-29 09:29:33 -0800112static inline __u16 rta_getattr_u16(const struct rtattr *rta)
113{
114 return *(__u16 *)RTA_DATA(rta);
115}
Stephen Hemminger7dd03712012-03-15 17:47:51 -0700116static inline __u32 rta_getattr_u32(const struct rtattr *rta)
Stephen Hemminger46c5d642011-12-29 09:29:33 -0800117{
118 return *(__u32 *)RTA_DATA(rta);
119}
120static inline __u64 rta_getattr_u64(const struct rtattr *rta)
121{
122 __u64 tmp;
123 memcpy(&tmp, RTA_DATA(rta), sizeof(__u64));
124 return tmp;
125}
126static inline const char *rta_getattr_str(const struct rtattr *rta)
127{
Stephen Hemmingercfd2cbd2012-02-06 09:35:27 -0800128 return (const char *)RTA_DATA(rta);
Stephen Hemminger46c5d642011-12-29 09:29:33 -0800129}
130
Nicolas Dichtel449b8242015-05-20 16:20:00 +0200131extern int rtnl_listen_all_nsid(struct rtnl_handle *);
Nicolas Dichtel0628cdd2015-05-20 16:19:58 +0200132extern int rtnl_listen(struct rtnl_handle *, rtnl_listen_filter_t handler,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000133 void *jarg);
Nicolas Dichtel0628cdd2015-05-20 16:19:58 +0200134extern int rtnl_from_file(FILE *, rtnl_listen_filter_t handler,
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000135 void *jarg);
136
5!tgraf370d67b2005-01-18 01:24:18 +0000137#define NLMSG_TAIL(nmsg) \
138 ((struct rtattr *) (((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
139
Stephen Hemmingeread2ba72006-12-05 09:54:48 -0800140#ifndef IFA_RTA
141#define IFA_RTA(r) \
142 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
143#endif
144#ifndef IFA_PAYLOAD
145#define IFA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
146#endif
147
148#ifndef IFLA_RTA
149#define IFLA_RTA(r) \
150 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
151#endif
152#ifndef IFLA_PAYLOAD
153#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
154#endif
155
156#ifndef NDA_RTA
157#define NDA_RTA(r) \
158 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
159#endif
160#ifndef NDA_PAYLOAD
161#define NDA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
162#endif
163
164#ifndef NDTA_RTA
165#define NDTA_RTA(r) \
166 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndtmsg))))
167#endif
168#ifndef NDTA_PAYLOAD
169#define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
170#endif
171
Nicolas Dichteld182ee12015-02-17 17:30:37 +0100172#ifndef NETNS_RTA
173#define NETNS_RTA(r) \
174 ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtgenmsg))))
175#endif
176#ifndef NETNS_PAYLOAD
177#define NETNS_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct rtgenmsg))
178#endif
179
Vadim Kochan27b14f22015-01-13 20:14:23 +0200180/* User defined nlmsg_type which is used mostly for logging netlink
181 * messages from dump file */
182#define NLMSG_TSTAMP 15
183
osdl.org!shemmingeraba5acd2004-04-15 20:56:59 +0000184#endif /* __LIBNETLINK_H__ */
185