blob: 7291ee2f1056c853c2ca88fc7e4857a30d80295f [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
Natanael Copab78ac5a2010-07-23 01:31:24 +02003 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License
5 * as published by the Free Software Foundation; either version
6 * 2 of the License, or (at your option) any later version.
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00007 *
Natanael Copab78ac5a2010-07-23 01:31:24 +02008 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00009 */
10
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000011#include <sys/socket.h>
Eric Andersen0f08e532003-06-20 09:05:00 +000012#include <sys/uio.h>
13
Denis Vlasenkofad2b862007-05-31 22:16:38 +000014#include "libbb.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000015#include "libnetlink.h"
16
Natanael Copab78ac5a2010-07-23 01:31:24 +020017void FAST_FUNC xrtnl_open(struct rtnl_handle *rth/*, unsigned subscriptions*/)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000018{
Eric Andersend78aea82006-01-30 18:00:02 +000019 socklen_t addr_len;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000020
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000021 memset(rth, 0, sizeof(*rth));
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000022 rth->fd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000023 rth->local.nl_family = AF_NETLINK;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000024 /*rth->local.nl_groups = subscriptions;*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000025
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000026 xbind(rth->fd, (struct sockaddr*)&rth->local, sizeof(rth->local));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000027 addr_len = sizeof(rth->local);
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000028 getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len);
29
30/* too much paranoia
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000031 if (getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len) < 0)
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +000032 bb_perror_msg_and_die("getsockname");
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000033 if (addr_len != sizeof(rth->local))
34 bb_error_msg_and_die("wrong address length %d", addr_len);
35 if (rth->local.nl_family != AF_NETLINK)
36 bb_error_msg_and_die("wrong address family %d", rth->local.nl_family);
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000037*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000038 rth->seq = time(NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000039}
40
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000041int FAST_FUNC xrtnl_wilddump_request(struct rtnl_handle *rth, int family, int type)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000042{
43 struct {
44 struct nlmsghdr nlh;
45 struct rtgenmsg g;
46 } req;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000047
48 req.nlh.nlmsg_len = sizeof(req);
49 req.nlh.nlmsg_type = type;
50 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
51 req.nlh.nlmsg_pid = 0;
52 req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
53 req.g.rtgen_family = family;
54
Natanael Copab78ac5a2010-07-23 01:31:24 +020055 return rtnl_send(rth, (void*)&req, sizeof(req));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000056}
57
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000058int FAST_FUNC rtnl_send(struct rtnl_handle *rth, char *buf, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000059{
60 struct sockaddr_nl nladdr;
61
62 memset(&nladdr, 0, sizeof(nladdr));
63 nladdr.nl_family = AF_NETLINK;
64
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000065 return xsendto(rth->fd, buf, len, (struct sockaddr*)&nladdr, sizeof(nladdr));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000066}
67
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000068int FAST_FUNC rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000069{
70 struct nlmsghdr nlh;
71 struct sockaddr_nl nladdr;
72 struct iovec iov[2] = { { &nlh, sizeof(nlh) }, { req, len } };
73 struct msghdr msg = {
74 (void*)&nladdr, sizeof(nladdr),
Denys Vlasenkofb132e42010-10-29 11:46:52 +020075 iov, 2,
76 NULL, 0,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000077 0
78 };
79
80 memset(&nladdr, 0, sizeof(nladdr));
81 nladdr.nl_family = AF_NETLINK;
82
83 nlh.nlmsg_len = NLMSG_LENGTH(len);
84 nlh.nlmsg_type = type;
85 nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
86 nlh.nlmsg_pid = 0;
87 nlh.nlmsg_seq = rth->dump = ++rth->seq;
88
89 return sendmsg(rth->fd, &msg, 0);
90}
91
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000092static int rtnl_dump_filter(struct rtnl_handle *rth,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020093 int (*filter)(const struct sockaddr_nl *, struct nlmsghdr *n, void *) FAST_FUNC,
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000094 void *arg1/*,
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +000095 int (*junk)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000096 void *arg2*/)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000097{
Denis Vlasenko8723a942007-12-02 06:30:57 +000098 int retval = -1;
99 char *buf = xmalloc(8*1024); /* avoid big stack buffer */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000100 struct sockaddr_nl nladdr;
Denis Vlasenko8723a942007-12-02 06:30:57 +0000101 struct iovec iov = { buf, 8*1024 };
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000102
103 while (1) {
104 int status;
105 struct nlmsghdr *h;
106
107 struct msghdr msg = {
108 (void*)&nladdr, sizeof(nladdr),
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200109 &iov, 1,
110 NULL, 0,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000111 0
112 };
113
114 status = recvmsg(rth->fd, &msg, 0);
115
116 if (status < 0) {
117 if (errno == EINTR)
118 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_perror_msg("OVERRUN");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000120 continue;
121 }
122 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123 bb_error_msg("EOF on netlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000124 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000125 }
126 if (msg.msg_namelen != sizeof(nladdr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127 bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000128 }
129
130 h = (struct nlmsghdr*)buf;
131 while (NLMSG_OK(h, status)) {
132 int err;
133
Eric Andersen6c8161d2004-05-05 07:05:32 +0000134 if (nladdr.nl_pid != 0 ||
135 h->nlmsg_pid != rth->local.nl_pid ||
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100136 h->nlmsg_seq != rth->dump
137 ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000138// if (junk) {
139// err = junk(&nladdr, h, arg2);
140// if (err < 0) {
141// retval = err;
142// goto ret;
143// }
144// }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000145 goto skip_it;
146 }
147
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000148 if (h->nlmsg_type == NLMSG_DONE) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000149 goto ret_0;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000150 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000151 if (h->nlmsg_type == NLMSG_ERROR) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000152 struct nlmsgerr *l_err = (struct nlmsgerr*)NLMSG_DATA(h);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000153 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000154 bb_error_msg("ERROR truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000155 } else {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000156 errno = -l_err->error;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000157 bb_perror_msg("RTNETLINK answers");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000158 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000159 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000160 }
161 err = filter(&nladdr, h, arg1);
Denis Vlasenko8723a942007-12-02 06:30:57 +0000162 if (err < 0) {
163 retval = err;
164 goto ret;
165 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000166
Denis Vlasenko8723a942007-12-02 06:30:57 +0000167 skip_it:
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000168 h = NLMSG_NEXT(h, status);
169 }
170 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000171 bb_error_msg("message truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000172 continue;
173 }
174 if (status) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000175 bb_error_msg_and_die("remnant of size %d!", status);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000176 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000177 } /* while (1) */
178 ret_0:
179 retval++; /* = 0 */
180 ret:
181 free(buf);
182 return retval;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000183}
184
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000185int FAST_FUNC xrtnl_dump_filter(struct rtnl_handle *rth,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200186 int (*filter)(const struct sockaddr_nl *, struct nlmsghdr *, void *) FAST_FUNC,
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000187 void *arg1)
188{
189 int ret = rtnl_dump_filter(rth, filter, arg1/*, NULL, NULL*/);
190 if (ret < 0)
191 bb_error_msg_and_die("dump terminated");
192 return ret;
193}
194
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000195int FAST_FUNC rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200196 pid_t peer, unsigned groups,
197 struct nlmsghdr *answer,
198 int (*junk)(struct sockaddr_nl *, struct nlmsghdr *, void *),
199 void *jarg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000200{
Denis Vlasenko8723a942007-12-02 06:30:57 +0000201/* bbox doesn't use parameters no. 3, 4, 6, 7, they are stubbed out */
202#define peer 0
203#define groups 0
204#define junk NULL
205#define jarg NULL
206 int retval = -1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000207 int status;
208 unsigned seq;
209 struct nlmsghdr *h;
210 struct sockaddr_nl nladdr;
211 struct iovec iov = { (void*)n, n->nlmsg_len };
Denis Vlasenko8723a942007-12-02 06:30:57 +0000212 char *buf = xmalloc(8*1024); /* avoid big stack buffer */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000213 struct msghdr msg = {
214 (void*)&nladdr, sizeof(nladdr),
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200215 &iov, 1,
216 NULL, 0,
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000217 0
218 };
219
220 memset(&nladdr, 0, sizeof(nladdr));
221 nladdr.nl_family = AF_NETLINK;
Denis Vlasenko8723a942007-12-02 06:30:57 +0000222// nladdr.nl_pid = peer;
223// nladdr.nl_groups = groups;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000224
225 n->nlmsg_seq = seq = ++rtnl->seq;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000226 if (answer == NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000227 n->nlmsg_flags |= NLM_F_ACK;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000228 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000229 status = sendmsg(rtnl->fd, &msg, 0);
230
231 if (status < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100232 bb_perror_msg("can't talk to rtnetlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000233 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000234 }
235
236 iov.iov_base = buf;
237
238 while (1) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000239 iov.iov_len = 8*1024;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000240 status = recvmsg(rtnl->fd, &msg, 0);
241
242 if (status < 0) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000243 if (errno == EINTR) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000244 continue;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000245 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000246 bb_perror_msg("OVERRUN");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000247 continue;
248 }
249 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000250 bb_error_msg("EOF on netlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000251 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000252 }
253 if (msg.msg_namelen != sizeof(nladdr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254 bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000255 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000256 for (h = (struct nlmsghdr*)buf; status >= (int)sizeof(*h); ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000257// int l_err;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000258 int len = h->nlmsg_len;
259 int l = len - sizeof(*h);
260
Denis Vlasenko8723a942007-12-02 06:30:57 +0000261 if (l < 0 || len > status) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000262 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000263 bb_error_msg("truncated message");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000264 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000265 }
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000266 bb_error_msg_and_die("malformed message: len=%d!", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000267 }
268
Eric Andersen6c8161d2004-05-05 07:05:32 +0000269 if (nladdr.nl_pid != peer ||
270 h->nlmsg_pid != rtnl->local.nl_pid ||
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100271 h->nlmsg_seq != seq
272 ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000273// if (junk) {
274// l_err = junk(&nladdr, h, jarg);
275// if (l_err < 0) {
276// retval = l_err;
277// goto ret;
278// }
279// }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000280 continue;
281 }
282
283 if (h->nlmsg_type == NLMSG_ERROR) {
284 struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000285 if (l < (int)sizeof(struct nlmsgerr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000286 bb_error_msg("ERROR truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000287 } else {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000288 errno = - err->error;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000289 if (errno == 0) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000290 if (answer) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000291 memcpy(answer, h, h->nlmsg_len);
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000292 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000293 goto ret_0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000294 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000295 bb_perror_msg("RTNETLINK answers");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000296 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000297 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000298 }
299 if (answer) {
300 memcpy(answer, h, h->nlmsg_len);
Denis Vlasenko8723a942007-12-02 06:30:57 +0000301 goto ret_0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000302 }
303
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000304 bb_error_msg("unexpected reply!");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000305
306 status -= NLMSG_ALIGN(len);
307 h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
308 }
309 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000310 bb_error_msg("message truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000311 continue;
312 }
313 if (status) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000314 bb_error_msg_and_die("remnant of size %d!", status);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000315 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000316 } /* while (1) */
317 ret_0:
318 retval++; /* = 0 */
319 ret:
320 free(buf);
321 return retval;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000322}
323
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000324int FAST_FUNC addattr32(struct nlmsghdr *n, int maxlen, int type, uint32_t data)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000325{
326 int len = RTA_LENGTH(4);
327 struct rtattr *rta;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200328
329 if ((int)(NLMSG_ALIGN(n->nlmsg_len) + len) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000330 return -1;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200331 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000332 rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
333 rta->rta_type = type;
334 rta->rta_len = len;
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000335 move_to_unaligned32(RTA_DATA(rta), data);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000336 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + len;
337 return 0;
338}
339
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000340int FAST_FUNC addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000341{
342 int len = RTA_LENGTH(alen);
343 struct rtattr *rta;
344
Natanael Copab78ac5a2010-07-23 01:31:24 +0200345 if ((int)(NLMSG_ALIGN(n->nlmsg_len) + len) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000346 return -1;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200347 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000348 rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
349 rta->rta_type = type;
350 rta->rta_len = len;
351 memcpy(RTA_DATA(rta), data, alen);
352 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len) + len;
353 return 0;
354}
355
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000356int FAST_FUNC rta_addattr32(struct rtattr *rta, int maxlen, int type, uint32_t data)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000357{
358 int len = RTA_LENGTH(4);
359 struct rtattr *subrta;
360
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000361 if (RTA_ALIGN(rta->rta_len) + len > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000362 return -1;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000363 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000364 subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
365 subrta->rta_type = type;
366 subrta->rta_len = len;
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000367 move_to_unaligned32(RTA_DATA(subrta), data);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000368 rta->rta_len = NLMSG_ALIGN(rta->rta_len) + len;
369 return 0;
370}
371
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000372int FAST_FUNC rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000373{
374 struct rtattr *subrta;
375 int len = RTA_LENGTH(alen);
376
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000377 if (RTA_ALIGN(rta->rta_len) + len > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000378 return -1;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000379 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000380 subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
381 subrta->rta_type = type;
382 subrta->rta_len = len;
383 memcpy(RTA_DATA(subrta), data, alen);
384 rta->rta_len = NLMSG_ALIGN(rta->rta_len) + len;
385 return 0;
386}
387
388
Natanael Copab78ac5a2010-07-23 01:31:24 +0200389void FAST_FUNC parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000390{
391 while (RTA_OK(rta, len)) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000392 if (rta->rta_type <= max) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000393 tb[rta->rta_type] = rta;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000394 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000395 rta = RTA_NEXT(rta,len);
396 }
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000397 if (len) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000398 bb_error_msg("deficit %d, rta_len=%d!", len, rta->rta_len);
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000399 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000400}