]> git.proxmox.com Git - mirror_frr.git/blob - lib/zclient.h
Merge pull request #2939 from netravnen/feature/git-issue-teplate
[mirror_frr.git] / lib / zclient.h
1 /* Zebra's client header.
2 * Copyright (C) 1999 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
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any 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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _ZEBRA_ZCLIENT_H
22 #define _ZEBRA_ZCLIENT_H
23
24 /* For struct zapi_route. */
25 #include "prefix.h"
26
27 /* For struct interface and struct connected. */
28 #include "if.h"
29
30 /* For vrf_bitmap_t. */
31 #include "vrf.h"
32
33 /* For union g_addr */
34 #include "nexthop.h"
35
36 /* For union pw_protocol_fields */
37 #include "pw.h"
38
39 /* For input/output buffer to zebra. */
40 #define ZEBRA_MAX_PACKET_SIZ 16384
41
42 /* Zebra header size. */
43 #define ZEBRA_HEADER_SIZE 10
44
45 /* special socket path name to use TCP
46 * @ is used as first character because that's abstract socket names on Linux
47 */
48 #define ZAPI_TCP_PATHNAME "@tcp"
49
50 /* IPset size name stands for the name of the ipset entry
51 * that can be created by using some zapi interfaces
52 */
53 #define ZEBRA_IPSET_NAME_SIZE 32
54
55 /* IPTable action is defined by two values: either
56 * forward or drop
57 */
58 #define ZEBRA_IPTABLES_FORWARD 0
59 #define ZEBRA_IPTABLES_DROP 1
60
61 extern struct sockaddr_storage zclient_addr;
62 extern socklen_t zclient_addr_len;
63
64 /* Zebra message types. */
65 typedef enum {
66 ZEBRA_INTERFACE_ADD,
67 ZEBRA_INTERFACE_DELETE,
68 ZEBRA_INTERFACE_ADDRESS_ADD,
69 ZEBRA_INTERFACE_ADDRESS_DELETE,
70 ZEBRA_INTERFACE_UP,
71 ZEBRA_INTERFACE_DOWN,
72 ZEBRA_INTERFACE_SET_MASTER,
73 ZEBRA_ROUTE_ADD,
74 ZEBRA_ROUTE_DELETE,
75 ZEBRA_ROUTE_NOTIFY_OWNER,
76 ZEBRA_REDISTRIBUTE_ADD,
77 ZEBRA_REDISTRIBUTE_DELETE,
78 ZEBRA_REDISTRIBUTE_DEFAULT_ADD,
79 ZEBRA_REDISTRIBUTE_DEFAULT_DELETE,
80 ZEBRA_ROUTER_ID_ADD,
81 ZEBRA_ROUTER_ID_DELETE,
82 ZEBRA_ROUTER_ID_UPDATE,
83 ZEBRA_HELLO,
84 ZEBRA_CAPABILITIES,
85 ZEBRA_NEXTHOP_REGISTER,
86 ZEBRA_NEXTHOP_UNREGISTER,
87 ZEBRA_NEXTHOP_UPDATE,
88 ZEBRA_INTERFACE_NBR_ADDRESS_ADD,
89 ZEBRA_INTERFACE_NBR_ADDRESS_DELETE,
90 ZEBRA_INTERFACE_BFD_DEST_UPDATE,
91 ZEBRA_IMPORT_ROUTE_REGISTER,
92 ZEBRA_IMPORT_ROUTE_UNREGISTER,
93 ZEBRA_IMPORT_CHECK_UPDATE,
94 ZEBRA_BFD_DEST_REGISTER,
95 ZEBRA_BFD_DEST_DEREGISTER,
96 ZEBRA_BFD_DEST_UPDATE,
97 ZEBRA_BFD_DEST_REPLAY,
98 ZEBRA_REDISTRIBUTE_ROUTE_ADD,
99 ZEBRA_REDISTRIBUTE_ROUTE_DEL,
100 ZEBRA_VRF_UNREGISTER,
101 ZEBRA_VRF_ADD,
102 ZEBRA_VRF_DELETE,
103 ZEBRA_VRF_LABEL,
104 ZEBRA_INTERFACE_VRF_UPDATE,
105 ZEBRA_BFD_CLIENT_REGISTER,
106 ZEBRA_BFD_CLIENT_DEREGISTER,
107 ZEBRA_INTERFACE_ENABLE_RADV,
108 ZEBRA_INTERFACE_DISABLE_RADV,
109 ZEBRA_IPV4_NEXTHOP_LOOKUP_MRIB,
110 ZEBRA_INTERFACE_LINK_PARAMS,
111 ZEBRA_MPLS_LABELS_ADD,
112 ZEBRA_MPLS_LABELS_DELETE,
113 ZEBRA_IPMR_ROUTE_STATS,
114 ZEBRA_LABEL_MANAGER_CONNECT,
115 ZEBRA_GET_LABEL_CHUNK,
116 ZEBRA_RELEASE_LABEL_CHUNK,
117 ZEBRA_FEC_REGISTER,
118 ZEBRA_FEC_UNREGISTER,
119 ZEBRA_FEC_UPDATE,
120 ZEBRA_ADVERTISE_DEFAULT_GW,
121 ZEBRA_ADVERTISE_SUBNET,
122 ZEBRA_ADVERTISE_ALL_VNI,
123 ZEBRA_LOCAL_ES_ADD,
124 ZEBRA_LOCAL_ES_DEL,
125 ZEBRA_VNI_ADD,
126 ZEBRA_VNI_DEL,
127 ZEBRA_L3VNI_ADD,
128 ZEBRA_L3VNI_DEL,
129 ZEBRA_REMOTE_VTEP_ADD,
130 ZEBRA_REMOTE_VTEP_DEL,
131 ZEBRA_MACIP_ADD,
132 ZEBRA_MACIP_DEL,
133 ZEBRA_IP_PREFIX_ROUTE_ADD,
134 ZEBRA_IP_PREFIX_ROUTE_DEL,
135 ZEBRA_REMOTE_MACIP_ADD,
136 ZEBRA_REMOTE_MACIP_DEL,
137 ZEBRA_PW_ADD,
138 ZEBRA_PW_DELETE,
139 ZEBRA_PW_SET,
140 ZEBRA_PW_UNSET,
141 ZEBRA_PW_STATUS_UPDATE,
142 ZEBRA_RULE_ADD,
143 ZEBRA_RULE_DELETE,
144 ZEBRA_RULE_NOTIFY_OWNER,
145 ZEBRA_TABLE_MANAGER_CONNECT,
146 ZEBRA_GET_TABLE_CHUNK,
147 ZEBRA_RELEASE_TABLE_CHUNK,
148 ZEBRA_IPSET_CREATE,
149 ZEBRA_IPSET_DESTROY,
150 ZEBRA_IPSET_ENTRY_ADD,
151 ZEBRA_IPSET_ENTRY_DELETE,
152 ZEBRA_IPSET_NOTIFY_OWNER,
153 ZEBRA_IPSET_ENTRY_NOTIFY_OWNER,
154 ZEBRA_IPTABLE_ADD,
155 ZEBRA_IPTABLE_DELETE,
156 ZEBRA_IPTABLE_NOTIFY_OWNER,
157 } zebra_message_types_t;
158
159 struct redist_proto {
160 uint8_t enabled;
161 struct list *instances;
162 };
163
164 struct zclient_capabilities {
165 uint32_t ecmp;
166 bool mpls_enabled;
167 };
168
169 /* Structure for the zebra client. */
170 struct zclient {
171 /* The thread master we schedule ourselves on */
172 struct thread_master *master;
173
174 /* Priviledges to change socket values */
175 struct zebra_privs_t *privs;
176
177 /* Do we care about failure events for route install? */
178 bool receive_notify;
179
180 /* Socket to zebra daemon. */
181 int sock;
182
183 /* Connection failure count. */
184 int fail;
185
186 /* Input buffer for zebra message. */
187 struct stream *ibuf;
188
189 /* Output buffer for zebra message. */
190 struct stream *obuf;
191
192 /* Buffer of data waiting to be written to zebra. */
193 struct buffer *wb;
194
195 /* Read and connect thread. */
196 struct thread *t_read;
197 struct thread *t_connect;
198
199 /* Thread to write buffered data to zebra. */
200 struct thread *t_write;
201
202 /* Redistribute information. */
203 uint8_t redist_default; /* clients protocol */
204 unsigned short instance;
205 struct redist_proto mi_redist[AFI_MAX][ZEBRA_ROUTE_MAX];
206 vrf_bitmap_t redist[AFI_MAX][ZEBRA_ROUTE_MAX];
207
208 /* Redistribute defauilt. */
209 vrf_bitmap_t default_information;
210
211 /* Pointer to the callback functions. */
212 void (*zebra_connected)(struct zclient *);
213 void (*zebra_capabilities)(struct zclient_capabilities *cap);
214 int (*router_id_update)(int, struct zclient *, uint16_t, vrf_id_t);
215 int (*interface_add)(int, struct zclient *, uint16_t, vrf_id_t);
216 int (*interface_delete)(int, struct zclient *, uint16_t, vrf_id_t);
217 int (*interface_up)(int, struct zclient *, uint16_t, vrf_id_t);
218 int (*interface_down)(int, struct zclient *, uint16_t, vrf_id_t);
219 int (*interface_address_add)(int, struct zclient *, uint16_t, vrf_id_t);
220 int (*interface_address_delete)(int, struct zclient *, uint16_t,
221 vrf_id_t);
222 int (*interface_link_params)(int, struct zclient *, uint16_t);
223 int (*interface_bfd_dest_update)(int, struct zclient *, uint16_t,
224 vrf_id_t);
225 int (*interface_nbr_address_add)(int, struct zclient *, uint16_t,
226 vrf_id_t);
227 int (*interface_nbr_address_delete)(int, struct zclient *, uint16_t,
228 vrf_id_t);
229 int (*interface_vrf_update)(int, struct zclient *, uint16_t, vrf_id_t);
230 int (*nexthop_update)(int, struct zclient *, uint16_t, vrf_id_t);
231 int (*import_check_update)(int, struct zclient *, uint16_t, vrf_id_t);
232 int (*bfd_dest_replay)(int, struct zclient *, uint16_t, vrf_id_t);
233 int (*redistribute_route_add)(int, struct zclient *, uint16_t,
234 vrf_id_t);
235 int (*redistribute_route_del)(int, struct zclient *, uint16_t,
236 vrf_id_t);
237 int (*fec_update)(int, struct zclient *, uint16_t);
238 int (*local_es_add)(int command, struct zclient *zclient,
239 uint16_t length, vrf_id_t vrf_id);
240 int (*local_es_del)(int command, struct zclient *zclient,
241 uint16_t length, vrf_id_t vrf_id);
242 int (*local_vni_add)(int, struct zclient *, uint16_t, vrf_id_t);
243 int (*local_vni_del)(int, struct zclient *, uint16_t, vrf_id_t);
244 int (*local_l3vni_add)(int, struct zclient *, uint16_t, vrf_id_t);
245 int (*local_l3vni_del)(int, struct zclient *, uint16_t, vrf_id_t);
246 void (*local_ip_prefix_add)(int, struct zclient *, uint16_t, vrf_id_t);
247 void (*local_ip_prefix_del)(int, struct zclient *, uint16_t, vrf_id_t);
248 int (*local_macip_add)(int, struct zclient *, uint16_t, vrf_id_t);
249 int (*local_macip_del)(int, struct zclient *, uint16_t, vrf_id_t);
250 int (*pw_status_update)(int, struct zclient *, uint16_t, vrf_id_t);
251 int (*route_notify_owner)(int command, struct zclient *zclient,
252 uint16_t length, vrf_id_t vrf_id);
253 int (*rule_notify_owner)(int command, struct zclient *zclient,
254 uint16_t length, vrf_id_t vrf_id);
255 void (*label_chunk)(int command, struct zclient *zclient,
256 uint16_t length, vrf_id_t vrf_id);
257 int (*ipset_notify_owner)(int command, struct zclient *zclient,
258 uint16_t length, vrf_id_t vrf_id);
259 int (*ipset_entry_notify_owner)(int command,
260 struct zclient *zclient,
261 uint16_t length,
262 vrf_id_t vrf_id);
263 int (*iptable_notify_owner)(int command,
264 struct zclient *zclient,
265 uint16_t length,
266 vrf_id_t vrf_id);
267 };
268
269 /* Zebra API message flag. */
270 #define ZAPI_MESSAGE_NEXTHOP 0x01
271 #define ZAPI_MESSAGE_DISTANCE 0x02
272 #define ZAPI_MESSAGE_METRIC 0x04
273 #define ZAPI_MESSAGE_TAG 0x08
274 #define ZAPI_MESSAGE_MTU 0x10
275 #define ZAPI_MESSAGE_SRCPFX 0x20
276 #define ZAPI_MESSAGE_LABEL 0x40
277 /*
278 * This should only be used by a DAEMON that needs to communicate
279 * the table being used is not in the VRF. You must pass the
280 * default vrf, else this will be ignored.
281 */
282 #define ZAPI_MESSAGE_TABLEID 0x80
283
284 #define ZSERV_VERSION 6
285 /* Zserv protocol message header */
286 struct zmsghdr {
287 uint16_t length;
288 /* Always set to 255 in new zserv */
289 uint8_t marker;
290 uint8_t version;
291 vrf_id_t vrf_id;
292 uint16_t command;
293 };
294
295 struct zapi_nexthop {
296 enum nexthop_types_t type;
297 vrf_id_t vrf_id;
298 ifindex_t ifindex;
299 union {
300 union g_addr gate;
301 enum blackhole_type bh_type;
302 };
303
304 /* MPLS labels for BGP-LU or Segment Routing */
305 uint8_t label_num;
306 mpls_label_t labels[MPLS_MAX_LABELS];
307
308 struct ethaddr rmac;
309 };
310
311 /*
312 * Some of these data structures do not map easily to
313 * a actual data structure size giving different compilers
314 * and systems. For those data structures we need
315 * to use the smallest available stream_getX/putX functions
316 * to encode/decode.
317 */
318 struct zapi_route {
319 uint8_t type;
320 unsigned short instance;
321
322 uint32_t flags;
323
324 uint8_t message;
325
326 /*
327 * This is an enum but we are going to treat it as a uint8_t
328 * for purpose of encoding/decoding
329 */
330 safi_t safi;
331
332 struct prefix prefix;
333 struct prefix_ipv6 src_prefix;
334
335 uint16_t nexthop_num;
336 struct zapi_nexthop nexthops[MULTIPATH_NUM];
337
338 uint8_t distance;
339
340 uint32_t metric;
341
342 route_tag_t tag;
343
344 uint32_t mtu;
345
346 vrf_id_t vrf_id;
347
348 uint32_t tableid;
349 };
350
351 struct zapi_pw {
352 char ifname[IF_NAMESIZE];
353 ifindex_t ifindex;
354 int type;
355 int af;
356 union g_addr nexthop;
357 uint32_t local_label;
358 uint32_t remote_label;
359 uint8_t flags;
360 union pw_protocol_fields data;
361 uint8_t protocol;
362 };
363
364 struct zapi_pw_status {
365 char ifname[IF_NAMESIZE];
366 ifindex_t ifindex;
367 uint32_t status;
368 };
369
370 enum zapi_route_notify_owner {
371 ZAPI_ROUTE_FAIL_INSTALL,
372 ZAPI_ROUTE_BETTER_ADMIN_WON,
373 ZAPI_ROUTE_INSTALLED,
374 ZAPI_ROUTE_REMOVED,
375 ZAPI_ROUTE_REMOVE_FAIL,
376 };
377
378 enum zapi_rule_notify_owner {
379 ZAPI_RULE_FAIL_INSTALL,
380 ZAPI_RULE_INSTALLED,
381 ZAPI_RULE_REMOVED,
382 ZAPI_RULE_FAIL_REMOVE,
383 };
384
385 enum ipset_type {
386 IPSET_NET_NET = 1,
387 IPSET_NET_PORT_NET,
388 IPSET_NET_PORT,
389 IPSET_NET
390 };
391
392 enum zapi_ipset_notify_owner {
393 ZAPI_IPSET_FAIL_INSTALL,
394 ZAPI_IPSET_INSTALLED,
395 ZAPI_IPSET_REMOVED,
396 ZAPI_IPSET_FAIL_REMOVE,
397 };
398
399 enum zapi_ipset_entry_notify_owner {
400 ZAPI_IPSET_ENTRY_FAIL_INSTALL,
401 ZAPI_IPSET_ENTRY_INSTALLED,
402 ZAPI_IPSET_ENTRY_REMOVED,
403 ZAPI_IPSET_ENTRY_FAIL_REMOVE,
404 };
405
406 enum zapi_iptable_notify_owner {
407 ZAPI_IPTABLE_FAIL_INSTALL,
408 ZAPI_IPTABLE_INSTALLED,
409 ZAPI_IPTABLE_REMOVED,
410 ZAPI_IPTABLE_FAIL_REMOVE,
411 };
412
413 /* Zebra MAC types */
414 #define ZEBRA_MACIP_TYPE_STICKY 0x01 /* Sticky MAC*/
415 #define ZEBRA_MACIP_TYPE_GW 0x02 /* gateway (SVI) mac*/
416 #define ZEBRA_MACIP_TYPE_ROUTER_FLAG 0x04 /* Router Flag - proxy NA */
417 #define ZEBRA_MACIP_TYPE_OVERRIDE_FLAG 0x08 /* Override Flag */
418
419 struct zclient_options {
420 bool receive_notify;
421 };
422
423 /* Prototypes of zebra client service functions. */
424 extern struct zclient *zclient_new(struct thread_master *);
425
426 /* clang-format off */
427 #if CONFDATE > 20181101
428 CPP_NOTICE("zclient_new_notify can take over or zclient_new now");
429 #endif
430 /* clang-format on */
431
432 extern struct zclient_options zclient_options_default;
433
434 extern struct zclient *zclient_new_notify(struct thread_master *m,
435 struct zclient_options *opt);
436
437 #define zclient_new(A) \
438 zclient_new_notify((A), &zclient_options_default); \
439 CPP_WARN("Please transition to using zclient_new_notify");
440
441 extern void zclient_init(struct zclient *, int, unsigned short,
442 struct zebra_privs_t *privs);
443 extern int zclient_start(struct zclient *);
444 extern void zclient_stop(struct zclient *);
445 extern void zclient_reset(struct zclient *);
446 extern void zclient_free(struct zclient *);
447
448 extern int zclient_socket_connect(struct zclient *);
449
450 extern unsigned short *redist_check_instance(struct redist_proto *,
451 unsigned short);
452 extern void redist_add_instance(struct redist_proto *, unsigned short);
453 extern void redist_del_instance(struct redist_proto *, unsigned short);
454
455 /*
456 * Send to zebra that the specified vrf is using label to resolve
457 * itself for L3VPN's. Repeated calls of this function with
458 * different labels will cause an effective update of the
459 * label for lookup. If you pass in MPLS_LABEL_NONE
460 * we will cause a delete action and remove this label pop
461 * operation.
462 *
463 * The underlying AF_MPLS doesn't care about afi's
464 * but we can make the zebra_vrf keep track of what
465 * we have installed and play some special games
466 * to get them both installed.
467 */
468 extern void zclient_send_vrf_label(struct zclient *zclient, vrf_id_t vrf_id,
469 afi_t afi, mpls_label_t label,
470 enum lsp_types_t ltype);
471
472 extern void zclient_send_reg_requests(struct zclient *, vrf_id_t);
473 extern void zclient_send_dereg_requests(struct zclient *, vrf_id_t);
474
475 extern void zclient_send_interface_radv_req(struct zclient *zclient,
476 vrf_id_t vrf_id,
477 struct interface *ifp, int enable,
478 int ra_interval);
479
480 /* Send redistribute command to zebra daemon. Do not update zclient state. */
481 extern int zebra_redistribute_send(int command, struct zclient *, afi_t,
482 int type, unsigned short instance,
483 vrf_id_t vrf_id);
484
485 /* If state has changed, update state and call zebra_redistribute_send. */
486 extern void zclient_redistribute(int command, struct zclient *, afi_t, int type,
487 unsigned short instance, vrf_id_t vrf_id);
488
489 /* If state has changed, update state and send the command to zebra. */
490 extern void zclient_redistribute_default(int command, struct zclient *,
491 vrf_id_t vrf_id);
492
493 /* Send the message in zclient->obuf to the zebra daemon (or enqueue it).
494 Returns 0 for success or -1 on an I/O error. */
495 extern int zclient_send_message(struct zclient *);
496
497 /* create header for command, length to be filled in by user later */
498 extern void zclient_create_header(struct stream *, uint16_t, vrf_id_t);
499 /*
500 * Read sizeof(struct zmsghdr) bytes from the provided socket and parse the
501 * received data into the specified fields. If this is successful, read the
502 * rest of the packet into the provided stream.
503 *
504 * s
505 * The stream to read into
506 *
507 * sock
508 * The socket to read from
509 *
510 * size
511 * Parsed message size will be placed in the pointed-at integer
512 *
513 * marker
514 * Parsed marker will be placed in the pointed-at byte
515 *
516 * version
517 * Parsed version will be placed in the pointed-at byte
518 *
519 * vrf_id
520 * Parsed VRF ID will be placed in the pointed-at vrf_id_t
521 *
522 * cmd
523 * Parsed command number will be placed in the pointed-at integer
524 *
525 * Returns:
526 * -1 if:
527 * - insufficient data for header was read
528 * - a version mismatch was detected
529 * - a marker mismatch was detected
530 * - header size field specified more data than could be read
531 */
532 extern int zclient_read_header(struct stream *s, int sock, uint16_t *size,
533 uint8_t *marker, uint8_t *version,
534 vrf_id_t *vrf_id, uint16_t *cmd);
535 /*
536 * Parse header from ZAPI message stream into struct zmsghdr.
537 * This function assumes the stream getp points at the first byte of the header.
538 * If the function is successful then the stream getp will point to the byte
539 * immediately after the last byte of the header.
540 *
541 * zmsg
542 * The stream containing the header
543 *
544 * hdr
545 * The header struct to parse into.
546 *
547 * Returns:
548 * true if parsing succeeded, false otherwise
549 */
550 extern bool zapi_parse_header(struct stream *zmsg, struct zmsghdr *hdr);
551
552 extern void zclient_interface_set_master(struct zclient *client,
553 struct interface *master,
554 struct interface *slave);
555 extern struct interface *zebra_interface_add_read(struct stream *, vrf_id_t);
556 extern struct interface *zebra_interface_state_read(struct stream *s, vrf_id_t);
557 extern struct connected *zebra_interface_address_read(int, struct stream *,
558 vrf_id_t);
559 extern struct nbr_connected *
560 zebra_interface_nbr_address_read(int, struct stream *, vrf_id_t);
561 extern struct interface *zebra_interface_vrf_update_read(struct stream *s,
562 vrf_id_t vrf_id,
563 vrf_id_t *new_vrf_id);
564 extern void zebra_interface_if_set_value(struct stream *, struct interface *);
565 extern void zebra_router_id_update_read(struct stream *s, struct prefix *rid);
566
567 extern struct interface *zebra_interface_link_params_read(struct stream *);
568 extern size_t zebra_interface_link_params_write(struct stream *,
569 struct interface *);
570 extern int zclient_send_get_label_chunk(
571 struct zclient *zclient,
572 uint8_t keep,
573 uint32_t chunk_size);
574
575 extern int lm_label_manager_connect(struct zclient *zclient);
576 extern int lm_get_label_chunk(struct zclient *zclient, uint8_t keep,
577 uint32_t chunk_size, uint32_t *start,
578 uint32_t *end);
579 extern int lm_release_label_chunk(struct zclient *zclient, uint32_t start,
580 uint32_t end);
581 extern int tm_table_manager_connect(struct zclient *zclient);
582 extern int tm_get_table_chunk(struct zclient *zclient, uint32_t chunk_size,
583 uint32_t *start, uint32_t *end);
584 extern int tm_release_table_chunk(struct zclient *zclient, uint32_t start,
585 uint32_t end);
586
587 extern int zebra_send_pw(struct zclient *zclient, int command,
588 struct zapi_pw *pw);
589 extern void zebra_read_pw_status_update(int command, struct zclient *zclient,
590 zebra_size_t length, vrf_id_t vrf_id,
591 struct zapi_pw_status *pw);
592
593 extern int zclient_route_send(uint8_t, struct zclient *, struct zapi_route *);
594 extern int zclient_send_rnh(struct zclient *zclient, int command,
595 struct prefix *p, bool exact_match,
596 vrf_id_t vrf_id);
597 extern int zapi_route_encode(uint8_t, struct stream *, struct zapi_route *);
598 extern int zapi_route_decode(struct stream *, struct zapi_route *);
599 bool zapi_route_notify_decode(struct stream *s, struct prefix *p,
600 uint32_t *tableid,
601 enum zapi_route_notify_owner *note);
602 bool zapi_rule_notify_decode(struct stream *s, uint32_t *seqno,
603 uint32_t *priority, uint32_t *unique,
604 ifindex_t *ifindex,
605 enum zapi_rule_notify_owner *note);
606 bool zapi_ipset_notify_decode(struct stream *s,
607 uint32_t *unique,
608 enum zapi_ipset_notify_owner *note);
609
610 #define ZEBRA_IPSET_NAME_SIZE 32
611
612 bool zapi_ipset_entry_notify_decode(struct stream *s,
613 uint32_t *unique,
614 char *ipset_name,
615 enum zapi_ipset_entry_notify_owner *note);
616 bool zapi_iptable_notify_decode(struct stream *s,
617 uint32_t *unique,
618 enum zapi_iptable_notify_owner *note);
619
620 extern struct nexthop *nexthop_from_zapi_nexthop(struct zapi_nexthop *znh);
621 extern bool zapi_nexthop_update_decode(struct stream *s,
622 struct zapi_route *nhr);
623
624 static inline void zapi_route_set_blackhole(struct zapi_route *api,
625 enum blackhole_type bh_type)
626 {
627 api->nexthop_num = 1;
628 api->nexthops[0].type = NEXTHOP_TYPE_BLACKHOLE;
629 api->nexthops[0].vrf_id = VRF_DEFAULT;
630 api->nexthops[0].bh_type = bh_type;
631 SET_FLAG(api->message, ZAPI_MESSAGE_NEXTHOP);
632 };
633
634
635 #endif /* _ZEBRA_ZCLIENT_H */