]> rtime.felk.cvut.cz Git - lisovros/iproute2_canprio.git/blob - include/libnetlink.h
libnetlink: remove unused junk callback
[lisovros/iproute2_canprio.git] / include / libnetlink.h
1 #ifndef __LIBNETLINK_H__
2 #define __LIBNETLINK_H__ 1
3
4 #include <asm/types.h>
5 #include <linux/netlink.h>
6 #include <linux/rtnetlink.h>
7 #include <linux/if_link.h>
8 #include <linux/if_addr.h>
9 #include <linux/neighbour.h>
10
11 struct rtnl_handle
12 {
13         int                     fd;
14         struct sockaddr_nl      local;
15         struct sockaddr_nl      peer;
16         __u32                   seq;
17         __u32                   dump;
18 };
19
20 extern int rcvbuf;
21
22 extern int rtnl_open(struct rtnl_handle *rth, unsigned subscriptions);
23 extern int rtnl_open_byproto(struct rtnl_handle *rth, unsigned subscriptions, int protocol);
24 extern void rtnl_close(struct rtnl_handle *rth);
25 extern int rtnl_wilddump_request(struct rtnl_handle *rth, int fam, int type);
26 extern int rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len);
27
28 typedef int (*rtnl_filter_t)(const struct sockaddr_nl *,
29                              struct nlmsghdr *n, void *);
30
31 struct rtnl_dump_filter_arg
32 {
33         rtnl_filter_t filter;
34         void *arg1;
35 };
36
37 extern int rtnl_dump_filter_l(struct rtnl_handle *rth,
38                               const struct rtnl_dump_filter_arg *arg);
39 extern int rtnl_dump_filter(struct rtnl_handle *rth, rtnl_filter_t filter,
40                             void *arg);
41 extern int rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n, pid_t peer,
42                      unsigned groups, struct nlmsghdr *answer);
43 extern int rtnl_send(struct rtnl_handle *rth, const void *buf, int);
44 extern int rtnl_send_check(struct rtnl_handle *rth, const void *buf, int);
45
46 extern int addattr(struct nlmsghdr *n, int maxlen, int type);
47 extern int addattr8(struct nlmsghdr *n, int maxlen, int type, __u8 data);
48 extern int addattr16(struct nlmsghdr *n, int maxlen, int type, __u16 data);
49 extern int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data);
50 extern int addattr64(struct nlmsghdr *n, int maxlen, int type, __u64 data);
51 extern int addattrstrz(struct nlmsghdr *n, int maxlen, int type, const char *data);
52
53 extern int addattr_l(struct nlmsghdr *n, int maxlen, int type, const void *data, int alen);
54 extern int addraw_l(struct nlmsghdr *n, int maxlen, const void *data, int len);
55 extern struct rtattr *addattr_nest(struct nlmsghdr *n, int maxlen, int type);
56 extern int addattr_nest_end(struct nlmsghdr *n, struct rtattr *nest);
57 extern struct rtattr *addattr_nest_compat(struct nlmsghdr *n, int maxlen, int type, const void *data, int len);
58 extern int addattr_nest_compat_end(struct nlmsghdr *n, struct rtattr *nest);
59 extern int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data);
60 extern int rta_addattr_l(struct rtattr *rta, int maxlen, int type, const void *data, int alen);
61
62 extern int parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len);
63 extern int parse_rtattr_byindex(struct rtattr *tb[], int max, struct rtattr *rta, int len);
64 extern int __parse_rtattr_nested_compat(struct rtattr *tb[], int max, struct rtattr *rta, int len);
65
66 #define parse_rtattr_nested(tb, max, rta) \
67         (parse_rtattr((tb), (max), RTA_DATA(rta), RTA_PAYLOAD(rta)))
68
69 #define parse_rtattr_nested_compat(tb, max, rta, data, len) \
70         ({ data = RTA_PAYLOAD(rta) >= len ? RTA_DATA(rta) : NULL;       \
71                 __parse_rtattr_nested_compat(tb, max, rta, len); })
72
73 extern int rtnl_listen(struct rtnl_handle *, rtnl_filter_t handler,
74                        void *jarg);
75 extern int rtnl_from_file(FILE *, rtnl_filter_t handler,
76                        void *jarg);
77
78 #define NLMSG_TAIL(nmsg) \
79         ((struct rtattr *) (((void *) (nmsg)) + NLMSG_ALIGN((nmsg)->nlmsg_len)))
80
81 #ifndef IFA_RTA
82 #define IFA_RTA(r) \
83         ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
84 #endif
85 #ifndef IFA_PAYLOAD
86 #define IFA_PAYLOAD(n)  NLMSG_PAYLOAD(n,sizeof(struct ifaddrmsg))
87 #endif
88
89 #ifndef IFLA_RTA
90 #define IFLA_RTA(r) \
91         ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
92 #endif
93 #ifndef IFLA_PAYLOAD
94 #define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
95 #endif
96
97 #ifndef NDA_RTA
98 #define NDA_RTA(r) \
99         ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndmsg))))
100 #endif
101 #ifndef NDA_PAYLOAD
102 #define NDA_PAYLOAD(n)  NLMSG_PAYLOAD(n,sizeof(struct ndmsg))
103 #endif
104
105 #ifndef NDTA_RTA
106 #define NDTA_RTA(r) \
107         ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ndtmsg))))
108 #endif
109 #ifndef NDTA_PAYLOAD
110 #define NDTA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ndtmsg))
111 #endif
112
113 #endif /* __LIBNETLINK_H__ */
114