paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* Zebra daemon server routine. |
| 2 | * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro |
| 3 | * |
| 4 | * This file is part of GNU Zebra. |
| 5 | * |
| 6 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2, or (at your option) any |
| 9 | * later version. |
| 10 | * |
| 11 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 18 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 19 | * Boston, MA 02111-1307, USA. |
| 20 | */ |
| 21 | |
| 22 | #include <zebra.h> |
| 23 | |
| 24 | #include "prefix.h" |
| 25 | #include "command.h" |
| 26 | #include "if.h" |
| 27 | #include "thread.h" |
| 28 | #include "stream.h" |
| 29 | #include "memory.h" |
| 30 | #include "table.h" |
| 31 | #include "rib.h" |
| 32 | #include "network.h" |
| 33 | #include "sockunion.h" |
| 34 | #include "log.h" |
| 35 | #include "zclient.h" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 36 | #include "privs.h" |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 37 | #include "network.h" |
| 38 | #include "buffer.h" |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 39 | #include "vrf.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 40 | |
| 41 | #include "zebra/zserv.h" |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 42 | #include "zebra/router-id.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 43 | #include "zebra/redistribute.h" |
| 44 | #include "zebra/debug.h" |
| 45 | #include "zebra/ipforward.h" |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 46 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 47 | /* Event list of zebra. */ |
| 48 | enum event { ZEBRA_SERV, ZEBRA_READ, ZEBRA_WRITE }; |
| 49 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 50 | extern struct zebra_t zebrad; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 51 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 52 | static void zebra_event (enum event event, int sock, struct zserv *client); |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 53 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 54 | extern struct zebra_privs_t zserv_privs; |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 55 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 56 | static void zebra_client_close (struct zserv *client); |
| 57 | |
| 58 | static int |
| 59 | zserv_delayed_close(struct thread *thread) |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 60 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 61 | struct zserv *client = THREAD_ARG(thread); |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 62 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 63 | client->t_suicide = NULL; |
| 64 | zebra_client_close(client); |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 65 | return 0; |
| 66 | } |
| 67 | |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 68 | /* When client connects, it sends hello message |
| 69 | * with promise to send zebra routes of specific type. |
| 70 | * Zebra stores a socket fd of the client into |
| 71 | * this array. And use it to clean up routes that |
| 72 | * client didn't remove for some reasons after closing |
| 73 | * connection. |
| 74 | */ |
| 75 | static int route_type_oaths[ZEBRA_ROUTE_MAX]; |
| 76 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 77 | static int |
| 78 | zserv_flush_data(struct thread *thread) |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 79 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 80 | struct zserv *client = THREAD_ARG(thread); |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 81 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 82 | client->t_write = NULL; |
| 83 | if (client->t_suicide) |
| 84 | { |
| 85 | zebra_client_close(client); |
| 86 | return -1; |
| 87 | } |
| 88 | switch (buffer_flush_available(client->wb, client->sock)) |
| 89 | { |
| 90 | case BUFFER_ERROR: |
| 91 | zlog_warn("%s: buffer_flush_available failed on zserv client fd %d, " |
| 92 | "closing", __func__, client->sock); |
| 93 | zebra_client_close(client); |
| 94 | break; |
| 95 | case BUFFER_PENDING: |
| 96 | client->t_write = thread_add_write(zebrad.master, zserv_flush_data, |
| 97 | client, client->sock); |
| 98 | break; |
| 99 | case BUFFER_EMPTY: |
| 100 | break; |
| 101 | } |
| 102 | return 0; |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 103 | } |
| 104 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 105 | static int |
| 106 | zebra_server_send_message(struct zserv *client) |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 107 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 108 | if (client->t_suicide) |
| 109 | return -1; |
| 110 | switch (buffer_write(client->wb, client->sock, STREAM_DATA(client->obuf), |
| 111 | stream_get_endp(client->obuf))) |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 112 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 113 | case BUFFER_ERROR: |
| 114 | zlog_warn("%s: buffer_write failed to zserv client fd %d, closing", |
| 115 | __func__, client->sock); |
| 116 | /* Schedule a delayed close since many of the functions that call this |
| 117 | one do not check the return code. They do not allow for the |
| 118 | possibility that an I/O error may have caused the client to be |
| 119 | deleted. */ |
| 120 | client->t_suicide = thread_add_event(zebrad.master, zserv_delayed_close, |
| 121 | client, 0); |
| 122 | return -1; |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 123 | case BUFFER_EMPTY: |
| 124 | THREAD_OFF(client->t_write); |
| 125 | break; |
| 126 | case BUFFER_PENDING: |
| 127 | THREAD_WRITE_ON(zebrad.master, client->t_write, |
| 128 | zserv_flush_data, client, client->sock); |
| 129 | break; |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 130 | } |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 131 | return 0; |
| 132 | } |
| 133 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 134 | static void |
| 135 | zserv_create_header (struct stream *s, uint16_t cmd) |
| 136 | { |
| 137 | /* length placeholder, caller can update */ |
| 138 | stream_putw (s, ZEBRA_HEADER_SIZE); |
| 139 | stream_putc (s, ZEBRA_HEADER_MARKER); |
| 140 | stream_putc (s, ZSERV_VERSION); |
| 141 | stream_putw (s, cmd); |
| 142 | } |
| 143 | |
Josh Bailey | 51d4ef8 | 2012-03-21 17:13:39 -0700 | [diff] [blame] | 144 | static void |
| 145 | zserv_encode_interface (struct stream *s, struct interface *ifp) |
| 146 | { |
| 147 | /* Interface information. */ |
| 148 | stream_put (s, ifp->name, INTERFACE_NAMSIZ); |
| 149 | stream_putl (s, ifp->ifindex); |
| 150 | stream_putc (s, ifp->status); |
| 151 | stream_putq (s, ifp->flags); |
| 152 | stream_putl (s, ifp->metric); |
| 153 | stream_putl (s, ifp->mtu); |
| 154 | stream_putl (s, ifp->mtu6); |
| 155 | stream_putl (s, ifp->bandwidth); |
| 156 | #ifdef HAVE_STRUCT_SOCKADDR_DL |
David Lamparter | ca3ccd8 | 2012-09-26 14:52:39 +0200 | [diff] [blame] | 157 | stream_put (s, &ifp->sdl, sizeof (ifp->sdl_storage)); |
Josh Bailey | 51d4ef8 | 2012-03-21 17:13:39 -0700 | [diff] [blame] | 158 | #else |
| 159 | stream_putl (s, ifp->hw_addr_len); |
| 160 | if (ifp->hw_addr_len) |
| 161 | stream_put (s, ifp->hw_addr, ifp->hw_addr_len); |
| 162 | #endif /* HAVE_STRUCT_SOCKADDR_DL */ |
| 163 | |
| 164 | /* Write packet size. */ |
| 165 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 166 | } |
| 167 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 168 | /* Interface is added. Send ZEBRA_INTERFACE_ADD to client. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 169 | /* |
| 170 | * This function is called in the following situations: |
| 171 | * - in response to a 3-byte ZEBRA_INTERFACE_ADD request |
| 172 | * from the client. |
| 173 | * - at startup, when zebra figures out the available interfaces |
| 174 | * - when an interface is added (where support for |
| 175 | * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when |
| 176 | * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is |
| 177 | * received) |
| 178 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 179 | int |
| 180 | zsend_interface_add (struct zserv *client, struct interface *ifp) |
| 181 | { |
| 182 | struct stream *s; |
| 183 | |
| 184 | /* Check this client need interface information. */ |
| 185 | if (! client->ifinfo) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 186 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 187 | |
| 188 | s = client->obuf; |
| 189 | stream_reset (s); |
| 190 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 191 | zserv_create_header (s, ZEBRA_INTERFACE_ADD); |
Josh Bailey | 51d4ef8 | 2012-03-21 17:13:39 -0700 | [diff] [blame] | 192 | zserv_encode_interface (s, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 194 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | /* Interface deletion from zebra daemon. */ |
| 198 | int |
| 199 | zsend_interface_delete (struct zserv *client, struct interface *ifp) |
| 200 | { |
| 201 | struct stream *s; |
| 202 | |
| 203 | /* Check this client need interface information. */ |
| 204 | if (! client->ifinfo) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 205 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 206 | |
| 207 | s = client->obuf; |
| 208 | stream_reset (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 209 | |
Josh Bailey | 51d4ef8 | 2012-03-21 17:13:39 -0700 | [diff] [blame] | 210 | zserv_create_header (s, ZEBRA_INTERFACE_DELETE); |
| 211 | zserv_encode_interface (s, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 212 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 213 | return zebra_server_send_message (client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 214 | } |
| 215 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 216 | /* Interface address is added/deleted. Send ZEBRA_INTERFACE_ADDRESS_ADD or |
| 217 | * ZEBRA_INTERFACE_ADDRESS_DELETE to the client. |
| 218 | * |
| 219 | * A ZEBRA_INTERFACE_ADDRESS_ADD is sent in the following situations: |
| 220 | * - in response to a 3-byte ZEBRA_INTERFACE_ADD request |
| 221 | * from the client, after the ZEBRA_INTERFACE_ADD has been |
| 222 | * sent from zebra to the client |
| 223 | * - redistribute new address info to all clients in the following situations |
| 224 | * - at startup, when zebra figures out the available interfaces |
| 225 | * - when an interface is added (where support for |
| 226 | * RTM_IFANNOUNCE or AF_NETLINK sockets is available), or when |
| 227 | * an interface is marked IFF_UP (i.e., an RTM_IFINFO message is |
| 228 | * received) |
| 229 | * - for the vty commands "ip address A.B.C.D/M [<secondary>|<label LINE>]" |
| 230 | * and "no bandwidth <1-10000000>", "ipv6 address X:X::X:X/M" |
| 231 | * - when an RTM_NEWADDR message is received from the kernel, |
| 232 | * |
| 233 | * The call tree that triggers ZEBRA_INTERFACE_ADDRESS_DELETE: |
| 234 | * |
| 235 | * zsend_interface_address(DELETE) |
| 236 | * ^ |
| 237 | * | |
| 238 | * zebra_interface_address_delete_update |
| 239 | * ^ ^ ^ |
paul | 6eb8827 | 2005-07-29 14:36:00 +0000 | [diff] [blame] | 240 | * | | if_delete_update |
| 241 | * | | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 242 | * ip_address_uninstall connected_delete_ipv4 |
| 243 | * [ipv6_addresss_uninstall] [connected_delete_ipv6] |
| 244 | * ^ ^ |
| 245 | * | | |
| 246 | * | RTM_NEWADDR on routing/netlink socket |
| 247 | * | |
| 248 | * vty commands: |
| 249 | * "no ip address A.B.C.D/M [label LINE]" |
| 250 | * "no ip address A.B.C.D/M secondary" |
| 251 | * ["no ipv6 address X:X::X:X/M"] |
| 252 | * |
| 253 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 254 | int |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 255 | zsend_interface_address (int cmd, struct zserv *client, |
| 256 | struct interface *ifp, struct connected *ifc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 257 | { |
| 258 | int blen; |
| 259 | struct stream *s; |
| 260 | struct prefix *p; |
| 261 | |
| 262 | /* Check this client need interface information. */ |
| 263 | if (! client->ifinfo) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 264 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 265 | |
| 266 | s = client->obuf; |
| 267 | stream_reset (s); |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 268 | |
| 269 | zserv_create_header (s, cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 270 | stream_putl (s, ifp->ifindex); |
| 271 | |
| 272 | /* Interface address flag. */ |
| 273 | stream_putc (s, ifc->flags); |
| 274 | |
| 275 | /* Prefix information. */ |
| 276 | p = ifc->address; |
| 277 | stream_putc (s, p->family); |
| 278 | blen = prefix_blen (p); |
| 279 | stream_put (s, &p->u.prefix, blen); |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 280 | |
| 281 | /* |
| 282 | * XXX gnu version does not send prefixlen for ZEBRA_INTERFACE_ADDRESS_DELETE |
| 283 | * but zebra_interface_address_delete_read() in the gnu version |
| 284 | * expects to find it |
| 285 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 286 | stream_putc (s, p->prefixlen); |
| 287 | |
| 288 | /* Destination. */ |
| 289 | p = ifc->destination; |
| 290 | if (p) |
| 291 | stream_put (s, &p->u.prefix, blen); |
| 292 | else |
| 293 | stream_put (s, NULL, blen); |
| 294 | |
| 295 | /* Write packet size. */ |
| 296 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 297 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 298 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 299 | } |
| 300 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 301 | /* |
| 302 | * The cmd passed to zsend_interface_update may be ZEBRA_INTERFACE_UP or |
| 303 | * ZEBRA_INTERFACE_DOWN. |
| 304 | * |
| 305 | * The ZEBRA_INTERFACE_UP message is sent from the zebra server to |
| 306 | * the clients in one of 2 situations: |
| 307 | * - an if_up is detected e.g., as a result of an RTM_IFINFO message |
| 308 | * - a vty command modifying the bandwidth of an interface is received. |
| 309 | * The ZEBRA_INTERFACE_DOWN message is sent when an if_down is detected. |
| 310 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 311 | int |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 312 | zsend_interface_update (int cmd, struct zserv *client, struct interface *ifp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 313 | { |
| 314 | struct stream *s; |
| 315 | |
| 316 | /* Check this client need interface information. */ |
| 317 | if (! client->ifinfo) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 318 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 319 | |
| 320 | s = client->obuf; |
| 321 | stream_reset (s); |
| 322 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 323 | zserv_create_header (s, cmd); |
Josh Bailey | 51d4ef8 | 2012-03-21 17:13:39 -0700 | [diff] [blame] | 324 | zserv_encode_interface (s, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 325 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 326 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 327 | } |
| 328 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 329 | /* |
| 330 | * The zebra server sends the clients a ZEBRA_IPV4_ROUTE_ADD or a |
| 331 | * ZEBRA_IPV6_ROUTE_ADD via zsend_route_multipath in the following |
| 332 | * situations: |
| 333 | * - when the client starts up, and requests default information |
| 334 | * by sending a ZEBRA_REDISTRIBUTE_DEFAULT_ADD to the zebra server, in the |
| 335 | * - case of rip, ripngd, ospfd and ospf6d, when the client sends a |
| 336 | * ZEBRA_REDISTRIBUTE_ADD as a result of the "redistribute" vty cmd, |
| 337 | * - when the zebra server redistributes routes after it updates its rib |
| 338 | * |
| 339 | * The zebra server sends clients a ZEBRA_IPV4_ROUTE_DELETE or a |
| 340 | * ZEBRA_IPV6_ROUTE_DELETE via zsend_route_multipath when: |
| 341 | * - a "ip route" or "ipv6 route" vty command is issued, a prefix is |
| 342 | * - deleted from zebra's rib, and this info |
| 343 | * has to be redistributed to the clients |
| 344 | * |
| 345 | * XXX The ZEBRA_IPV*_ROUTE_ADD message is also sent by the client to the |
| 346 | * zebra server when the client wants to tell the zebra server to add a |
| 347 | * route to the kernel (zapi_ipv4_add etc. ). Since it's essentially the |
| 348 | * same message being sent back and forth, this function and |
| 349 | * zapi_ipv{4,6}_{add, delete} should be re-written to avoid code |
| 350 | * duplication. |
| 351 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 352 | int |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 353 | zsend_route_multipath (int cmd, struct zserv *client, struct prefix *p, |
| 354 | struct rib *rib) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | { |
| 356 | int psize; |
| 357 | struct stream *s; |
| 358 | struct nexthop *nexthop; |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 359 | unsigned long nhnummark = 0, messmark = 0; |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 360 | int nhnum = 0; |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 361 | u_char zapi_flags = 0; |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 362 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 363 | s = client->obuf; |
| 364 | stream_reset (s); |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 365 | |
| 366 | zserv_create_header (s, cmd); |
| 367 | |
| 368 | /* Put type and nexthop. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 369 | stream_putc (s, rib->type); |
| 370 | stream_putc (s, rib->flags); |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 371 | |
| 372 | /* marker for message flags field */ |
| 373 | messmark = stream_get_endp (s); |
| 374 | stream_putc (s, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | |
| 376 | /* Prefix. */ |
| 377 | psize = PSIZE (p->prefixlen); |
| 378 | stream_putc (s, p->prefixlen); |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 379 | stream_write (s, (u_char *) & p->u.prefix, psize); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 380 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 381 | /* |
| 382 | * XXX The message format sent by zebra below does not match the format |
| 383 | * of the corresponding message expected by the zebra server |
| 384 | * itself (e.g., see zread_ipv4_add). The nexthop_num is not set correctly, |
| 385 | * (is there a bug on the client side if more than one segment is sent?) |
| 386 | * nexthop ZEBRA_NEXTHOP_IPV4 is never set, ZEBRA_NEXTHOP_IFINDEX |
| 387 | * is hard-coded. |
| 388 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 389 | /* Nexthop */ |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 390 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 391 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 392 | { |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 393 | if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB) |
| 394 | || nexthop_has_fib_child(nexthop)) |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 395 | { |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 396 | SET_FLAG (zapi_flags, ZAPI_MESSAGE_NEXTHOP); |
| 397 | SET_FLAG (zapi_flags, ZAPI_MESSAGE_IFINDEX); |
| 398 | |
| 399 | if (nhnummark == 0) |
| 400 | { |
| 401 | nhnummark = stream_get_endp (s); |
| 402 | stream_putc (s, 1); /* placeholder */ |
| 403 | } |
| 404 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 405 | nhnum++; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 406 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 407 | switch(nexthop->type) |
| 408 | { |
| 409 | case NEXTHOP_TYPE_IPV4: |
| 410 | case NEXTHOP_TYPE_IPV4_IFINDEX: |
| 411 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 412 | break; |
| 413 | #ifdef HAVE_IPV6 |
| 414 | case NEXTHOP_TYPE_IPV6: |
| 415 | case NEXTHOP_TYPE_IPV6_IFINDEX: |
| 416 | case NEXTHOP_TYPE_IPV6_IFNAME: |
| 417 | stream_write (s, (u_char *) &nexthop->gate.ipv6, 16); |
| 418 | break; |
| 419 | #endif |
| 420 | default: |
| 421 | if (cmd == ZEBRA_IPV4_ROUTE_ADD |
| 422 | || cmd == ZEBRA_IPV4_ROUTE_DELETE) |
| 423 | { |
| 424 | struct in_addr empty; |
paul | 44983cf | 2004-09-22 13:15:58 +0000 | [diff] [blame] | 425 | memset (&empty, 0, sizeof (struct in_addr)); |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 426 | stream_write (s, (u_char *) &empty, IPV4_MAX_BYTELEN); |
| 427 | } |
| 428 | else |
| 429 | { |
| 430 | struct in6_addr empty; |
| 431 | memset (&empty, 0, sizeof (struct in6_addr)); |
| 432 | stream_write (s, (u_char *) &empty, IPV6_MAX_BYTELEN); |
| 433 | } |
| 434 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 435 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 436 | /* Interface index. */ |
| 437 | stream_putc (s, 1); |
| 438 | stream_putl (s, nexthop->ifindex); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 439 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 440 | break; |
| 441 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | /* Metric */ |
Stephen Hemminger | cf8a831 | 2010-08-18 15:56:46 -0700 | [diff] [blame] | 445 | if (cmd == ZEBRA_IPV4_ROUTE_ADD || cmd == ZEBRA_IPV6_ROUTE_ADD) |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 446 | { |
vincent | fbf5d03 | 2005-09-29 11:25:50 +0000 | [diff] [blame] | 447 | SET_FLAG (zapi_flags, ZAPI_MESSAGE_DISTANCE); |
| 448 | stream_putc (s, rib->distance); |
paul | 1dcb517 | 2005-05-31 08:38:50 +0000 | [diff] [blame] | 449 | SET_FLAG (zapi_flags, ZAPI_MESSAGE_METRIC); |
| 450 | stream_putl (s, rib->metric); |
| 451 | } |
| 452 | |
| 453 | /* write real message flags value */ |
| 454 | stream_putc_at (s, messmark, zapi_flags); |
| 455 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 456 | /* Write next-hop number */ |
| 457 | if (nhnummark) |
hasso | c1eaa44 | 2004-10-19 06:26:01 +0000 | [diff] [blame] | 458 | stream_putc_at (s, nhnummark, nhnum); |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 459 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 460 | /* Write packet size. */ |
| 461 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 462 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 463 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 464 | } |
| 465 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 466 | #ifdef HAVE_IPV6 |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 467 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 468 | zsend_ipv6_nexthop_lookup (struct zserv *client, struct in6_addr *addr) |
| 469 | { |
| 470 | struct stream *s; |
| 471 | struct rib *rib; |
| 472 | unsigned long nump; |
| 473 | u_char num; |
| 474 | struct nexthop *nexthop; |
| 475 | |
| 476 | /* Lookup nexthop. */ |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 477 | rib = rib_match_ipv6 (addr, VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 478 | |
| 479 | /* Get output stream. */ |
| 480 | s = client->obuf; |
| 481 | stream_reset (s); |
| 482 | |
| 483 | /* Fill in result. */ |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 484 | zserv_create_header (s, ZEBRA_IPV6_NEXTHOP_LOOKUP); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 485 | stream_put (s, &addr, 16); |
| 486 | |
| 487 | if (rib) |
| 488 | { |
| 489 | stream_putl (s, rib->metric); |
| 490 | num = 0; |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 491 | nump = stream_get_endp(s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 492 | stream_putc (s, 0); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 493 | /* Only non-recursive routes are elegible to resolve nexthop we |
| 494 | * are looking up. Therefore, we will just iterate over the top |
| 495 | * chain of nexthops. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 496 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 497 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 498 | { |
| 499 | stream_putc (s, nexthop->type); |
| 500 | switch (nexthop->type) |
| 501 | { |
| 502 | case ZEBRA_NEXTHOP_IPV6: |
| 503 | stream_put (s, &nexthop->gate.ipv6, 16); |
| 504 | break; |
| 505 | case ZEBRA_NEXTHOP_IPV6_IFINDEX: |
| 506 | case ZEBRA_NEXTHOP_IPV6_IFNAME: |
| 507 | stream_put (s, &nexthop->gate.ipv6, 16); |
| 508 | stream_putl (s, nexthop->ifindex); |
| 509 | break; |
| 510 | case ZEBRA_NEXTHOP_IFINDEX: |
| 511 | case ZEBRA_NEXTHOP_IFNAME: |
| 512 | stream_putl (s, nexthop->ifindex); |
| 513 | break; |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 514 | default: |
| 515 | /* do nothing */ |
| 516 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 517 | } |
| 518 | num++; |
| 519 | } |
| 520 | stream_putc_at (s, nump, num); |
| 521 | } |
| 522 | else |
| 523 | { |
| 524 | stream_putl (s, 0); |
| 525 | stream_putc (s, 0); |
| 526 | } |
| 527 | |
| 528 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 529 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 530 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 531 | } |
| 532 | #endif /* HAVE_IPV6 */ |
| 533 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 534 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 535 | zsend_ipv4_nexthop_lookup (struct zserv *client, struct in_addr addr) |
| 536 | { |
| 537 | struct stream *s; |
| 538 | struct rib *rib; |
| 539 | unsigned long nump; |
| 540 | u_char num; |
| 541 | struct nexthop *nexthop; |
| 542 | |
David Lamparter | f598cf7 | 2014-11-22 14:44:20 -0800 | [diff] [blame] | 543 | /* Lookup nexthop - eBGP excluded */ |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 544 | rib = rib_match_ipv4_safi (addr, SAFI_UNICAST, 1, NULL, VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 545 | |
| 546 | /* Get output stream. */ |
| 547 | s = client->obuf; |
| 548 | stream_reset (s); |
| 549 | |
| 550 | /* Fill in result. */ |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 551 | zserv_create_header (s, ZEBRA_IPV4_NEXTHOP_LOOKUP); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 552 | stream_put_in_addr (s, &addr); |
| 553 | |
| 554 | if (rib) |
| 555 | { |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 556 | if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) |
| 557 | zlog_debug("%s: Matching rib entry found.", __func__); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 558 | stream_putl (s, rib->metric); |
| 559 | num = 0; |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 560 | nump = stream_get_endp(s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 561 | stream_putc (s, 0); |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 562 | /* Only non-recursive routes are elegible to resolve the nexthop we |
| 563 | * are looking up. Therefore, we will just iterate over the top |
| 564 | * chain of nexthops. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 565 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 566 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 567 | { |
| 568 | stream_putc (s, nexthop->type); |
| 569 | switch (nexthop->type) |
| 570 | { |
| 571 | case ZEBRA_NEXTHOP_IPV4: |
| 572 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 573 | break; |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 574 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 575 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 576 | stream_putl (s, nexthop->ifindex); |
| 577 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 578 | case ZEBRA_NEXTHOP_IFINDEX: |
| 579 | case ZEBRA_NEXTHOP_IFNAME: |
| 580 | stream_putl (s, nexthop->ifindex); |
| 581 | break; |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 582 | default: |
| 583 | /* do nothing */ |
| 584 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 585 | } |
| 586 | num++; |
| 587 | } |
| 588 | stream_putc_at (s, nump, num); |
| 589 | } |
| 590 | else |
| 591 | { |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 592 | if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) |
| 593 | zlog_debug("%s: No matching rib entry found.", __func__); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 594 | stream_putl (s, 0); |
| 595 | stream_putc (s, 0); |
| 596 | } |
| 597 | |
| 598 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 599 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 600 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 603 | /* |
| 604 | Modified version of zsend_ipv4_nexthop_lookup(): |
| 605 | Query unicast rib if nexthop is not found on mrib. |
| 606 | Returns both route metric and protocol distance. |
| 607 | */ |
| 608 | static int |
David Lamparter | bd07812 | 2015-01-06 19:53:24 +0100 | [diff] [blame] | 609 | zsend_ipv4_nexthop_lookup_mrib (struct zserv *client, struct in_addr addr, |
| 610 | struct rib *rib) |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 611 | { |
| 612 | struct stream *s; |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 613 | unsigned long nump; |
| 614 | u_char num; |
| 615 | struct nexthop *nexthop; |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 616 | |
| 617 | /* Get output stream. */ |
| 618 | s = client->obuf; |
| 619 | stream_reset (s); |
| 620 | |
| 621 | /* Fill in result. */ |
| 622 | zserv_create_header (s, ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB); |
| 623 | stream_put_in_addr (s, &addr); |
| 624 | |
| 625 | if (rib) |
| 626 | { |
| 627 | stream_putc (s, rib->distance); |
| 628 | stream_putl (s, rib->metric); |
| 629 | num = 0; |
| 630 | nump = stream_get_endp(s); /* remember position for nexthop_num */ |
| 631 | stream_putc (s, 0); /* reserve room for nexthop_num */ |
| 632 | /* Only non-recursive routes are elegible to resolve the nexthop we |
| 633 | * are looking up. Therefore, we will just iterate over the top |
| 634 | * chain of nexthops. */ |
| 635 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
| 636 | if (CHECK_FLAG (nexthop->flags, NEXTHOP_FLAG_FIB)) |
| 637 | { |
| 638 | stream_putc (s, nexthop->type); |
| 639 | switch (nexthop->type) |
| 640 | { |
| 641 | case ZEBRA_NEXTHOP_IPV4: |
| 642 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 643 | break; |
| 644 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 645 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 646 | stream_putl (s, nexthop->ifindex); |
| 647 | break; |
| 648 | case ZEBRA_NEXTHOP_IFINDEX: |
| 649 | case ZEBRA_NEXTHOP_IFNAME: |
| 650 | stream_putl (s, nexthop->ifindex); |
| 651 | break; |
| 652 | default: |
| 653 | /* do nothing */ |
| 654 | break; |
| 655 | } |
| 656 | num++; |
| 657 | } |
| 658 | |
| 659 | stream_putc_at (s, nump, num); /* store nexthop_num */ |
| 660 | } |
| 661 | else |
| 662 | { |
| 663 | stream_putc (s, 0); /* distance */ |
| 664 | stream_putl (s, 0); /* metric */ |
| 665 | stream_putc (s, 0); /* nexthop_num */ |
| 666 | } |
| 667 | |
| 668 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 669 | |
| 670 | return zebra_server_send_message(client); |
| 671 | } |
| 672 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 673 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 674 | zsend_ipv4_import_lookup (struct zserv *client, struct prefix_ipv4 *p) |
| 675 | { |
| 676 | struct stream *s; |
| 677 | struct rib *rib; |
| 678 | unsigned long nump; |
| 679 | u_char num; |
| 680 | struct nexthop *nexthop; |
| 681 | |
| 682 | /* Lookup nexthop. */ |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 683 | rib = rib_lookup_ipv4 (p, VRF_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 684 | |
| 685 | /* Get output stream. */ |
| 686 | s = client->obuf; |
| 687 | stream_reset (s); |
| 688 | |
| 689 | /* Fill in result. */ |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 690 | zserv_create_header (s, ZEBRA_IPV4_IMPORT_LOOKUP); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 691 | stream_put_in_addr (s, &p->prefix); |
| 692 | |
| 693 | if (rib) |
| 694 | { |
| 695 | stream_putl (s, rib->metric); |
| 696 | num = 0; |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 697 | nump = stream_get_endp(s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 698 | stream_putc (s, 0); |
| 699 | for (nexthop = rib->nexthop; nexthop; nexthop = nexthop->next) |
Christian Franke | fa713d9 | 2013-07-05 15:35:37 +0000 | [diff] [blame] | 700 | if (CHECK_FLAG(nexthop->flags, NEXTHOP_FLAG_FIB) |
| 701 | || nexthop_has_fib_child(nexthop)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 702 | { |
| 703 | stream_putc (s, nexthop->type); |
| 704 | switch (nexthop->type) |
| 705 | { |
| 706 | case ZEBRA_NEXTHOP_IPV4: |
| 707 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 708 | break; |
Christian Franke | a12afd5 | 2013-05-25 14:01:36 +0000 | [diff] [blame] | 709 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 710 | stream_put_in_addr (s, &nexthop->gate.ipv4); |
| 711 | stream_putl (s, nexthop->ifindex); |
| 712 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 713 | case ZEBRA_NEXTHOP_IFINDEX: |
| 714 | case ZEBRA_NEXTHOP_IFNAME: |
| 715 | stream_putl (s, nexthop->ifindex); |
| 716 | break; |
hasso | fa2b17e | 2004-03-04 17:45:00 +0000 | [diff] [blame] | 717 | default: |
| 718 | /* do nothing */ |
| 719 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 720 | } |
| 721 | num++; |
| 722 | } |
| 723 | stream_putc_at (s, nump, num); |
| 724 | } |
| 725 | else |
| 726 | { |
| 727 | stream_putl (s, 0); |
| 728 | stream_putc (s, 0); |
| 729 | } |
| 730 | |
| 731 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 732 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 733 | return zebra_server_send_message(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 734 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 735 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 736 | /* Router-id is updated. Send ZEBRA_ROUTER_ID_ADD to client. */ |
| 737 | int |
| 738 | zsend_router_id_update (struct zserv *client, struct prefix *p) |
| 739 | { |
| 740 | struct stream *s; |
| 741 | int blen; |
| 742 | |
| 743 | /* Check this client need interface information. */ |
| 744 | if (!client->ridinfo) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 745 | return 0; |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 746 | |
| 747 | s = client->obuf; |
| 748 | stream_reset (s); |
| 749 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 750 | /* Message type. */ |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 751 | zserv_create_header (s, ZEBRA_ROUTER_ID_UPDATE); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 752 | |
| 753 | /* Prefix information. */ |
| 754 | stream_putc (s, p->family); |
| 755 | blen = prefix_blen (p); |
| 756 | stream_put (s, &p->u.prefix, blen); |
| 757 | stream_putc (s, p->prefixlen); |
| 758 | |
| 759 | /* Write packet size. */ |
| 760 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 761 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 762 | return zebra_server_send_message(client); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 763 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 764 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 765 | /* Register zebra server interface information. Send current all |
| 766 | interface and address information. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 767 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 768 | zread_interface_add (struct zserv *client, u_short length) |
| 769 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 770 | struct listnode *ifnode, *ifnnode; |
| 771 | struct listnode *cnode, *cnnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 772 | struct interface *ifp; |
| 773 | struct connected *c; |
| 774 | |
| 775 | /* Interface information is needed. */ |
| 776 | client->ifinfo = 1; |
| 777 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 778 | for (ALL_LIST_ELEMENTS (iflist, ifnode, ifnnode, ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 779 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 780 | /* Skip pseudo interface. */ |
| 781 | if (! CHECK_FLAG (ifp->status, ZEBRA_INTERFACE_ACTIVE)) |
| 782 | continue; |
| 783 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 784 | if (zsend_interface_add (client, ifp) < 0) |
| 785 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 786 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 787 | for (ALL_LIST_ELEMENTS (ifp->connected, cnode, cnnode, c)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 788 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 789 | if (CHECK_FLAG (c->conf, ZEBRA_IFC_REAL) && |
| 790 | (zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_ADD, client, |
| 791 | ifp, c) < 0)) |
| 792 | return -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 793 | } |
| 794 | } |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 795 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | /* Unregister zebra server interface information. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 799 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 800 | zread_interface_delete (struct zserv *client, u_short length) |
| 801 | { |
| 802 | client->ifinfo = 0; |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 803 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 804 | } |
| 805 | |
| 806 | /* This function support multiple nexthop. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 807 | /* |
| 808 | * Parse the ZEBRA_IPV4_ROUTE_ADD sent from client. Update rib and |
| 809 | * add kernel route. |
| 810 | */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 811 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 812 | zread_ipv4_add (struct zserv *client, u_short length) |
| 813 | { |
| 814 | int i; |
| 815 | struct rib *rib; |
| 816 | struct prefix_ipv4 p; |
| 817 | u_char message; |
| 818 | struct in_addr nexthop; |
| 819 | u_char nexthop_num; |
| 820 | u_char nexthop_type; |
| 821 | struct stream *s; |
| 822 | unsigned int ifindex; |
| 823 | u_char ifname_len; |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 824 | safi_t safi; |
| 825 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 826 | |
| 827 | /* Get input stream. */ |
| 828 | s = client->ibuf; |
| 829 | |
| 830 | /* Allocate new rib. */ |
paul | 4d38fdb | 2005-04-28 17:35:14 +0000 | [diff] [blame] | 831 | rib = XCALLOC (MTYPE_RIB, sizeof (struct rib)); |
| 832 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 833 | /* Type, flags, message. */ |
| 834 | rib->type = stream_getc (s); |
| 835 | rib->flags = stream_getc (s); |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 836 | message = stream_getc (s); |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 837 | safi = stream_getw (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 838 | rib->uptime = time (NULL); |
| 839 | |
| 840 | /* IPv4 prefix. */ |
| 841 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 842 | p.family = AF_INET; |
| 843 | p.prefixlen = stream_getc (s); |
| 844 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 845 | |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 846 | /* VRF ID */ |
| 847 | rib->vrf_id = VRF_DEFAULT; |
| 848 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 849 | /* Nexthop parse. */ |
| 850 | if (CHECK_FLAG (message, ZAPI_MESSAGE_NEXTHOP)) |
| 851 | { |
| 852 | nexthop_num = stream_getc (s); |
| 853 | |
| 854 | for (i = 0; i < nexthop_num; i++) |
| 855 | { |
| 856 | nexthop_type = stream_getc (s); |
| 857 | |
| 858 | switch (nexthop_type) |
| 859 | { |
| 860 | case ZEBRA_NEXTHOP_IFINDEX: |
| 861 | ifindex = stream_getl (s); |
| 862 | nexthop_ifindex_add (rib, ifindex); |
| 863 | break; |
| 864 | case ZEBRA_NEXTHOP_IFNAME: |
| 865 | ifname_len = stream_getc (s); |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 866 | stream_forward_getp (s, ifname_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 867 | break; |
| 868 | case ZEBRA_NEXTHOP_IPV4: |
| 869 | nexthop.s_addr = stream_get_ipv4 (s); |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 870 | nexthop_ipv4_add (rib, &nexthop, NULL); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 871 | break; |
Joakim Tjernlund | c963c20 | 2012-07-07 17:06:13 +0200 | [diff] [blame] | 872 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 873 | nexthop.s_addr = stream_get_ipv4 (s); |
| 874 | ifindex = stream_getl (s); |
| 875 | nexthop_ipv4_ifindex_add (rib, &nexthop, NULL, ifindex); |
| 876 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 877 | case ZEBRA_NEXTHOP_IPV6: |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 878 | stream_forward_getp (s, IPV6_MAX_BYTELEN); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 879 | break; |
Subbaiah Venkata | 6902c69 | 2012-03-27 19:21:29 -0700 | [diff] [blame] | 880 | case ZEBRA_NEXTHOP_BLACKHOLE: |
| 881 | nexthop_blackhole_add (rib); |
| 882 | break; |
| 883 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 884 | } |
| 885 | } |
| 886 | |
| 887 | /* Distance. */ |
| 888 | if (CHECK_FLAG (message, ZAPI_MESSAGE_DISTANCE)) |
| 889 | rib->distance = stream_getc (s); |
| 890 | |
| 891 | /* Metric. */ |
| 892 | if (CHECK_FLAG (message, ZAPI_MESSAGE_METRIC)) |
| 893 | rib->metric = stream_getl (s); |
| 894 | |
Paul Jakma | 171eee3 | 2006-07-27 16:11:02 +0000 | [diff] [blame] | 895 | /* Table */ |
| 896 | rib->table=zebrad.rtm_table_default; |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 897 | rib_add_ipv4_multipath (&p, rib, safi); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 898 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | /* Zebra server IPv4 prefix delete function. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 902 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 903 | zread_ipv4_delete (struct zserv *client, u_short length) |
| 904 | { |
| 905 | int i; |
| 906 | struct stream *s; |
| 907 | struct zapi_ipv4 api; |
Subbaiah Venkata | 6902c69 | 2012-03-27 19:21:29 -0700 | [diff] [blame] | 908 | struct in_addr nexthop, *nexthop_p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 909 | unsigned long ifindex; |
| 910 | struct prefix_ipv4 p; |
| 911 | u_char nexthop_num; |
| 912 | u_char nexthop_type; |
| 913 | u_char ifname_len; |
| 914 | |
| 915 | s = client->ibuf; |
| 916 | ifindex = 0; |
| 917 | nexthop.s_addr = 0; |
Subbaiah Venkata | 6902c69 | 2012-03-27 19:21:29 -0700 | [diff] [blame] | 918 | nexthop_p = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 919 | |
| 920 | /* Type, flags, message. */ |
| 921 | api.type = stream_getc (s); |
| 922 | api.flags = stream_getc (s); |
| 923 | api.message = stream_getc (s); |
G.Balaji | cddf391 | 2011-11-26 21:59:32 +0400 | [diff] [blame] | 924 | api.safi = stream_getw (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 925 | |
| 926 | /* IPv4 prefix. */ |
| 927 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 928 | p.family = AF_INET; |
| 929 | p.prefixlen = stream_getc (s); |
| 930 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 931 | |
| 932 | /* Nexthop, ifindex, distance, metric. */ |
| 933 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 934 | { |
| 935 | nexthop_num = stream_getc (s); |
| 936 | |
| 937 | for (i = 0; i < nexthop_num; i++) |
| 938 | { |
| 939 | nexthop_type = stream_getc (s); |
| 940 | |
| 941 | switch (nexthop_type) |
| 942 | { |
| 943 | case ZEBRA_NEXTHOP_IFINDEX: |
| 944 | ifindex = stream_getl (s); |
| 945 | break; |
| 946 | case ZEBRA_NEXTHOP_IFNAME: |
| 947 | ifname_len = stream_getc (s); |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 948 | stream_forward_getp (s, ifname_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 949 | break; |
| 950 | case ZEBRA_NEXTHOP_IPV4: |
| 951 | nexthop.s_addr = stream_get_ipv4 (s); |
Subbaiah Venkata | 6902c69 | 2012-03-27 19:21:29 -0700 | [diff] [blame] | 952 | nexthop_p = &nexthop; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 953 | break; |
Joakim Tjernlund | c963c20 | 2012-07-07 17:06:13 +0200 | [diff] [blame] | 954 | case ZEBRA_NEXTHOP_IPV4_IFINDEX: |
| 955 | nexthop.s_addr = stream_get_ipv4 (s); |
Christian Franke | 23f5f7c | 2013-11-27 17:06:14 +0000 | [diff] [blame] | 956 | nexthop_p = &nexthop; |
Joakim Tjernlund | c963c20 | 2012-07-07 17:06:13 +0200 | [diff] [blame] | 957 | ifindex = stream_getl (s); |
| 958 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 959 | case ZEBRA_NEXTHOP_IPV6: |
paul | 9985f83 | 2005-02-09 15:51:56 +0000 | [diff] [blame] | 960 | stream_forward_getp (s, IPV6_MAX_BYTELEN); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 961 | break; |
| 962 | } |
| 963 | } |
| 964 | } |
| 965 | |
| 966 | /* Distance. */ |
| 967 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 968 | api.distance = stream_getc (s); |
| 969 | else |
| 970 | api.distance = 0; |
| 971 | |
| 972 | /* Metric. */ |
| 973 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 974 | api.metric = stream_getl (s); |
| 975 | else |
| 976 | api.metric = 0; |
| 977 | |
Subbaiah Venkata | 6902c69 | 2012-03-27 19:21:29 -0700 | [diff] [blame] | 978 | rib_delete_ipv4 (api.type, api.flags, &p, nexthop_p, ifindex, |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 979 | VRF_DEFAULT, api.safi); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 980 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | /* Nexthop lookup for IPv4. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 984 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 985 | zread_ipv4_nexthop_lookup (struct zserv *client, u_short length) |
| 986 | { |
| 987 | struct in_addr addr; |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 988 | char buf[BUFSIZ]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 989 | |
| 990 | addr.s_addr = stream_get_ipv4 (client->ibuf); |
Christian Franke | bb97e46 | 2013-05-25 14:01:35 +0000 | [diff] [blame] | 991 | if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) |
| 992 | zlog_debug("%s: looking up %s", __func__, |
| 993 | inet_ntop (AF_INET, &addr, buf, BUFSIZ)); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 994 | return zsend_ipv4_nexthop_lookup (client, addr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 995 | } |
| 996 | |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 997 | /* MRIB Nexthop lookup for IPv4. */ |
| 998 | static int |
| 999 | zread_ipv4_nexthop_lookup_mrib (struct zserv *client, u_short length) |
| 1000 | { |
| 1001 | struct in_addr addr; |
David Lamparter | bd07812 | 2015-01-06 19:53:24 +0100 | [diff] [blame] | 1002 | struct rib *rib; |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 1003 | |
| 1004 | addr.s_addr = stream_get_ipv4 (client->ibuf); |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 1005 | rib = rib_match_ipv4_multicast (addr, NULL, VRF_DEFAULT); |
David Lamparter | bd07812 | 2015-01-06 19:53:24 +0100 | [diff] [blame] | 1006 | return zsend_ipv4_nexthop_lookup_mrib (client, addr, rib); |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 1007 | } |
| 1008 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1009 | /* Nexthop lookup for IPv4. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1010 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1011 | zread_ipv4_import_lookup (struct zserv *client, u_short length) |
| 1012 | { |
| 1013 | struct prefix_ipv4 p; |
| 1014 | |
| 1015 | p.family = AF_INET; |
| 1016 | p.prefixlen = stream_getc (client->ibuf); |
| 1017 | p.prefix.s_addr = stream_get_ipv4 (client->ibuf); |
| 1018 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1019 | return zsend_ipv4_import_lookup (client, &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | #ifdef HAVE_IPV6 |
| 1023 | /* Zebra server IPv6 prefix add function. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1024 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1025 | zread_ipv6_add (struct zserv *client, u_short length) |
| 1026 | { |
| 1027 | int i; |
| 1028 | struct stream *s; |
| 1029 | struct zapi_ipv6 api; |
| 1030 | struct in6_addr nexthop; |
| 1031 | unsigned long ifindex; |
| 1032 | struct prefix_ipv6 p; |
| 1033 | |
| 1034 | s = client->ibuf; |
| 1035 | ifindex = 0; |
| 1036 | memset (&nexthop, 0, sizeof (struct in6_addr)); |
| 1037 | |
| 1038 | /* Type, flags, message. */ |
| 1039 | api.type = stream_getc (s); |
| 1040 | api.flags = stream_getc (s); |
| 1041 | api.message = stream_getc (s); |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 1042 | api.safi = stream_getw (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1043 | |
| 1044 | /* IPv4 prefix. */ |
| 1045 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 1046 | p.family = AF_INET6; |
| 1047 | p.prefixlen = stream_getc (s); |
| 1048 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 1049 | |
| 1050 | /* Nexthop, ifindex, distance, metric. */ |
| 1051 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 1052 | { |
| 1053 | u_char nexthop_type; |
| 1054 | |
| 1055 | api.nexthop_num = stream_getc (s); |
| 1056 | for (i = 0; i < api.nexthop_num; i++) |
| 1057 | { |
| 1058 | nexthop_type = stream_getc (s); |
| 1059 | |
| 1060 | switch (nexthop_type) |
| 1061 | { |
| 1062 | case ZEBRA_NEXTHOP_IPV6: |
| 1063 | stream_get (&nexthop, s, 16); |
| 1064 | break; |
| 1065 | case ZEBRA_NEXTHOP_IFINDEX: |
| 1066 | ifindex = stream_getl (s); |
| 1067 | break; |
| 1068 | } |
| 1069 | } |
| 1070 | } |
| 1071 | |
| 1072 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 1073 | api.distance = stream_getc (s); |
| 1074 | else |
| 1075 | api.distance = 0; |
| 1076 | |
| 1077 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 1078 | api.metric = stream_getl (s); |
| 1079 | else |
| 1080 | api.metric = 0; |
| 1081 | |
| 1082 | if (IN6_IS_ADDR_UNSPECIFIED (&nexthop)) |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 1083 | rib_add_ipv6 (api.type, api.flags, &p, NULL, ifindex, |
| 1084 | VRF_DEFAULT, zebrad.rtm_table_default, api.metric, |
| 1085 | api.distance, api.safi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1086 | else |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 1087 | rib_add_ipv6 (api.type, api.flags, &p, &nexthop, ifindex, |
| 1088 | VRF_DEFAULT, zebrad.rtm_table_default, api.metric, |
| 1089 | api.distance, api.safi); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1090 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1091 | } |
| 1092 | |
| 1093 | /* Zebra server IPv6 prefix delete function. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1094 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1095 | zread_ipv6_delete (struct zserv *client, u_short length) |
| 1096 | { |
| 1097 | int i; |
| 1098 | struct stream *s; |
| 1099 | struct zapi_ipv6 api; |
| 1100 | struct in6_addr nexthop; |
| 1101 | unsigned long ifindex; |
| 1102 | struct prefix_ipv6 p; |
| 1103 | |
| 1104 | s = client->ibuf; |
| 1105 | ifindex = 0; |
| 1106 | memset (&nexthop, 0, sizeof (struct in6_addr)); |
| 1107 | |
| 1108 | /* Type, flags, message. */ |
| 1109 | api.type = stream_getc (s); |
| 1110 | api.flags = stream_getc (s); |
| 1111 | api.message = stream_getc (s); |
G.Balaji | f768f36 | 2011-11-26 22:10:39 +0400 | [diff] [blame] | 1112 | api.safi = stream_getw (s); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1113 | |
| 1114 | /* IPv4 prefix. */ |
| 1115 | memset (&p, 0, sizeof (struct prefix_ipv6)); |
| 1116 | p.family = AF_INET6; |
| 1117 | p.prefixlen = stream_getc (s); |
| 1118 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 1119 | |
| 1120 | /* Nexthop, ifindex, distance, metric. */ |
| 1121 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 1122 | { |
| 1123 | u_char nexthop_type; |
| 1124 | |
| 1125 | api.nexthop_num = stream_getc (s); |
| 1126 | for (i = 0; i < api.nexthop_num; i++) |
| 1127 | { |
| 1128 | nexthop_type = stream_getc (s); |
| 1129 | |
| 1130 | switch (nexthop_type) |
| 1131 | { |
| 1132 | case ZEBRA_NEXTHOP_IPV6: |
| 1133 | stream_get (&nexthop, s, 16); |
| 1134 | break; |
| 1135 | case ZEBRA_NEXTHOP_IFINDEX: |
| 1136 | ifindex = stream_getl (s); |
| 1137 | break; |
| 1138 | } |
| 1139 | } |
| 1140 | } |
| 1141 | |
| 1142 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 1143 | api.distance = stream_getc (s); |
| 1144 | else |
| 1145 | api.distance = 0; |
| 1146 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 1147 | api.metric = stream_getl (s); |
| 1148 | else |
| 1149 | api.metric = 0; |
| 1150 | |
| 1151 | if (IN6_IS_ADDR_UNSPECIFIED (&nexthop)) |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 1152 | rib_delete_ipv6 (api.type, api.flags, &p, NULL, ifindex, VRF_DEFAULT, |
| 1153 | api.safi); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1154 | else |
Feng Lu | 0d0686f | 2015-05-22 11:40:02 +0200 | [diff] [blame^] | 1155 | rib_delete_ipv6 (api.type, api.flags, &p, &nexthop, ifindex, VRF_DEFAULT, |
| 1156 | api.safi); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1157 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1158 | } |
| 1159 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1160 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1161 | zread_ipv6_nexthop_lookup (struct zserv *client, u_short length) |
| 1162 | { |
| 1163 | struct in6_addr addr; |
| 1164 | char buf[BUFSIZ]; |
| 1165 | |
| 1166 | stream_get (&addr, client->ibuf, 16); |
Christian Franke | a520708 | 2013-04-11 08:24:29 +0000 | [diff] [blame] | 1167 | if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) |
| 1168 | zlog_debug("%s: looking up %s", __func__, |
| 1169 | inet_ntop (AF_INET6, &addr, buf, BUFSIZ)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1170 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1171 | return zsend_ipv6_nexthop_lookup (client, &addr); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1172 | } |
| 1173 | #endif /* HAVE_IPV6 */ |
| 1174 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1175 | /* Register zebra server router-id information. Send current router-id */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1176 | static int |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1177 | zread_router_id_add (struct zserv *client, u_short length) |
| 1178 | { |
| 1179 | struct prefix p; |
| 1180 | |
| 1181 | /* Router-id information is needed. */ |
| 1182 | client->ridinfo = 1; |
| 1183 | |
| 1184 | router_id_get (&p); |
| 1185 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1186 | return zsend_router_id_update (client,&p); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | /* Unregister zebra server router-id information. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1190 | static int |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1191 | zread_router_id_delete (struct zserv *client, u_short length) |
| 1192 | { |
| 1193 | client->ridinfo = 0; |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1194 | return 0; |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 1197 | /* Tie up route-type and client->sock */ |
| 1198 | static void |
| 1199 | zread_hello (struct zserv *client) |
| 1200 | { |
| 1201 | /* type of protocol (lib/zebra.h) */ |
| 1202 | u_char proto; |
| 1203 | proto = stream_getc (client->ibuf); |
| 1204 | |
| 1205 | /* accept only dynamic routing protocols */ |
| 1206 | if ((proto < ZEBRA_ROUTE_MAX) |
| 1207 | && (proto > ZEBRA_ROUTE_STATIC)) |
| 1208 | { |
| 1209 | zlog_notice ("client %d says hello and bids fair to announce only %s routes", |
| 1210 | client->sock, zebra_route_string(proto)); |
| 1211 | |
| 1212 | /* if route-type was binded by other client */ |
| 1213 | if (route_type_oaths[proto]) |
| 1214 | zlog_warn ("sender of %s routes changed %c->%c", |
| 1215 | zebra_route_string(proto), route_type_oaths[proto], |
| 1216 | client->sock); |
| 1217 | |
| 1218 | route_type_oaths[proto] = client->sock; |
| 1219 | } |
| 1220 | } |
| 1221 | |
| 1222 | /* If client sent routes of specific type, zebra removes it |
| 1223 | * and returns number of deleted routes. |
| 1224 | */ |
| 1225 | static void |
| 1226 | zebra_score_rib (int client_sock) |
| 1227 | { |
| 1228 | int i; |
| 1229 | |
| 1230 | for (i = ZEBRA_ROUTE_RIP; i < ZEBRA_ROUTE_MAX; i++) |
| 1231 | if (client_sock == route_type_oaths[i]) |
| 1232 | { |
| 1233 | zlog_notice ("client %d disconnected. %lu %s routes removed from the rib", |
| 1234 | client_sock, rib_score_proto (i), zebra_route_string (i)); |
| 1235 | route_type_oaths[i] = 0; |
| 1236 | break; |
| 1237 | } |
| 1238 | } |
| 1239 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1240 | /* Close zebra client. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1241 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1242 | zebra_client_close (struct zserv *client) |
| 1243 | { |
| 1244 | /* Close file descriptor. */ |
| 1245 | if (client->sock) |
| 1246 | { |
| 1247 | close (client->sock); |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 1248 | zebra_score_rib (client->sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1249 | client->sock = -1; |
| 1250 | } |
| 1251 | |
| 1252 | /* Free stream buffers. */ |
| 1253 | if (client->ibuf) |
| 1254 | stream_free (client->ibuf); |
| 1255 | if (client->obuf) |
| 1256 | stream_free (client->obuf); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1257 | if (client->wb) |
| 1258 | buffer_free(client->wb); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1259 | |
| 1260 | /* Release threads. */ |
| 1261 | if (client->t_read) |
| 1262 | thread_cancel (client->t_read); |
| 1263 | if (client->t_write) |
| 1264 | thread_cancel (client->t_write); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1265 | if (client->t_suicide) |
| 1266 | thread_cancel (client->t_suicide); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1267 | |
| 1268 | /* Free client structure. */ |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1269 | listnode_delete (zebrad.client_list, client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1270 | XFREE (0, client); |
| 1271 | } |
| 1272 | |
| 1273 | /* Make new client. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1274 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1275 | zebra_client_create (int sock) |
| 1276 | { |
| 1277 | struct zserv *client; |
| 1278 | |
| 1279 | client = XCALLOC (0, sizeof (struct zserv)); |
| 1280 | |
| 1281 | /* Make client input/output buffer. */ |
| 1282 | client->sock = sock; |
| 1283 | client->ibuf = stream_new (ZEBRA_MAX_PACKET_SIZ); |
| 1284 | client->obuf = stream_new (ZEBRA_MAX_PACKET_SIZ); |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1285 | client->wb = buffer_new(0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1286 | |
| 1287 | /* Set table number. */ |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1288 | client->rtm_table = zebrad.rtm_table_default; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1289 | |
| 1290 | /* Add this client to linked list. */ |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1291 | listnode_add (zebrad.client_list, client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1292 | |
| 1293 | /* Make new read thread. */ |
| 1294 | zebra_event (ZEBRA_READ, sock, client); |
| 1295 | } |
| 1296 | |
| 1297 | /* Handler of zebra service request. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1298 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1299 | zebra_client_read (struct thread *thread) |
| 1300 | { |
| 1301 | int sock; |
| 1302 | struct zserv *client; |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1303 | size_t already; |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 1304 | uint16_t length, command; |
| 1305 | uint8_t marker, version; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1306 | |
| 1307 | /* Get thread data. Reset reading thread because I'm running. */ |
| 1308 | sock = THREAD_FD (thread); |
| 1309 | client = THREAD_ARG (thread); |
| 1310 | client->t_read = NULL; |
| 1311 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1312 | if (client->t_suicide) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1313 | { |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1314 | zebra_client_close(client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1315 | return -1; |
| 1316 | } |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1317 | |
| 1318 | /* Read length and command (if we don't have it already). */ |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1319 | if ((already = stream_get_endp(client->ibuf)) < ZEBRA_HEADER_SIZE) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1320 | { |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1321 | ssize_t nbyte; |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1322 | if (((nbyte = stream_read_try (client->ibuf, sock, |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1323 | ZEBRA_HEADER_SIZE-already)) == 0) || |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1324 | (nbyte == -1)) |
| 1325 | { |
| 1326 | if (IS_ZEBRA_DEBUG_EVENT) |
| 1327 | zlog_debug ("connection closed socket [%d]", sock); |
| 1328 | zebra_client_close (client); |
| 1329 | return -1; |
| 1330 | } |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1331 | if (nbyte != (ssize_t)(ZEBRA_HEADER_SIZE-already)) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1332 | { |
| 1333 | /* Try again later. */ |
| 1334 | zebra_event (ZEBRA_READ, sock, client); |
| 1335 | return 0; |
| 1336 | } |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1337 | already = ZEBRA_HEADER_SIZE; |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | /* Reset to read from the beginning of the incoming packet. */ |
| 1341 | stream_set_getp(client->ibuf, 0); |
| 1342 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 1343 | /* Fetch header values */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1344 | length = stream_getw (client->ibuf); |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 1345 | marker = stream_getc (client->ibuf); |
| 1346 | version = stream_getc (client->ibuf); |
| 1347 | command = stream_getw (client->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1348 | |
paul | c1b9800 | 2006-01-16 01:54:02 +0000 | [diff] [blame] | 1349 | if (marker != ZEBRA_HEADER_MARKER || version != ZSERV_VERSION) |
| 1350 | { |
| 1351 | zlog_err("%s: socket %d version mismatch, marker %d, version %d", |
| 1352 | __func__, sock, marker, version); |
| 1353 | zebra_client_close (client); |
| 1354 | return -1; |
| 1355 | } |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1356 | if (length < ZEBRA_HEADER_SIZE) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1357 | { |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1358 | zlog_warn("%s: socket %d message length %u is less than header size %d", |
| 1359 | __func__, sock, length, ZEBRA_HEADER_SIZE); |
| 1360 | zebra_client_close (client); |
| 1361 | return -1; |
| 1362 | } |
| 1363 | if (length > STREAM_SIZE(client->ibuf)) |
| 1364 | { |
| 1365 | zlog_warn("%s: socket %d message length %u exceeds buffer size %lu", |
| 1366 | __func__, sock, length, (u_long)STREAM_SIZE(client->ibuf)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1367 | zebra_client_close (client); |
| 1368 | return -1; |
| 1369 | } |
| 1370 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1371 | /* Read rest of data. */ |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1372 | if (already < length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1373 | { |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1374 | ssize_t nbyte; |
| 1375 | if (((nbyte = stream_read_try (client->ibuf, sock, |
| 1376 | length-already)) == 0) || |
| 1377 | (nbyte == -1)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1378 | { |
| 1379 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 1380 | zlog_debug ("connection closed [%d] when reading zebra data", sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1381 | zebra_client_close (client); |
| 1382 | return -1; |
| 1383 | } |
ajs | 57a1477 | 2005-04-10 15:01:56 +0000 | [diff] [blame] | 1384 | if (nbyte != (ssize_t)(length-already)) |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1385 | { |
| 1386 | /* Try again later. */ |
| 1387 | zebra_event (ZEBRA_READ, sock, client); |
| 1388 | return 0; |
| 1389 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1390 | } |
| 1391 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1392 | length -= ZEBRA_HEADER_SIZE; |
| 1393 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1394 | /* Debug packet information. */ |
| 1395 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 1396 | zlog_debug ("zebra message comes from socket [%d]", sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1397 | |
| 1398 | if (IS_ZEBRA_DEBUG_PACKET && IS_ZEBRA_DEBUG_RECV) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 1399 | zlog_debug ("zebra message received [%s] %d", |
Paul Jakma | 6685978 | 2006-05-15 17:00:37 +0000 | [diff] [blame] | 1400 | zserv_command_string (command), length); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1401 | |
| 1402 | switch (command) |
| 1403 | { |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1404 | case ZEBRA_ROUTER_ID_ADD: |
| 1405 | zread_router_id_add (client, length); |
| 1406 | break; |
| 1407 | case ZEBRA_ROUTER_ID_DELETE: |
| 1408 | zread_router_id_delete (client, length); |
| 1409 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1410 | case ZEBRA_INTERFACE_ADD: |
| 1411 | zread_interface_add (client, length); |
| 1412 | break; |
| 1413 | case ZEBRA_INTERFACE_DELETE: |
| 1414 | zread_interface_delete (client, length); |
| 1415 | break; |
| 1416 | case ZEBRA_IPV4_ROUTE_ADD: |
| 1417 | zread_ipv4_add (client, length); |
| 1418 | break; |
| 1419 | case ZEBRA_IPV4_ROUTE_DELETE: |
| 1420 | zread_ipv4_delete (client, length); |
| 1421 | break; |
| 1422 | #ifdef HAVE_IPV6 |
| 1423 | case ZEBRA_IPV6_ROUTE_ADD: |
| 1424 | zread_ipv6_add (client, length); |
| 1425 | break; |
| 1426 | case ZEBRA_IPV6_ROUTE_DELETE: |
| 1427 | zread_ipv6_delete (client, length); |
| 1428 | break; |
| 1429 | #endif /* HAVE_IPV6 */ |
| 1430 | case ZEBRA_REDISTRIBUTE_ADD: |
| 1431 | zebra_redistribute_add (command, client, length); |
| 1432 | break; |
| 1433 | case ZEBRA_REDISTRIBUTE_DELETE: |
| 1434 | zebra_redistribute_delete (command, client, length); |
| 1435 | break; |
| 1436 | case ZEBRA_REDISTRIBUTE_DEFAULT_ADD: |
| 1437 | zebra_redistribute_default_add (command, client, length); |
| 1438 | break; |
| 1439 | case ZEBRA_REDISTRIBUTE_DEFAULT_DELETE: |
| 1440 | zebra_redistribute_default_delete (command, client, length); |
| 1441 | break; |
| 1442 | case ZEBRA_IPV4_NEXTHOP_LOOKUP: |
| 1443 | zread_ipv4_nexthop_lookup (client, length); |
| 1444 | break; |
Everton Marques | 4e5275b | 2014-07-01 15:15:52 -0300 | [diff] [blame] | 1445 | case ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB: |
| 1446 | zread_ipv4_nexthop_lookup_mrib (client, length); |
| 1447 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1448 | #ifdef HAVE_IPV6 |
| 1449 | case ZEBRA_IPV6_NEXTHOP_LOOKUP: |
| 1450 | zread_ipv6_nexthop_lookup (client, length); |
| 1451 | break; |
| 1452 | #endif /* HAVE_IPV6 */ |
| 1453 | case ZEBRA_IPV4_IMPORT_LOOKUP: |
| 1454 | zread_ipv4_import_lookup (client, length); |
| 1455 | break; |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 1456 | case ZEBRA_HELLO: |
| 1457 | zread_hello (client); |
| 1458 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1459 | default: |
| 1460 | zlog_info ("Zebra received unknown command %d", command); |
| 1461 | break; |
| 1462 | } |
| 1463 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1464 | if (client->t_suicide) |
| 1465 | { |
| 1466 | /* No need to wait for thread callback, just kill immediately. */ |
| 1467 | zebra_client_close(client); |
| 1468 | return -1; |
| 1469 | } |
| 1470 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1471 | stream_reset (client->ibuf); |
| 1472 | zebra_event (ZEBRA_READ, sock, client); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1473 | return 0; |
| 1474 | } |
| 1475 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1476 | |
| 1477 | /* Accept code of zebra server socket. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1478 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1479 | zebra_accept (struct thread *thread) |
| 1480 | { |
| 1481 | int accept_sock; |
| 1482 | int client_sock; |
| 1483 | struct sockaddr_in client; |
| 1484 | socklen_t len; |
| 1485 | |
| 1486 | accept_sock = THREAD_FD (thread); |
| 1487 | |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1488 | /* Reregister myself. */ |
| 1489 | zebra_event (ZEBRA_SERV, accept_sock, NULL); |
| 1490 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1491 | len = sizeof (struct sockaddr_in); |
| 1492 | client_sock = accept (accept_sock, (struct sockaddr *) &client, &len); |
| 1493 | |
| 1494 | if (client_sock < 0) |
| 1495 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1496 | zlog_warn ("Can't accept zebra socket: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1497 | return -1; |
| 1498 | } |
| 1499 | |
paul | ccf3557 | 2003-03-01 11:42:20 +0000 | [diff] [blame] | 1500 | /* Make client socket non-blocking. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1501 | set_nonblocking(client_sock); |
paul | 865b852 | 2005-01-05 08:30:35 +0000 | [diff] [blame] | 1502 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1503 | /* Create new zebra client. */ |
| 1504 | zebra_client_create (client_sock); |
| 1505 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1506 | return 0; |
| 1507 | } |
| 1508 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1509 | #ifdef HAVE_TCP_ZEBRA |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1510 | /* Make zebra's server socket. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1511 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1512 | zebra_serv () |
| 1513 | { |
| 1514 | int ret; |
| 1515 | int accept_sock; |
| 1516 | struct sockaddr_in addr; |
| 1517 | |
| 1518 | accept_sock = socket (AF_INET, SOCK_STREAM, 0); |
| 1519 | |
| 1520 | if (accept_sock < 0) |
| 1521 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1522 | zlog_warn ("Can't create zserv stream socket: %s", |
| 1523 | safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1524 | zlog_warn ("zebra can't provice full functionality due to above error"); |
| 1525 | return; |
| 1526 | } |
| 1527 | |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 1528 | memset (&route_type_oaths, 0, sizeof (route_type_oaths)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1529 | memset (&addr, 0, sizeof (struct sockaddr_in)); |
| 1530 | addr.sin_family = AF_INET; |
| 1531 | addr.sin_port = htons (ZEBRA_PORT); |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 1532 | #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1533 | addr.sin_len = sizeof (struct sockaddr_in); |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 1534 | #endif /* HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1535 | addr.sin_addr.s_addr = htonl (INADDR_LOOPBACK); |
| 1536 | |
| 1537 | sockopt_reuseaddr (accept_sock); |
| 1538 | sockopt_reuseport (accept_sock); |
| 1539 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 1540 | if ( zserv_privs.change(ZPRIVS_RAISE) ) |
| 1541 | zlog (NULL, LOG_ERR, "Can't raise privileges"); |
| 1542 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1543 | ret = bind (accept_sock, (struct sockaddr *)&addr, |
| 1544 | sizeof (struct sockaddr_in)); |
| 1545 | if (ret < 0) |
| 1546 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1547 | zlog_warn ("Can't bind to stream socket: %s", |
| 1548 | safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1549 | zlog_warn ("zebra can't provice full functionality due to above error"); |
| 1550 | close (accept_sock); /* Avoid sd leak. */ |
| 1551 | return; |
| 1552 | } |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 1553 | |
| 1554 | if ( zserv_privs.change(ZPRIVS_LOWER) ) |
| 1555 | zlog (NULL, LOG_ERR, "Can't lower privileges"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1556 | |
| 1557 | ret = listen (accept_sock, 1); |
| 1558 | if (ret < 0) |
| 1559 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1560 | zlog_warn ("Can't listen to stream socket: %s", |
| 1561 | safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1562 | zlog_warn ("zebra can't provice full functionality due to above error"); |
| 1563 | close (accept_sock); /* Avoid sd leak. */ |
| 1564 | return; |
| 1565 | } |
| 1566 | |
| 1567 | zebra_event (ZEBRA_SERV, accept_sock, NULL); |
| 1568 | } |
David Lamparter | 4b6c332 | 2015-04-21 09:47:57 +0200 | [diff] [blame] | 1569 | #else /* HAVE_TCP_ZEBRA */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1570 | |
| 1571 | /* For sockaddr_un. */ |
| 1572 | #include <sys/un.h> |
| 1573 | |
| 1574 | /* zebra server UNIX domain socket. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1575 | static void |
hasso | fce954f | 2004-10-07 20:29:24 +0000 | [diff] [blame] | 1576 | zebra_serv_un (const char *path) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1577 | { |
| 1578 | int ret; |
| 1579 | int sock, len; |
| 1580 | struct sockaddr_un serv; |
| 1581 | mode_t old_mask; |
| 1582 | |
| 1583 | /* First of all, unlink existing socket */ |
| 1584 | unlink (path); |
| 1585 | |
| 1586 | /* Set umask */ |
| 1587 | old_mask = umask (0077); |
| 1588 | |
| 1589 | /* Make UNIX domain socket. */ |
| 1590 | sock = socket (AF_UNIX, SOCK_STREAM, 0); |
| 1591 | if (sock < 0) |
| 1592 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1593 | zlog_warn ("Can't create zserv unix socket: %s", |
| 1594 | safe_strerror (errno)); |
| 1595 | zlog_warn ("zebra can't provide full functionality due to above error"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1596 | return; |
| 1597 | } |
| 1598 | |
Vyacheslav Trushkin | 2ea1ab1 | 2011-12-11 18:48:47 +0400 | [diff] [blame] | 1599 | memset (&route_type_oaths, 0, sizeof (route_type_oaths)); |
| 1600 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1601 | /* Make server socket. */ |
| 1602 | memset (&serv, 0, sizeof (struct sockaddr_un)); |
| 1603 | serv.sun_family = AF_UNIX; |
| 1604 | strncpy (serv.sun_path, path, strlen (path)); |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 1605 | #ifdef HAVE_STRUCT_SOCKADDR_UN_SUN_LEN |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1606 | len = serv.sun_len = SUN_LEN(&serv); |
| 1607 | #else |
| 1608 | len = sizeof (serv.sun_family) + strlen (serv.sun_path); |
Paul Jakma | 6f0e3f6 | 2007-05-10 02:38:51 +0000 | [diff] [blame] | 1609 | #endif /* HAVE_STRUCT_SOCKADDR_UN_SUN_LEN */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1610 | |
| 1611 | ret = bind (sock, (struct sockaddr *) &serv, len); |
| 1612 | if (ret < 0) |
| 1613 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1614 | zlog_warn ("Can't bind to unix socket %s: %s", |
| 1615 | path, safe_strerror (errno)); |
| 1616 | zlog_warn ("zebra can't provide full functionality due to above error"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1617 | close (sock); |
| 1618 | return; |
| 1619 | } |
| 1620 | |
| 1621 | ret = listen (sock, 5); |
| 1622 | if (ret < 0) |
| 1623 | { |
paul | 3d1dc85 | 2005-04-05 00:45:23 +0000 | [diff] [blame] | 1624 | zlog_warn ("Can't listen to unix socket %s: %s", |
| 1625 | path, safe_strerror (errno)); |
| 1626 | zlog_warn ("zebra can't provide full functionality due to above error"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1627 | close (sock); |
| 1628 | return; |
| 1629 | } |
| 1630 | |
| 1631 | umask (old_mask); |
| 1632 | |
| 1633 | zebra_event (ZEBRA_SERV, sock, NULL); |
| 1634 | } |
David Lamparter | 4b6c332 | 2015-04-21 09:47:57 +0200 | [diff] [blame] | 1635 | #endif /* HAVE_TCP_ZEBRA */ |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1636 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1637 | |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1638 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1639 | zebra_event (enum event event, int sock, struct zserv *client) |
| 1640 | { |
| 1641 | switch (event) |
| 1642 | { |
| 1643 | case ZEBRA_SERV: |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1644 | thread_add_read (zebrad.master, zebra_accept, client, sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1645 | break; |
| 1646 | case ZEBRA_READ: |
| 1647 | client->t_read = |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1648 | thread_add_read (zebrad.master, zebra_client_read, client, sock); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1649 | break; |
| 1650 | case ZEBRA_WRITE: |
| 1651 | /**/ |
| 1652 | break; |
| 1653 | } |
| 1654 | } |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1655 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1656 | /* Display default rtm_table for all clients. */ |
| 1657 | DEFUN (show_table, |
| 1658 | show_table_cmd, |
| 1659 | "show table", |
| 1660 | SHOW_STR |
| 1661 | "default routing table to use for all clients\n") |
| 1662 | { |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1663 | vty_out (vty, "table %d%s", zebrad.rtm_table_default, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1664 | VTY_NEWLINE); |
| 1665 | return CMD_SUCCESS; |
| 1666 | } |
| 1667 | |
| 1668 | DEFUN (config_table, |
| 1669 | config_table_cmd, |
| 1670 | "table TABLENO", |
| 1671 | "Configure target kernel routing table\n" |
| 1672 | "TABLE integer\n") |
| 1673 | { |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1674 | zebrad.rtm_table_default = strtol (argv[0], (char**)0, 10); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1675 | return CMD_SUCCESS; |
| 1676 | } |
| 1677 | |
hasso | 647e4f1 | 2003-05-25 11:43:52 +0000 | [diff] [blame] | 1678 | DEFUN (ip_forwarding, |
| 1679 | ip_forwarding_cmd, |
| 1680 | "ip forwarding", |
| 1681 | IP_STR |
| 1682 | "Turn on IP forwarding") |
| 1683 | { |
| 1684 | int ret; |
| 1685 | |
| 1686 | ret = ipforward (); |
hasso | b71f00f | 2004-10-13 12:20:35 +0000 | [diff] [blame] | 1687 | if (ret == 0) |
| 1688 | ret = ipforward_on (); |
hasso | 647e4f1 | 2003-05-25 11:43:52 +0000 | [diff] [blame] | 1689 | |
hasso | 647e4f1 | 2003-05-25 11:43:52 +0000 | [diff] [blame] | 1690 | if (ret == 0) |
| 1691 | { |
| 1692 | vty_out (vty, "Can't turn on IP forwarding%s", VTY_NEWLINE); |
| 1693 | return CMD_WARNING; |
| 1694 | } |
| 1695 | |
| 1696 | return CMD_SUCCESS; |
| 1697 | } |
| 1698 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1699 | DEFUN (no_ip_forwarding, |
| 1700 | no_ip_forwarding_cmd, |
| 1701 | "no ip forwarding", |
| 1702 | NO_STR |
| 1703 | IP_STR |
| 1704 | "Turn off IP forwarding") |
| 1705 | { |
| 1706 | int ret; |
| 1707 | |
| 1708 | ret = ipforward (); |
hasso | b71f00f | 2004-10-13 12:20:35 +0000 | [diff] [blame] | 1709 | if (ret != 0) |
| 1710 | ret = ipforward_off (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1711 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1712 | if (ret != 0) |
| 1713 | { |
| 1714 | vty_out (vty, "Can't turn off IP forwarding%s", VTY_NEWLINE); |
| 1715 | return CMD_WARNING; |
| 1716 | } |
| 1717 | |
| 1718 | return CMD_SUCCESS; |
| 1719 | } |
| 1720 | |
| 1721 | /* This command is for debugging purpose. */ |
| 1722 | DEFUN (show_zebra_client, |
| 1723 | show_zebra_client_cmd, |
| 1724 | "show zebra client", |
| 1725 | SHOW_STR |
| 1726 | "Zebra information" |
| 1727 | "Client information") |
| 1728 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1729 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1730 | struct zserv *client; |
| 1731 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1732 | for (ALL_LIST_ELEMENTS_RO (zebrad.client_list, node, client)) |
| 1733 | vty_out (vty, "Client fd %d%s", client->sock, VTY_NEWLINE); |
| 1734 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1735 | return CMD_SUCCESS; |
| 1736 | } |
| 1737 | |
| 1738 | /* Table configuration write function. */ |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 1739 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1740 | config_write_table (struct vty *vty) |
| 1741 | { |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1742 | if (zebrad.rtm_table_default) |
| 1743 | vty_out (vty, "table %d%s", zebrad.rtm_table_default, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1744 | VTY_NEWLINE); |
| 1745 | return 0; |
| 1746 | } |
| 1747 | |
| 1748 | /* table node for routing tables. */ |
Stephen Hemminger | 7fc626d | 2008-12-01 11:10:34 -0800 | [diff] [blame] | 1749 | static struct cmd_node table_node = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1750 | { |
| 1751 | TABLE_NODE, |
| 1752 | "", /* This node has no interface. */ |
| 1753 | 1 |
| 1754 | }; |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1755 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1756 | /* Only display ip forwarding is enabled or not. */ |
| 1757 | DEFUN (show_ip_forwarding, |
| 1758 | show_ip_forwarding_cmd, |
| 1759 | "show ip forwarding", |
| 1760 | SHOW_STR |
| 1761 | IP_STR |
| 1762 | "IP forwarding status\n") |
| 1763 | { |
| 1764 | int ret; |
| 1765 | |
| 1766 | ret = ipforward (); |
| 1767 | |
| 1768 | if (ret == 0) |
| 1769 | vty_out (vty, "IP forwarding is off%s", VTY_NEWLINE); |
| 1770 | else |
| 1771 | vty_out (vty, "IP forwarding is on%s", VTY_NEWLINE); |
| 1772 | return CMD_SUCCESS; |
| 1773 | } |
| 1774 | |
| 1775 | #ifdef HAVE_IPV6 |
| 1776 | /* Only display ipv6 forwarding is enabled or not. */ |
| 1777 | DEFUN (show_ipv6_forwarding, |
| 1778 | show_ipv6_forwarding_cmd, |
| 1779 | "show ipv6 forwarding", |
| 1780 | SHOW_STR |
| 1781 | "IPv6 information\n" |
| 1782 | "Forwarding status\n") |
| 1783 | { |
| 1784 | int ret; |
| 1785 | |
| 1786 | ret = ipforward_ipv6 (); |
| 1787 | |
| 1788 | switch (ret) |
| 1789 | { |
| 1790 | case -1: |
| 1791 | vty_out (vty, "ipv6 forwarding is unknown%s", VTY_NEWLINE); |
| 1792 | break; |
| 1793 | case 0: |
| 1794 | vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE); |
| 1795 | break; |
| 1796 | case 1: |
| 1797 | vty_out (vty, "ipv6 forwarding is %s%s", "on", VTY_NEWLINE); |
| 1798 | break; |
| 1799 | default: |
| 1800 | vty_out (vty, "ipv6 forwarding is %s%s", "off", VTY_NEWLINE); |
| 1801 | break; |
| 1802 | } |
| 1803 | return CMD_SUCCESS; |
| 1804 | } |
| 1805 | |
hasso | 5590672 | 2004-02-11 22:42:16 +0000 | [diff] [blame] | 1806 | DEFUN (ipv6_forwarding, |
| 1807 | ipv6_forwarding_cmd, |
| 1808 | "ipv6 forwarding", |
| 1809 | IPV6_STR |
| 1810 | "Turn on IPv6 forwarding") |
| 1811 | { |
| 1812 | int ret; |
| 1813 | |
hasso | 41d3fc9 | 2004-04-06 11:59:00 +0000 | [diff] [blame] | 1814 | ret = ipforward_ipv6 (); |
hasso | b71f00f | 2004-10-13 12:20:35 +0000 | [diff] [blame] | 1815 | if (ret == 0) |
| 1816 | ret = ipforward_ipv6_on (); |
hasso | 41d3fc9 | 2004-04-06 11:59:00 +0000 | [diff] [blame] | 1817 | |
hasso | 41d3fc9 | 2004-04-06 11:59:00 +0000 | [diff] [blame] | 1818 | if (ret == 0) |
| 1819 | { |
hasso | 5590672 | 2004-02-11 22:42:16 +0000 | [diff] [blame] | 1820 | vty_out (vty, "Can't turn on IPv6 forwarding%s", VTY_NEWLINE); |
| 1821 | return CMD_WARNING; |
| 1822 | } |
| 1823 | |
| 1824 | return CMD_SUCCESS; |
| 1825 | } |
| 1826 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1827 | DEFUN (no_ipv6_forwarding, |
| 1828 | no_ipv6_forwarding_cmd, |
| 1829 | "no ipv6 forwarding", |
| 1830 | NO_STR |
hasso | 5590672 | 2004-02-11 22:42:16 +0000 | [diff] [blame] | 1831 | IPV6_STR |
| 1832 | "Turn off IPv6 forwarding") |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1833 | { |
| 1834 | int ret; |
| 1835 | |
hasso | 41d3fc9 | 2004-04-06 11:59:00 +0000 | [diff] [blame] | 1836 | ret = ipforward_ipv6 (); |
hasso | b71f00f | 2004-10-13 12:20:35 +0000 | [diff] [blame] | 1837 | if (ret != 0) |
| 1838 | ret = ipforward_ipv6_off (); |
hasso | 41d3fc9 | 2004-04-06 11:59:00 +0000 | [diff] [blame] | 1839 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1840 | if (ret != 0) |
| 1841 | { |
| 1842 | vty_out (vty, "Can't turn off IPv6 forwarding%s", VTY_NEWLINE); |
| 1843 | return CMD_WARNING; |
| 1844 | } |
| 1845 | |
| 1846 | return CMD_SUCCESS; |
| 1847 | } |
| 1848 | |
| 1849 | #endif /* HAVE_IPV6 */ |
| 1850 | |
| 1851 | /* IPForwarding configuration write function. */ |
ajs | 719e974 | 2005-02-28 20:52:15 +0000 | [diff] [blame] | 1852 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1853 | config_write_forwarding (struct vty *vty) |
| 1854 | { |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1855 | /* FIXME: Find better place for that. */ |
| 1856 | router_id_write (vty); |
| 1857 | |
paul | 3e0b3a5 | 2004-08-23 18:58:32 +0000 | [diff] [blame] | 1858 | if (ipforward ()) |
| 1859 | vty_out (vty, "ip forwarding%s", VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1860 | #ifdef HAVE_IPV6 |
paul | 3e0b3a5 | 2004-08-23 18:58:32 +0000 | [diff] [blame] | 1861 | if (ipforward_ipv6 ()) |
| 1862 | vty_out (vty, "ipv6 forwarding%s", VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1863 | #endif /* HAVE_IPV6 */ |
| 1864 | vty_out (vty, "!%s", VTY_NEWLINE); |
| 1865 | return 0; |
| 1866 | } |
| 1867 | |
| 1868 | /* table node for routing tables. */ |
Stephen Hemminger | 7fc626d | 2008-12-01 11:10:34 -0800 | [diff] [blame] | 1869 | static struct cmd_node forwarding_node = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1870 | { |
| 1871 | FORWARDING_NODE, |
| 1872 | "", /* This node has no interface. */ |
| 1873 | 1 |
| 1874 | }; |
| 1875 | |
David Lamparter | 6b0655a | 2014-06-04 06:53:35 +0200 | [diff] [blame] | 1876 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1877 | /* Initialisation of zebra and installation of commands. */ |
| 1878 | void |
paul | a1ac18c | 2005-06-28 17:17:12 +0000 | [diff] [blame] | 1879 | zebra_init (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1880 | { |
| 1881 | /* Client list init. */ |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 1882 | zebrad.client_list = list_new (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1883 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1884 | /* Install configuration write function. */ |
| 1885 | install_node (&table_node, config_write_table); |
| 1886 | install_node (&forwarding_node, config_write_forwarding); |
| 1887 | |
| 1888 | install_element (VIEW_NODE, &show_ip_forwarding_cmd); |
| 1889 | install_element (ENABLE_NODE, &show_ip_forwarding_cmd); |
hasso | 647e4f1 | 2003-05-25 11:43:52 +0000 | [diff] [blame] | 1890 | install_element (CONFIG_NODE, &ip_forwarding_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1891 | install_element (CONFIG_NODE, &no_ip_forwarding_cmd); |
| 1892 | install_element (ENABLE_NODE, &show_zebra_client_cmd); |
| 1893 | |
| 1894 | #ifdef HAVE_NETLINK |
| 1895 | install_element (VIEW_NODE, &show_table_cmd); |
| 1896 | install_element (ENABLE_NODE, &show_table_cmd); |
| 1897 | install_element (CONFIG_NODE, &config_table_cmd); |
| 1898 | #endif /* HAVE_NETLINK */ |
| 1899 | |
| 1900 | #ifdef HAVE_IPV6 |
| 1901 | install_element (VIEW_NODE, &show_ipv6_forwarding_cmd); |
| 1902 | install_element (ENABLE_NODE, &show_ipv6_forwarding_cmd); |
hasso | 5590672 | 2004-02-11 22:42:16 +0000 | [diff] [blame] | 1903 | install_element (CONFIG_NODE, &ipv6_forwarding_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1904 | install_element (CONFIG_NODE, &no_ipv6_forwarding_cmd); |
| 1905 | #endif /* HAVE_IPV6 */ |
Paul Jakma | 7514fb7 | 2007-05-02 16:05:35 +0000 | [diff] [blame] | 1906 | |
| 1907 | /* Route-map */ |
| 1908 | zebra_route_map_init (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1909 | } |
Denis Ovsienko | 97be79f | 2009-07-24 20:45:31 +0400 | [diff] [blame] | 1910 | |
| 1911 | /* Make zebra server socket, wiping any existing one (see bug #403). */ |
| 1912 | void |
Vyacheslav Trushkin | b511468 | 2011-11-25 18:51:48 +0400 | [diff] [blame] | 1913 | zebra_zserv_socket_init (char *path) |
Denis Ovsienko | 97be79f | 2009-07-24 20:45:31 +0400 | [diff] [blame] | 1914 | { |
| 1915 | #ifdef HAVE_TCP_ZEBRA |
| 1916 | zebra_serv (); |
| 1917 | #else |
Vyacheslav Trushkin | b511468 | 2011-11-25 18:51:48 +0400 | [diff] [blame] | 1918 | zebra_serv_un (path ? path : ZEBRA_SERV_PATH); |
Denis Ovsienko | 97be79f | 2009-07-24 20:45:31 +0400 | [diff] [blame] | 1919 | #endif /* HAVE_TCP_ZEBRA */ |
| 1920 | } |