]> git.proxmox.com Git - mirror_frr.git/blob - zebra/zebra_fpm_netlink.c
Merge pull request #4350 from patrasar/pim_sg_expiry
[mirror_frr.git] / zebra / zebra_fpm_netlink.c
1 /*
2 * Code for encoding/decoding FPM messages that are in netlink format.
3 *
4 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
5 * Copyright (C) 2012 by Open Source Routing.
6 * Copyright (C) 2012 by Internet Systems Consortium, Inc. ("ISC")
7 *
8 * This file is part of GNU Zebra.
9 *
10 * GNU Zebra is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2, or (at your option) any
13 * later version.
14 *
15 * GNU Zebra is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; see the file COPYING; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25 #include <zebra.h>
26
27 #ifdef HAVE_NETLINK
28
29 #include "log.h"
30 #include "rib.h"
31 #include "vty.h"
32 #include "prefix.h"
33
34 #include "zebra/zserv.h"
35 #include "zebra/zebra_router.h"
36 #include "zebra/zebra_dplane.h"
37 #include "zebra/zebra_ns.h"
38 #include "zebra/zebra_vrf.h"
39 #include "zebra/kernel_netlink.h"
40 #include "zebra/rt_netlink.h"
41 #include "nexthop.h"
42
43 #include "zebra/zebra_fpm_private.h"
44
45 /*
46 * addr_to_a
47 *
48 * Returns string representation of an address of the given AF.
49 */
50 static inline const char *addr_to_a(uint8_t af, void *addr)
51 {
52 if (!addr)
53 return "<No address>";
54
55 switch (af) {
56
57 case AF_INET:
58 return inet_ntoa(*((struct in_addr *)addr));
59 break;
60 case AF_INET6:
61 return inet6_ntoa(*((struct in6_addr *)addr));
62 break;
63 default:
64 return "<Addr in unknown AF>";
65 break;
66 }
67 }
68
69 /*
70 * prefix_addr_to_a
71 *
72 * Convience wrapper that returns a human-readable string for the
73 * address in a prefix.
74 */
75 static const char *prefix_addr_to_a(struct prefix *prefix)
76 {
77 if (!prefix)
78 return "<No address>";
79
80 return addr_to_a(prefix->family, &prefix->u.prefix);
81 }
82
83 /*
84 * af_addr_size
85 *
86 * The size of an address in a given address family.
87 */
88 static size_t af_addr_size(uint8_t af)
89 {
90 switch (af) {
91
92 case AF_INET:
93 return 4;
94 break;
95 case AF_INET6:
96 return 16;
97 break;
98 default:
99 assert(0);
100 return 16;
101 }
102 }
103
104 /*
105 * netlink_nh_info_t
106 *
107 * Holds information about a single nexthop for netlink. These info
108 * structures are transient and may contain pointers into rib
109 * data structures for convenience.
110 */
111 typedef struct netlink_nh_info_t_ {
112 uint32_t if_index;
113 union g_addr *gateway;
114
115 /*
116 * Information from the struct nexthop from which this nh was
117 * derived. For debug purposes only.
118 */
119 int recursive;
120 enum nexthop_types_t type;
121 } netlink_nh_info_t;
122
123 /*
124 * netlink_route_info_t
125 *
126 * A structure for holding information for a netlink route message.
127 */
128 typedef struct netlink_route_info_t_ {
129 uint16_t nlmsg_type;
130 uint8_t rtm_type;
131 uint32_t rtm_table;
132 uint8_t rtm_protocol;
133 uint8_t af;
134 struct prefix *prefix;
135 uint32_t *metric;
136 unsigned int num_nhs;
137
138 /*
139 * Nexthop structures
140 */
141 netlink_nh_info_t nhs[MULTIPATH_NUM];
142 union g_addr *pref_src;
143 } netlink_route_info_t;
144
145 /*
146 * netlink_route_info_add_nh
147 *
148 * Add information about the given nexthop to the given route info
149 * structure.
150 *
151 * Returns TRUE if a nexthop was added, FALSE otherwise.
152 */
153 static int netlink_route_info_add_nh(netlink_route_info_t *ri,
154 struct nexthop *nexthop)
155 {
156 netlink_nh_info_t nhi;
157 union g_addr *src;
158
159 memset(&nhi, 0, sizeof(nhi));
160 src = NULL;
161
162 if (ri->num_nhs >= (int)array_size(ri->nhs))
163 return 0;
164
165 nhi.recursive = nexthop->rparent ? 1 : 0;
166 nhi.type = nexthop->type;
167 nhi.if_index = nexthop->ifindex;
168
169 if (nexthop->type == NEXTHOP_TYPE_IPV4
170 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
171 nhi.gateway = &nexthop->gate;
172 if (nexthop->src.ipv4.s_addr)
173 src = &nexthop->src;
174 }
175
176 if (nexthop->type == NEXTHOP_TYPE_IPV6
177 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
178 nhi.gateway = &nexthop->gate;
179 }
180
181 if (nexthop->type == NEXTHOP_TYPE_IFINDEX) {
182 if (nexthop->src.ipv4.s_addr)
183 src = &nexthop->src;
184 }
185
186 if (!nhi.gateway && nhi.if_index == 0)
187 return 0;
188
189 /*
190 * We have a valid nhi. Copy the structure over to the route_info.
191 */
192 ri->nhs[ri->num_nhs] = nhi;
193 ri->num_nhs++;
194
195 if (src && !ri->pref_src)
196 ri->pref_src = src;
197
198 return 1;
199 }
200
201 /*
202 * netlink_proto_from_route_type
203 */
204 static uint8_t netlink_proto_from_route_type(int type)
205 {
206 switch (type) {
207 case ZEBRA_ROUTE_KERNEL:
208 case ZEBRA_ROUTE_CONNECT:
209 return RTPROT_KERNEL;
210
211 default:
212 return RTPROT_ZEBRA;
213 }
214 }
215
216 /*
217 * netlink_route_info_fill
218 *
219 * Fill out the route information object from the given route.
220 *
221 * Returns TRUE on success and FALSE on failure.
222 */
223 static int netlink_route_info_fill(netlink_route_info_t *ri, int cmd,
224 rib_dest_t *dest, struct route_entry *re)
225 {
226 struct nexthop *nexthop;
227
228 memset(ri, 0, sizeof(*ri));
229
230 ri->prefix = rib_dest_prefix(dest);
231 ri->af = rib_dest_af(dest);
232
233 ri->nlmsg_type = cmd;
234 ri->rtm_table = zvrf_id(rib_dest_vrf(dest));
235 ri->rtm_protocol = RTPROT_UNSPEC;
236
237 /*
238 * An RTM_DELROUTE need not be accompanied by any nexthops,
239 * particularly in our communication with the FPM.
240 */
241 if (cmd == RTM_DELROUTE && !re)
242 return 1;
243
244 if (!re) {
245 zfpm_debug("%s: Expected non-NULL re pointer",
246 __PRETTY_FUNCTION__);
247 return 0;
248 }
249
250 ri->rtm_protocol = netlink_proto_from_route_type(re->type);
251 ri->rtm_type = RTN_UNICAST;
252 ri->metric = &re->metric;
253
254 for (ALL_NEXTHOPS(re->ng, nexthop)) {
255 if (ri->num_nhs >= zrouter.multipath_num)
256 break;
257
258 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
259 continue;
260
261 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE) {
262 switch (nexthop->bh_type) {
263 case BLACKHOLE_ADMINPROHIB:
264 ri->rtm_type = RTN_PROHIBIT;
265 break;
266 case BLACKHOLE_REJECT:
267 ri->rtm_type = RTN_UNREACHABLE;
268 break;
269 case BLACKHOLE_NULL:
270 default:
271 ri->rtm_type = RTN_BLACKHOLE;
272 break;
273 }
274 }
275
276 if ((cmd == RTM_NEWROUTE
277 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_ACTIVE))
278 || (cmd == RTM_DELROUTE
279 && CHECK_FLAG(re->status, ROUTE_ENTRY_INSTALLED))) {
280 netlink_route_info_add_nh(ri, nexthop);
281 }
282 }
283
284 /* If there is no useful nexthop then return. */
285 if (ri->num_nhs == 0) {
286 zfpm_debug("netlink_encode_route(): No useful nexthop.");
287 return 0;
288 }
289
290 return 1;
291 }
292
293 /*
294 * netlink_route_info_encode
295 *
296 * Returns the number of bytes written to the buffer. 0 or a negative
297 * value indicates an error.
298 */
299 static int netlink_route_info_encode(netlink_route_info_t *ri, char *in_buf,
300 size_t in_buf_len)
301 {
302 size_t bytelen;
303 unsigned int nexthop_num = 0;
304 size_t buf_offset;
305 netlink_nh_info_t *nhi;
306
307 struct {
308 struct nlmsghdr n;
309 struct rtmsg r;
310 char buf[1];
311 } * req;
312
313 req = (void *)in_buf;
314
315 buf_offset = ((char *)req->buf) - ((char *)req);
316
317 if (in_buf_len < buf_offset) {
318 assert(0);
319 return 0;
320 }
321
322 memset(req, 0, buf_offset);
323
324 bytelen = af_addr_size(ri->af);
325
326 req->n.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtmsg));
327 req->n.nlmsg_flags = NLM_F_CREATE | NLM_F_REQUEST;
328 req->n.nlmsg_type = ri->nlmsg_type;
329 req->r.rtm_family = ri->af;
330 req->r.rtm_table = ri->rtm_table;
331 req->r.rtm_dst_len = ri->prefix->prefixlen;
332 req->r.rtm_protocol = ri->rtm_protocol;
333 req->r.rtm_scope = RT_SCOPE_UNIVERSE;
334
335 addattr_l(&req->n, in_buf_len, RTA_DST, &ri->prefix->u.prefix, bytelen);
336
337 req->r.rtm_type = ri->rtm_type;
338
339 /* Metric. */
340 if (ri->metric)
341 addattr32(&req->n, in_buf_len, RTA_PRIORITY, *ri->metric);
342
343 if (ri->num_nhs == 0)
344 goto done;
345
346 if (ri->num_nhs == 1) {
347 nhi = &ri->nhs[0];
348
349 if (nhi->gateway) {
350 addattr_l(&req->n, in_buf_len, RTA_GATEWAY,
351 nhi->gateway, bytelen);
352 }
353
354 if (nhi->if_index) {
355 addattr32(&req->n, in_buf_len, RTA_OIF, nhi->if_index);
356 }
357
358 goto done;
359 }
360
361 /*
362 * Multipath case.
363 */
364 char buf[NL_PKT_BUF_SIZE];
365 struct rtattr *rta = (void *)buf;
366 struct rtnexthop *rtnh;
367
368 rta->rta_type = RTA_MULTIPATH;
369 rta->rta_len = RTA_LENGTH(0);
370 rtnh = RTA_DATA(rta);
371
372 for (nexthop_num = 0; nexthop_num < ri->num_nhs; nexthop_num++) {
373 nhi = &ri->nhs[nexthop_num];
374
375 rtnh->rtnh_len = sizeof(*rtnh);
376 rtnh->rtnh_flags = 0;
377 rtnh->rtnh_hops = 0;
378 rtnh->rtnh_ifindex = 0;
379 rta->rta_len += rtnh->rtnh_len;
380
381 if (nhi->gateway) {
382 rta_addattr_l(rta, sizeof(buf), RTA_GATEWAY,
383 nhi->gateway, bytelen);
384 rtnh->rtnh_len += sizeof(struct rtattr) + bytelen;
385 }
386
387 if (nhi->if_index) {
388 rtnh->rtnh_ifindex = nhi->if_index;
389 }
390
391 rtnh = RTNH_NEXT(rtnh);
392 }
393
394 assert(rta->rta_len > RTA_LENGTH(0));
395 addattr_l(&req->n, in_buf_len, RTA_MULTIPATH, RTA_DATA(rta),
396 RTA_PAYLOAD(rta));
397
398 done:
399
400 if (ri->pref_src) {
401 addattr_l(&req->n, in_buf_len, RTA_PREFSRC, &ri->pref_src,
402 bytelen);
403 }
404
405 assert(req->n.nlmsg_len < in_buf_len);
406 return req->n.nlmsg_len;
407 }
408
409 /*
410 * zfpm_log_route_info
411 *
412 * Helper function to log the information in a route_info structure.
413 */
414 static void zfpm_log_route_info(netlink_route_info_t *ri, const char *label)
415 {
416 netlink_nh_info_t *nhi;
417 unsigned int i;
418
419 zfpm_debug("%s : %s %s/%d, Proto: %s, Metric: %u", label,
420 nl_msg_type_to_str(ri->nlmsg_type),
421 prefix_addr_to_a(ri->prefix), ri->prefix->prefixlen,
422 nl_rtproto_to_str(ri->rtm_protocol),
423 ri->metric ? *ri->metric : 0);
424
425 for (i = 0; i < ri->num_nhs; i++) {
426 nhi = &ri->nhs[i];
427 zfpm_debug(" Intf: %u, Gateway: %s, Recursive: %s, Type: %s",
428 nhi->if_index, addr_to_a(ri->af, nhi->gateway),
429 nhi->recursive ? "yes" : "no",
430 nexthop_type_to_str(nhi->type));
431 }
432 }
433
434 /*
435 * zfpm_netlink_encode_route
436 *
437 * Create a netlink message corresponding to the given route in the
438 * given buffer space.
439 *
440 * Returns the number of bytes written to the buffer. 0 or a negative
441 * value indicates an error.
442 */
443 int zfpm_netlink_encode_route(int cmd, rib_dest_t *dest, struct route_entry *re,
444 char *in_buf, size_t in_buf_len)
445 {
446 netlink_route_info_t ri_space, *ri;
447
448 ri = &ri_space;
449
450 if (!netlink_route_info_fill(ri, cmd, dest, re))
451 return 0;
452
453 zfpm_log_route_info(ri, __FUNCTION__);
454
455 return netlink_route_info_encode(ri, in_buf, in_buf_len);
456 }
457
458 #endif /* HAVE_NETLINK */