]> git.proxmox.com Git - mirror_frr.git/blame - zebra/rt_socket.c
Merge pull request #3234 from donaldsharp/bsd_install_failure
[mirror_frr.git] / zebra / rt_socket.c
CommitLineData
718e3744 1/*
2 * Kernel routing table updates by routing socket.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#include <zebra.h>
ddfeb486
DL
23
24#ifndef HAVE_NETLINK
25
fe6c7157 26#ifdef __OpenBSD__
d3e2c74a
RW
27#include <netmpls/mpls.h>
28#endif
718e3744 29
30#include "if.h"
31#include "prefix.h"
32#include "sockunion.h"
33#include "log.h"
edd7c245 34#include "privs.h"
13d60d35 35#include "vxlan.h"
174482ef 36#include "lib_errors.h"
718e3744 37
38#include "zebra/debug.h"
39#include "zebra/rib.h"
6621ca86 40#include "zebra/rt.h"
dc95824a 41#include "zebra/kernel_socket.h"
d3e2c74a 42#include "zebra/zebra_mpls.h"
364fed6b 43#include "zebra/zebra_errors.h"
718e3744 44
edd7c245 45extern struct zebra_privs_t zserv_privs;
46
746c4f02 47#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
718e3744 48/* Adjust netmask socket length. Return value is a adjusted sin_len
49 value. */
d62a17ae 50static int sin_masklen(struct in_addr mask)
718e3744 51{
d62a17ae 52 char *p, *lim;
53 int len;
54 struct sockaddr_in sin;
718e3744 55
d62a17ae 56 if (mask.s_addr == 0)
57 return sizeof(long);
718e3744 58
d62a17ae 59 sin.sin_addr = mask;
60 len = sizeof(struct sockaddr_in);
718e3744 61
d62a17ae 62 lim = (char *)&sin.sin_addr;
63 p = lim + sizeof(sin.sin_addr);
718e3744 64
d62a17ae 65 while (*--p == 0 && p >= lim)
66 len--;
67 return len;
718e3744 68}
746c4f02 69#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 70
5e8c8947 71#ifdef __OpenBSD__
8ecdb26e 72static int kernel_rtm_add_labels(struct mpls_label_stack *nh_label,
5e8c8947
RW
73 struct sockaddr_mpls *smpls)
74{
75 if (nh_label->num_labels > 1) {
e914ccbe 76 flog_warn(EC_ZEBRA_MAX_LABELS_PUSH,
9df414fe
QY
77 "%s: can't push %u labels at "
78 "once (maximum is 1)",
79 __func__, nh_label->num_labels);
5e8c8947
RW
80 return -1;
81 }
82
83 memset(smpls, 0, sizeof(*smpls));
84 smpls->smpls_len = sizeof(*smpls);
85 smpls->smpls_family = AF_MPLS;
86 smpls->smpls_label = htonl(nh_label->label[0] << MPLS_LABEL_OFFSET);
87
88 return 0;
89}
90#endif
91
718e3744 92/* Interface between zebra message and rtm message. */
c886868f
MS
93static int kernel_rtm_ipv4(int cmd, const struct prefix *p,
94 struct route_entry *re)
718e3744 95
96{
d62a17ae 97 struct sockaddr_in *mask = NULL;
98 struct sockaddr_in sin_dest, sin_mask, sin_gate;
fe6c7157 99#ifdef __OpenBSD__
d62a17ae 100 struct sockaddr_mpls smpls;
d3e2c74a 101#endif
d62a17ae 102 union sockunion *smplsp = NULL;
103 struct nexthop *nexthop;
104 int nexthop_num = 0;
105 ifindex_t ifindex = 0;
106 int gate = 0;
107 int error;
108 char prefix_buf[PREFIX_STRLEN];
a8309422 109 enum blackhole_type bh_type = BLACKHOLE_UNSPEC;
d62a17ae 110
111 if (IS_ZEBRA_DEBUG_RIB)
112 prefix2str(p, prefix_buf, sizeof(prefix_buf));
113 memset(&sin_dest, 0, sizeof(struct sockaddr_in));
114 sin_dest.sin_family = AF_INET;
6f0e3f6e 115#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
d62a17ae 116 sin_dest.sin_len = sizeof(struct sockaddr_in);
6f0e3f6e 117#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
d62a17ae 118 sin_dest.sin_addr = p->u.prefix4;
718e3744 119
d62a17ae 120 memset(&sin_mask, 0, sizeof(struct sockaddr_in));
718e3744 121
d62a17ae 122 memset(&sin_gate, 0, sizeof(struct sockaddr_in));
123 sin_gate.sin_family = AF_INET;
6f0e3f6e 124#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
d62a17ae 125 sin_gate.sin_len = sizeof(struct sockaddr_in);
6f0e3f6e 126#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 127
d62a17ae 128 /* Make gateway. */
7ee30f28 129 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 130 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
131 continue;
132
133 gate = 0;
134 char gate_buf[INET_ADDRSTRLEN] = "NULL";
135
136 /*
137 * XXX We need to refrain from kernel operations in some cases,
138 * but this if statement seems overly cautious - what about
139 * other than ADD and DELETE?
140 */
996c9314 141 if ((cmd == RTM_ADD && NEXTHOP_IS_ACTIVE(nexthop->flags))
d62a17ae 142 || (cmd == RTM_DELETE
143 && CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB))) {
144 if (nexthop->type == NEXTHOP_TYPE_IPV4
145 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX) {
146 sin_gate.sin_addr = nexthop->gate.ipv4;
147 gate = 1;
148 }
149 if (nexthop->type == NEXTHOP_TYPE_IFINDEX
150 || nexthop->type == NEXTHOP_TYPE_IPV4_IFINDEX)
151 ifindex = nexthop->ifindex;
152 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE) {
153 struct in_addr loopback;
154 loopback.s_addr = htonl(INADDR_LOOPBACK);
155 sin_gate.sin_addr = loopback;
a8309422 156 bh_type = nexthop->bh_type;
d62a17ae 157 gate = 1;
158 }
159
160 if (gate && p->prefixlen == 32)
161 mask = NULL;
162 else {
163 masklen2ip(p->prefixlen, &sin_mask.sin_addr);
164 sin_mask.sin_family = AF_INET;
6f0e3f6e 165#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
d62a17ae 166 sin_mask.sin_len =
167 sin_masklen(sin_mask.sin_addr);
6f0e3f6e 168#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
d62a17ae 169 mask = &sin_mask;
170 }
718e3744 171
fe6c7157 172#ifdef __OpenBSD__
5e8c8947
RW
173 if (nexthop->nh_label
174 && !kernel_rtm_add_labels(nexthop->nh_label,
175 &smpls))
176 continue;
177 smplsp = (union sockunion *)&smpls;
d3e2c74a
RW
178#endif
179
60466a63
QY
180 error = rtm_write(cmd, (union sockunion *)&sin_dest,
181 (union sockunion *)mask,
182 gate ? (union sockunion *)&sin_gate
183 : NULL,
184 smplsp, ifindex, bh_type, re->metric);
d62a17ae 185
186 if (IS_ZEBRA_DEBUG_RIB) {
187 if (!gate) {
188 zlog_debug(
189 "%s: %s: attention! gate not found for re %p",
190 __func__, prefix_buf, re);
191 route_entry_dump(p, NULL, re);
192 } else
193 inet_ntop(AF_INET, &sin_gate.sin_addr,
194 gate_buf, INET_ADDRSTRLEN);
195 }
196
197 switch (error) {
198 /* We only flag nexthops as being in FIB if rtm_write()
199 * did its work. */
200 case ZEBRA_ERR_NOERROR:
201 nexthop_num++;
202 if (IS_ZEBRA_DEBUG_RIB)
203 zlog_debug(
204 "%s: %s: successfully did NH %s",
205 __func__, prefix_buf, gate_buf);
d62a17ae 206 break;
207
208 /* The only valid case for this error is kernel's
209 * failure to install
210 * a multipath route, which is common for FreeBSD. This
211 * should be
212 * ignored silently, but logged as an error otherwise.
213 */
214 case ZEBRA_ERR_RTEXIST:
215 if (cmd != RTM_ADD)
af4c2728 216 flog_err(
450971aa 217 EC_LIB_SYSTEM_CALL,
d62a17ae 218 "%s: rtm_write() returned %d for command %d",
219 __func__, error, cmd);
220 continue;
221 break;
222
223 /* Given that our NEXTHOP_FLAG_FIB matches real kernel
224 * FIB, it isn't
225 * normal to get any other messages in ANY case.
226 */
227 case ZEBRA_ERR_RTNOEXIST:
228 case ZEBRA_ERR_RTUNREACH:
229 default:
af4c2728 230 flog_err(
450971aa 231 EC_LIB_SYSTEM_CALL,
d62a17ae 232 "%s: %s: rtm_write() unexpectedly returned %d for command %s",
233 __func__,
234 prefix2str(p, prefix_buf,
235 sizeof(prefix_buf)),
236 error,
237 lookup_msg(rtm_type_str, cmd, NULL));
238 break;
239 }
240 } /* if (cmd and flags make sense) */
241 else if (IS_ZEBRA_DEBUG_RIB)
242 zlog_debug("%s: odd command %s for flags %d", __func__,
243 lookup_msg(rtm_type_str, cmd, NULL),
244 nexthop->flags);
245 } /* for (ALL_NEXTHOPS(...))*/
246
247 /* If there was no useful nexthop, then complain. */
560e3136
DS
248 if (nexthop_num == 0) {
249 if (IS_ZEBRA_DEBUG_KERNEL)
250 zlog_debug("%s: No useful nexthops were found in RIB entry %p",
251 __func__, re);
252 return 1;
253 }
d62a17ae 254
255 return 0; /*XXX*/
718e3744 256}
257
746c4f02 258#ifdef SIN6_LEN
718e3744 259/* Calculate sin6_len value for netmask socket value. */
d62a17ae 260static int sin6_masklen(struct in6_addr mask)
718e3744 261{
d62a17ae 262 struct sockaddr_in6 sin6;
263 char *p, *lim;
264 int len;
718e3744 265
d62a17ae 266 if (IN6_IS_ADDR_UNSPECIFIED(&mask))
267 return sizeof(long);
718e3744 268
d62a17ae 269 sin6.sin6_addr = mask;
270 len = sizeof(struct sockaddr_in6);
718e3744 271
d62a17ae 272 lim = (char *)&sin6.sin6_addr;
273 p = lim + sizeof(sin6.sin6_addr);
718e3744 274
d62a17ae 275 while (*--p == 0 && p >= lim)
276 len--;
718e3744 277
d62a17ae 278 return len;
718e3744 279}
746c4f02 280#endif /* SIN6_LEN */
718e3744 281
718e3744 282/* Interface between zebra message and rtm message. */
c886868f
MS
283static int kernel_rtm_ipv6(int cmd, const struct prefix *p,
284 struct route_entry *re)
718e3744 285{
d62a17ae 286 struct sockaddr_in6 *mask;
287 struct sockaddr_in6 sin_dest, sin_mask, sin_gate;
5e8c8947
RW
288#ifdef __OpenBSD__
289 struct sockaddr_mpls smpls;
290#endif
291 union sockunion *smplsp = NULL;
d62a17ae 292 struct nexthop *nexthop;
293 int nexthop_num = 0;
294 ifindex_t ifindex = 0;
295 int gate = 0;
296 int error;
a8309422 297 enum blackhole_type bh_type = BLACKHOLE_UNSPEC;
d62a17ae 298
299 memset(&sin_dest, 0, sizeof(struct sockaddr_in6));
300 sin_dest.sin6_family = AF_INET6;
718e3744 301#ifdef SIN6_LEN
d62a17ae 302 sin_dest.sin6_len = sizeof(struct sockaddr_in6);
718e3744 303#endif /* SIN6_LEN */
d62a17ae 304 sin_dest.sin6_addr = p->u.prefix6;
718e3744 305
d62a17ae 306 memset(&sin_mask, 0, sizeof(struct sockaddr_in6));
718e3744 307
d62a17ae 308 memset(&sin_gate, 0, sizeof(struct sockaddr_in6));
309 sin_gate.sin6_family = AF_INET6;
6f0e3f6e 310#ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
d62a17ae 311 sin_gate.sin6_len = sizeof(struct sockaddr_in6);
6f0e3f6e 312#endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
718e3744 313
d62a17ae 314 /* Make gateway. */
7ee30f28 315 for (ALL_NEXTHOPS(re->ng, nexthop)) {
d62a17ae 316 if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_RECURSIVE))
317 continue;
fa713d9e 318
d62a17ae 319 gate = 0;
718e3744 320
996c9314 321 if ((cmd == RTM_ADD && NEXTHOP_IS_ACTIVE(nexthop->flags))
2d74d637 322 || (cmd == RTM_DELETE)) {
d62a17ae 323 if (nexthop->type == NEXTHOP_TYPE_IPV6
324 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX) {
325 sin_gate.sin6_addr = nexthop->gate.ipv6;
326 gate = 1;
327 }
328 if (nexthop->type == NEXTHOP_TYPE_IFINDEX
329 || nexthop->type == NEXTHOP_TYPE_IPV6_IFINDEX)
330 ifindex = nexthop->ifindex;
331
a8309422
DL
332 if (nexthop->type == NEXTHOP_TYPE_BLACKHOLE)
333 bh_type = nexthop->bh_type;
d62a17ae 334 }
335
336/* Under kame set interface index to link local address. */
718e3744 337#ifdef KAME
338
d62a17ae 339#define SET_IN6_LINKLOCAL_IFINDEX(a, i) \
340 do { \
341 (a).s6_addr[2] = ((i) >> 8) & 0xff; \
342 (a).s6_addr[3] = (i)&0xff; \
343 } while (0)
718e3744 344
d62a17ae 345 if (gate && IN6_IS_ADDR_LINKLOCAL(&sin_gate.sin6_addr))
346 SET_IN6_LINKLOCAL_IFINDEX(sin_gate.sin6_addr, ifindex);
718e3744 347#endif /* KAME */
348
d62a17ae 349 if (gate && p->prefixlen == 128)
350 mask = NULL;
351 else {
352 masklen2ip6(p->prefixlen, &sin_mask.sin6_addr);
353 sin_mask.sin6_family = AF_INET6;
718e3744 354#ifdef SIN6_LEN
d62a17ae 355 sin_mask.sin6_len = sin6_masklen(sin_mask.sin6_addr);
718e3744 356#endif /* SIN6_LEN */
d62a17ae 357 mask = &sin_mask;
358 }
718e3744 359
5e8c8947
RW
360#ifdef __OpenBSD__
361 if (nexthop->nh_label
362 && !kernel_rtm_add_labels(nexthop->nh_label, &smpls))
363 continue;
364 smplsp = (union sockunion *)&smpls;
365#endif
366
d62a17ae 367 error = rtm_write(cmd, (union sockunion *)&sin_dest,
368 (union sockunion *)mask,
369 gate ? (union sockunion *)&sin_gate : NULL,
a8309422 370 smplsp, ifindex, bh_type, re->metric);
d62a17ae 371 (void)error;
718e3744 372
d62a17ae 373 nexthop_num++;
374 }
718e3744 375
d62a17ae 376 /* If there is no useful nexthop then return. */
377 if (nexthop_num == 0) {
378 if (IS_ZEBRA_DEBUG_KERNEL)
379 zlog_debug("kernel_rtm_ipv6(): No useful nexthop.");
560e3136 380 return 1;
d62a17ae 381 }
718e3744 382
d62a17ae 383 return 0; /*XXX*/
718e3744 384}
385
c886868f 386static int kernel_rtm(int cmd, const struct prefix *p, struct route_entry *re)
62ccf1e5 387{
d62a17ae 388 switch (PREFIX_FAMILY(p)) {
389 case AF_INET:
390 return kernel_rtm_ipv4(cmd, p, re);
391 case AF_INET6:
392 return kernel_rtm_ipv6(cmd, p, re);
393 }
394 return 0;
62ccf1e5
TT
395}
396
ea1c14f6
MS
397enum zebra_dplane_result kernel_route_rib(struct route_node *rn,
398 const struct prefix *p,
399 const struct prefix *src_p,
400 struct route_entry *old,
401 struct route_entry *new)
718e3744 402{
d62a17ae 403 int route = 0;
edd7c245 404
d62a17ae 405 if (src_p && src_p->prefixlen) {
e914ccbe 406 flog_warn(EC_ZEBRA_UNSUPPORTED_V6_SRCDEST,
9df414fe 407 "%s: IPv6 sourcedest routes unsupported!", __func__);
ea1c14f6 408 return ZEBRA_DPLANE_REQUEST_FAILURE;
d62a17ae 409 }
05737783 410
01b9e3fd 411 frr_elevate_privs(&zserv_privs) {
be717a0a 412
01b9e3fd
DL
413 if (old)
414 route |= kernel_rtm(RTM_DELETE, p, old);
62ccf1e5 415
01b9e3fd
DL
416 if (new)
417 route |= kernel_rtm(RTM_ADD, p, new);
be717a0a 418
01b9e3fd 419 }
edd7c245 420
0c555cc6 421 if (new) {
996c9314
LB
422 kernel_route_rib_pass_fail(
423 rn, p, new,
ea1c14f6
MS
424 (!route) ? ZEBRA_DPLANE_INSTALL_SUCCESS
425 : ZEBRA_DPLANE_INSTALL_FAILURE);
0c555cc6 426 } else {
7d974ba3 427 kernel_route_rib_pass_fail(rn, p, old,
996c9314 428 (!route)
ea1c14f6
MS
429 ? ZEBRA_DPLANE_DELETE_SUCCESS
430 : ZEBRA_DPLANE_DELETE_FAILURE);
0c555cc6 431 }
1e885672 432
ea1c14f6 433 return ZEBRA_DPLANE_REQUEST_SUCCESS;
718e3744 434}
6b8a5694 435
d62a17ae 436int kernel_neigh_update(int add, int ifindex, uint32_t addr, char *lla,
5895d33f 437 int llalen, ns_id_t ns_id)
6b8a5694 438{
d62a17ae 439 /* TODO */
440 return 0;
6b8a5694 441}
1498c059 442
43b5cc5e 443extern int kernel_get_ipmr_sg_stats(struct zebra_vrf *zvrf, void *mroute)
1498c059 444{
d62a17ae 445 return 0;
1498c059 446}
13d60d35 447
d62a17ae 448int kernel_add_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 449{
d62a17ae 450 return 0;
13d60d35 451}
452
d62a17ae 453int kernel_del_vtep(vni_t vni, struct interface *ifp, struct in_addr *vtep_ip)
13d60d35 454{
d62a17ae 455 return 0;
13d60d35 456}
2232a77c 457
d62a17ae 458int kernel_add_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
a37f4598 459 struct in_addr vtep_ip, bool sticky)
2232a77c 460{
d62a17ae 461 return 0;
2232a77c 462}
463
d62a17ae 464int kernel_del_mac(struct interface *ifp, vlanid_t vid, struct ethaddr *mac,
d63c1b18 465 struct in_addr vtep_ip)
2232a77c 466{
d62a17ae 467 return 0;
2232a77c 468}
469
d62a17ae 470int kernel_add_neigh(struct interface *ifp, struct ipaddr *ip,
68e33151 471 struct ethaddr *mac, uint8_t flags)
2232a77c 472{
d62a17ae 473 return 0;
2232a77c 474}
475
d62a17ae 476int kernel_del_neigh(struct interface *ifp, struct ipaddr *ip)
2232a77c 477{
d62a17ae 478 return 0;
2232a77c 479}
e0ae31b8
DS
480
481extern int kernel_interface_set_master(struct interface *master,
482 struct interface *slave)
483{
484 return 0;
485}
0ecfe5bf 486
dc7b3cae
DS
487uint32_t kernel_get_speed(struct interface *ifp)
488{
489 return ifp->speed;
490}
491
ddfeb486 492#endif /* !HAVE_NETLINK */