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