blob: 40955fcae63eb92cb3ec5161701495c2186dac01 [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 */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000010#include <sys/socket.h>
Eric Andersen0f08e532003-06-20 09:05:00 +000011#include <sys/uio.h>
12
Denis Vlasenkofad2b862007-05-31 22:16:38 +000013#include "libbb.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000014#include "libnetlink.h"
15
Natanael Copab78ac5a2010-07-23 01:31:24 +020016void FAST_FUNC xrtnl_open(struct rtnl_handle *rth/*, unsigned subscriptions*/)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000017{
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000018 memset(rth, 0, sizeof(*rth));
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000019 rth->fd = xsocket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000020 rth->local.nl_family = AF_NETLINK;
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000021 /*rth->local.nl_groups = subscriptions;*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000022
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000023 xbind(rth->fd, (struct sockaddr*)&rth->local, sizeof(rth->local));
Denys Vlasenkoba3b9db2018-02-11 14:55:46 +010024 bb_getsockname(rth->fd, (struct sockaddr*)&rth->local, sizeof(rth->local));
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000025
26/* too much paranoia
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000027 if (getsockname(rth->fd, (struct sockaddr*)&rth->local, &addr_len) < 0)
Bernhard Reutner-Fischerd73cbd32008-07-21 14:41:33 +000028 bb_perror_msg_and_die("getsockname");
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000029 if (addr_len != sizeof(rth->local))
30 bb_error_msg_and_die("wrong address length %d", addr_len);
31 if (rth->local.nl_family != AF_NETLINK)
32 bb_error_msg_and_die("wrong address family %d", rth->local.nl_family);
Denis Vlasenkoa771e7c2009-04-21 23:48:38 +000033*/
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000034 rth->seq = time(NULL);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000035}
36
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000037int FAST_FUNC xrtnl_wilddump_request(struct rtnl_handle *rth, int family, int type)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000038{
39 struct {
40 struct nlmsghdr nlh;
41 struct rtgenmsg g;
42 } req;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000043
44 req.nlh.nlmsg_len = sizeof(req);
45 req.nlh.nlmsg_type = type;
46 req.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
47 req.nlh.nlmsg_pid = 0;
48 req.nlh.nlmsg_seq = rth->dump = ++rth->seq;
49 req.g.rtgen_family = family;
50
Natanael Copab78ac5a2010-07-23 01:31:24 +020051 return rtnl_send(rth, (void*)&req, sizeof(req));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000052}
53
Denys Vlasenkof1334712011-02-09 04:39:09 +010054//TODO: pass rth->fd instead of full rth?
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000055int FAST_FUNC rtnl_send(struct rtnl_handle *rth, char *buf, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000056{
57 struct sockaddr_nl nladdr;
58
59 memset(&nladdr, 0, sizeof(nladdr));
60 nladdr.nl_family = AF_NETLINK;
61
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000062 return xsendto(rth->fd, buf, len, (struct sockaddr*)&nladdr, sizeof(nladdr));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000063}
64
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +000065int FAST_FUNC rtnl_dump_request(struct rtnl_handle *rth, int type, void *req, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000066{
Denys Vlasenko45482932016-08-14 02:08:56 +020067 struct {
68 struct nlmsghdr nlh;
69 struct msghdr msg;
70 struct sockaddr_nl nladdr;
71 } s;
72 struct iovec iov[2] = { { &s.nlh, sizeof(s.nlh) }, { req, len } };
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000073
Denys Vlasenko45482932016-08-14 02:08:56 +020074 memset(&s, 0, sizeof(s));
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000075
Denys Vlasenko45482932016-08-14 02:08:56 +020076 s.msg.msg_name = (void*)&s.nladdr;
77 s.msg.msg_namelen = sizeof(s.nladdr);
78 s.msg.msg_iov = iov;
79 s.msg.msg_iovlen = 2;
80 /*s.msg.msg_control = NULL; - already is */
81 /*s.msg.msg_controllen = 0; - already is */
82 /*s.msg.msg_flags = 0; - already is */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000083
Denys Vlasenko45482932016-08-14 02:08:56 +020084 s.nladdr.nl_family = AF_NETLINK;
85
86 s.nlh.nlmsg_len = NLMSG_LENGTH(len);
87 s.nlh.nlmsg_type = type;
88 s.nlh.nlmsg_flags = NLM_F_ROOT|NLM_F_MATCH|NLM_F_REQUEST;
89 /*s.nlh.nlmsg_pid = 0; - already is */
90 s.nlh.nlmsg_seq = rth->dump = ++rth->seq;
91
92 return sendmsg(rth->fd, &s.msg, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000093}
94
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000095static int rtnl_dump_filter(struct rtnl_handle *rth,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020096 int (*filter)(const struct sockaddr_nl *, struct nlmsghdr *n, void *) FAST_FUNC,
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000097 void *arg1/*,
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +000098 int (*junk)(struct sockaddr_nl *, struct nlmsghdr *n, void *),
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +000099 void *arg2*/)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000100{
Denis Vlasenko8723a942007-12-02 06:30:57 +0000101 int retval = -1;
102 char *buf = xmalloc(8*1024); /* avoid big stack buffer */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000103 struct sockaddr_nl nladdr;
Denis Vlasenko8723a942007-12-02 06:30:57 +0000104 struct iovec iov = { buf, 8*1024 };
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000105
106 while (1) {
107 int status;
108 struct nlmsghdr *h;
Szabolcs Nagy4ab372d2016-04-24 17:39:02 +0200109 /* Use designated initializers, struct layout is non-portable */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000110 struct msghdr msg = {
Szabolcs Nagy4ab372d2016-04-24 17:39:02 +0200111 .msg_name = (void*)&nladdr,
112 .msg_namelen = sizeof(nladdr),
113 .msg_iov = &iov,
114 .msg_iovlen = 1,
115 .msg_control = NULL,
116 .msg_controllen = 0,
117 .msg_flags = 0
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000118 };
119
120 status = recvmsg(rth->fd, &msg, 0);
121
122 if (status < 0) {
123 if (errno == EINTR)
124 continue;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 bb_perror_msg("OVERRUN");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000126 continue;
127 }
128 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000129 bb_error_msg("EOF on netlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000130 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000131 }
132 if (msg.msg_namelen != sizeof(nladdr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000133 bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000134 }
135
136 h = (struct nlmsghdr*)buf;
137 while (NLMSG_OK(h, status)) {
138 int err;
139
Eric Andersen6c8161d2004-05-05 07:05:32 +0000140 if (nladdr.nl_pid != 0 ||
141 h->nlmsg_pid != rth->local.nl_pid ||
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100142 h->nlmsg_seq != rth->dump
143 ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000144// if (junk) {
145// err = junk(&nladdr, h, arg2);
146// if (err < 0) {
147// retval = err;
148// goto ret;
149// }
150// }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000151 goto skip_it;
152 }
153
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000154 if (h->nlmsg_type == NLMSG_DONE) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000155 goto ret_0;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000156 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000157 if (h->nlmsg_type == NLMSG_ERROR) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000158 struct nlmsgerr *l_err = (struct nlmsgerr*)NLMSG_DATA(h);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000159 if (h->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr))) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000160 bb_error_msg("ERROR truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000161 } else {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000162 errno = -l_err->error;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000163 bb_perror_msg("RTNETLINK answers");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000164 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000165 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000166 }
167 err = filter(&nladdr, h, arg1);
Denis Vlasenko8723a942007-12-02 06:30:57 +0000168 if (err < 0) {
169 retval = err;
170 goto ret;
171 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000172
Denis Vlasenko8723a942007-12-02 06:30:57 +0000173 skip_it:
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000174 h = NLMSG_NEXT(h, status);
175 }
176 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000177 bb_error_msg("message truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000178 continue;
179 }
180 if (status) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000181 bb_error_msg_and_die("remnant of size %d!", status);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000182 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000183 } /* while (1) */
184 ret_0:
185 retval++; /* = 0 */
186 ret:
187 free(buf);
188 return retval;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000189}
190
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000191int FAST_FUNC xrtnl_dump_filter(struct rtnl_handle *rth,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200192 int (*filter)(const struct sockaddr_nl *, struct nlmsghdr *, void *) FAST_FUNC,
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000193 void *arg1)
194{
195 int ret = rtnl_dump_filter(rth, filter, arg1/*, NULL, NULL*/);
196 if (ret < 0)
197 bb_error_msg_and_die("dump terminated");
198 return ret;
199}
200
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000201int FAST_FUNC rtnl_talk(struct rtnl_handle *rtnl, struct nlmsghdr *n,
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +0200202 pid_t peer, unsigned groups,
203 struct nlmsghdr *answer,
204 int (*junk)(struct sockaddr_nl *, struct nlmsghdr *, void *),
205 void *jarg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000206{
Denis Vlasenko8723a942007-12-02 06:30:57 +0000207/* bbox doesn't use parameters no. 3, 4, 6, 7, they are stubbed out */
208#define peer 0
209#define groups 0
210#define junk NULL
211#define jarg NULL
212 int retval = -1;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000213 int status;
214 unsigned seq;
215 struct nlmsghdr *h;
216 struct sockaddr_nl nladdr;
217 struct iovec iov = { (void*)n, n->nlmsg_len };
Denis Vlasenko8723a942007-12-02 06:30:57 +0000218 char *buf = xmalloc(8*1024); /* avoid big stack buffer */
Szabolcs Nagy4ab372d2016-04-24 17:39:02 +0200219 /* Use designated initializers, struct layout is non-portable */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000220 struct msghdr msg = {
Szabolcs Nagy4ab372d2016-04-24 17:39:02 +0200221 .msg_name = (void*)&nladdr,
222 .msg_namelen = sizeof(nladdr),
223 .msg_iov = &iov,
224 .msg_iovlen = 1,
225 .msg_control = NULL,
226 .msg_controllen = 0,
227 .msg_flags = 0
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000228 };
229
230 memset(&nladdr, 0, sizeof(nladdr));
231 nladdr.nl_family = AF_NETLINK;
Denis Vlasenko8723a942007-12-02 06:30:57 +0000232// nladdr.nl_pid = peer;
233// nladdr.nl_groups = groups;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000234
235 n->nlmsg_seq = seq = ++rtnl->seq;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000236 if (answer == NULL) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000237 n->nlmsg_flags |= NLM_F_ACK;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000238 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000239 status = sendmsg(rtnl->fd, &msg, 0);
240
241 if (status < 0) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100242 bb_perror_msg("can't talk to rtnetlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000243 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000244 }
245
246 iov.iov_base = buf;
247
248 while (1) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000249 iov.iov_len = 8*1024;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000250 status = recvmsg(rtnl->fd, &msg, 0);
251
252 if (status < 0) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000253 if (errno == EINTR) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000254 continue;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000255 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000256 bb_perror_msg("OVERRUN");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000257 continue;
258 }
259 if (status == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000260 bb_error_msg("EOF on netlink");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000261 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000262 }
263 if (msg.msg_namelen != sizeof(nladdr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000264 bb_error_msg_and_die("sender address length == %d", msg.msg_namelen);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000265 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000266 for (h = (struct nlmsghdr*)buf; status >= (int)sizeof(*h); ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000267// int l_err;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000268 int len = h->nlmsg_len;
269 int l = len - sizeof(*h);
270
Denis Vlasenko8723a942007-12-02 06:30:57 +0000271 if (l < 0 || len > status) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000272 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000273 bb_error_msg("truncated message");
Denis Vlasenko8723a942007-12-02 06:30:57 +0000274 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000275 }
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000276 bb_error_msg_and_die("malformed message: len=%d!", len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000277 }
278
Eric Andersen6c8161d2004-05-05 07:05:32 +0000279 if (nladdr.nl_pid != peer ||
280 h->nlmsg_pid != rtnl->local.nl_pid ||
Denys Vlasenko6b9f1632010-01-28 02:24:24 +0100281 h->nlmsg_seq != seq
282 ) {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000283// if (junk) {
284// l_err = junk(&nladdr, h, jarg);
285// if (l_err < 0) {
286// retval = l_err;
287// goto ret;
288// }
289// }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000290 continue;
291 }
292
293 if (h->nlmsg_type == NLMSG_ERROR) {
294 struct nlmsgerr *err = (struct nlmsgerr*)NLMSG_DATA(h);
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000295 if (l < (int)sizeof(struct nlmsgerr)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000296 bb_error_msg("ERROR truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000297 } else {
Denis Vlasenko8723a942007-12-02 06:30:57 +0000298 errno = - err->error;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000299 if (errno == 0) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000300 if (answer) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000301 memcpy(answer, h, h->nlmsg_len);
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000302 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000303 goto ret_0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000304 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000305 bb_perror_msg("RTNETLINK answers");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000306 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000307 goto ret;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000308 }
309 if (answer) {
310 memcpy(answer, h, h->nlmsg_len);
Denis Vlasenko8723a942007-12-02 06:30:57 +0000311 goto ret_0;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000312 }
313
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000314 bb_error_msg("unexpected reply!");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000315
316 status -= NLMSG_ALIGN(len);
317 h = (struct nlmsghdr*)((char*)h + NLMSG_ALIGN(len));
318 }
319 if (msg.msg_flags & MSG_TRUNC) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000320 bb_error_msg("message truncated");
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000321 continue;
322 }
323 if (status) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000324 bb_error_msg_and_die("remnant of size %d!", status);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000325 }
Denis Vlasenko8723a942007-12-02 06:30:57 +0000326 } /* while (1) */
327 ret_0:
328 retval++; /* = 0 */
329 ret:
330 free(buf);
331 return retval;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000332}
333
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000334int FAST_FUNC addattr32(struct nlmsghdr *n, int maxlen, int type, uint32_t data)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000335{
336 int len = RTA_LENGTH(4);
337 struct rtattr *rta;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200338
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200339 if ((int)(NLMSG_ALIGN(n->nlmsg_len + len)) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000340 return -1;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200341 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000342 rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
343 rta->rta_type = type;
344 rta->rta_len = len;
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000345 move_to_unaligned32(RTA_DATA(rta), data);
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200346 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len + len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000347 return 0;
348}
349
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000350int FAST_FUNC addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000351{
352 int len = RTA_LENGTH(alen);
353 struct rtattr *rta;
354
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200355 if ((int)(NLMSG_ALIGN(n->nlmsg_len + len)) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000356 return -1;
Natanael Copab78ac5a2010-07-23 01:31:24 +0200357 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000358 rta = (struct rtattr*)(((char*)n) + NLMSG_ALIGN(n->nlmsg_len));
359 rta->rta_type = type;
360 rta->rta_len = len;
361 memcpy(RTA_DATA(rta), data, alen);
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200362 n->nlmsg_len = NLMSG_ALIGN(n->nlmsg_len + len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000363 return 0;
364}
365
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000366int FAST_FUNC rta_addattr32(struct rtattr *rta, int maxlen, int type, uint32_t data)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000367{
368 int len = RTA_LENGTH(4);
369 struct rtattr *subrta;
370
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200371 if (RTA_ALIGN(rta->rta_len + len) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000372 return -1;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000373 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000374 subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
375 subrta->rta_type = type;
376 subrta->rta_len = len;
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000377 move_to_unaligned32(RTA_DATA(subrta), data);
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200378 rta->rta_len = NLMSG_ALIGN(rta->rta_len + len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000379 return 0;
380}
381
Denis Vlasenko0db2c2e2008-06-29 06:22:40 +0000382int FAST_FUNC rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000383{
384 struct rtattr *subrta;
385 int len = RTA_LENGTH(alen);
386
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200387 if (RTA_ALIGN(rta->rta_len + len) > maxlen) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000388 return -1;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000389 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000390 subrta = (struct rtattr*)(((char*)rta) + RTA_ALIGN(rta->rta_len));
391 subrta->rta_type = type;
392 subrta->rta_len = len;
393 memcpy(RTA_DATA(subrta), data, alen);
Hauke Mehrtens4ff86df2016-09-16 22:40:28 +0200394 rta->rta_len = NLMSG_ALIGN(rta->rta_len + len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000395 return 0;
396}
397
398
Natanael Copab78ac5a2010-07-23 01:31:24 +0200399void FAST_FUNC parse_rtattr(struct rtattr *tb[], int max, struct rtattr *rta, int len)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000400{
Denys Vlasenko68ae5422018-02-08 08:42:37 +0100401 memset(tb, 0, (max + 1) * sizeof(tb[0]));
402
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000403 while (RTA_OK(rta, len)) {
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000404 if (rta->rta_type <= max) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000405 tb[rta->rta_type] = rta;
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000406 }
Denys Vlasenko3bb235c2011-02-23 01:20:44 +0100407 rta = RTA_NEXT(rta, len);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000408 }
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000409 if (len) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000410 bb_error_msg("deficit %d, rta_len=%d!", len, rta->rta_len);
Glenn L McGrathd4de9752002-11-28 12:35:46 +0000411 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000412}