blob: 1513492977e730938ec850e04ea73cb2e3d81af0 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* 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
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#ifndef _ZEBRA_ZCLIENT_H
23#define _ZEBRA_ZCLIENT_H
24
Paul Jakma57345092011-12-25 17:52:09 +010025/* For struct zapi_ipv{4,6}. */
26#include "prefix.h"
27
paul718e3742002-12-13 20:15:29 +000028/* For struct interface and struct connected. */
29#include "if.h"
30
Feng Luc99f3482014-10-16 09:52:36 +080031/* For vrf_bitmap_t. */
32#include "vrf.h"
33
paul718e3742002-12-13 20:15:29 +000034/* For input/output buffer to zebra. */
35#define ZEBRA_MAX_PACKET_SIZ 4096
36
37/* Zebra header size. */
Feng Luc99f3482014-10-16 09:52:36 +080038#define ZEBRA_HEADER_SIZE 8
paul718e3742002-12-13 20:15:29 +000039
40/* Structure for the zebra client. */
41struct zclient
42{
Donald Sharp71252932015-09-24 09:25:19 -040043 /* The thread master we schedule ourselves on */
44 struct thread_master *master;
45
paul718e3742002-12-13 20:15:29 +000046 /* Socket to zebra daemon. */
47 int sock;
48
49 /* Flag of communication to zebra is enabled or not. Default is on.
50 This flag is disabled by `no router zebra' statement. */
51 int enable;
52
53 /* Connection failure count. */
54 int fail;
55
56 /* Input buffer for zebra message. */
57 struct stream *ibuf;
58
59 /* Output buffer for zebra message. */
60 struct stream *obuf;
61
ajs634f9ea2005-04-11 15:51:40 +000062 /* Buffer of data waiting to be written to zebra. */
63 struct buffer *wb;
64
paul718e3742002-12-13 20:15:29 +000065 /* Read and connect thread. */
66 struct thread *t_read;
67 struct thread *t_connect;
68
ajs634f9ea2005-04-11 15:51:40 +000069 /* Thread to write buffered data to zebra. */
70 struct thread *t_write;
71
paul718e3742002-12-13 20:15:29 +000072 /* Redistribute information. */
73 u_char redist_default;
Feng Luc99f3482014-10-16 09:52:36 +080074 vrf_bitmap_t redist[ZEBRA_ROUTE_MAX];
paul718e3742002-12-13 20:15:29 +000075
76 /* Redistribute defauilt. */
Feng Luc99f3482014-10-16 09:52:36 +080077 vrf_bitmap_t default_information;
paul718e3742002-12-13 20:15:29 +000078
79 /* Pointer to the callback functions. */
Feng Luc99f3482014-10-16 09:52:36 +080080 void (*zebra_connected) (struct zclient *);
81 int (*router_id_update) (int, struct zclient *, uint16_t, vrf_id_t);
82 int (*interface_add) (int, struct zclient *, uint16_t, vrf_id_t);
83 int (*interface_delete) (int, struct zclient *, uint16_t, vrf_id_t);
84 int (*interface_up) (int, struct zclient *, uint16_t, vrf_id_t);
85 int (*interface_down) (int, struct zclient *, uint16_t, vrf_id_t);
86 int (*interface_address_add) (int, struct zclient *, uint16_t, vrf_id_t);
87 int (*interface_address_delete) (int, struct zclient *, uint16_t, vrf_id_t);
Olivier Dugeonae51c9d2016-04-19 16:21:46 +020088 int (*interface_link_params) (int, struct zclient *, uint16_t);
Feng Luc99f3482014-10-16 09:52:36 +080089 int (*ipv4_route_add) (int, struct zclient *, uint16_t, vrf_id_t);
90 int (*ipv4_route_delete) (int, struct zclient *, uint16_t, vrf_id_t);
91 int (*ipv6_route_add) (int, struct zclient *, uint16_t, vrf_id_t);
92 int (*ipv6_route_delete) (int, struct zclient *, uint16_t, vrf_id_t);
paul718e3742002-12-13 20:15:29 +000093};
94
95/* Zebra API message flag. */
96#define ZAPI_MESSAGE_NEXTHOP 0x01
97#define ZAPI_MESSAGE_IFINDEX 0x02
98#define ZAPI_MESSAGE_DISTANCE 0x04
99#define ZAPI_MESSAGE_METRIC 0x08
Timo Teräsb11f3b52015-11-02 16:50:07 +0200100#define ZAPI_MESSAGE_MTU 0x10
paul718e3742002-12-13 20:15:29 +0000101
paulc1b98002006-01-16 01:54:02 +0000102/* Zserv protocol message header */
103struct zserv_header
104{
105 uint16_t length;
106 uint8_t marker; /* corresponds to command field in old zserv
107 * always set to 255 in new zserv.
108 */
109 uint8_t version;
Feng Luc99f3482014-10-16 09:52:36 +0800110#define ZSERV_VERSION 3
111 vrf_id_t vrf_id;
paulc1b98002006-01-16 01:54:02 +0000112 uint16_t command;
113};
114
paul718e3742002-12-13 20:15:29 +0000115/* Zebra IPv4 route message API. */
116struct zapi_ipv4
117{
118 u_char type;
119
120 u_char flags;
121
122 u_char message;
123
G.Balaji5a616c02011-11-26 21:58:42 +0400124 safi_t safi;
125
paul718e3742002-12-13 20:15:29 +0000126 u_char nexthop_num;
127 struct in_addr **nexthop;
128
129 u_char ifindex_num;
Paul Jakma9099f9b2016-01-18 10:12:10 +0000130 ifindex_t *ifindex;
paul718e3742002-12-13 20:15:29 +0000131
132 u_char distance;
133
134 u_int32_t metric;
Feng Luc99f3482014-10-16 09:52:36 +0800135
Timo Teräsb11f3b52015-11-02 16:50:07 +0200136 u_int32_t mtu;
137
Feng Luc99f3482014-10-16 09:52:36 +0800138 vrf_id_t vrf_id;
paul718e3742002-12-13 20:15:29 +0000139};
140
paul718e3742002-12-13 20:15:29 +0000141/* Prototypes of zebra client service functions. */
Donald Sharp71252932015-09-24 09:25:19 -0400142extern struct zclient *zclient_new (struct thread_master *);
paul8cc41982005-05-06 21:25:49 +0000143extern void zclient_init (struct zclient *, int);
144extern int zclient_start (struct zclient *);
145extern void zclient_stop (struct zclient *);
146extern void zclient_reset (struct zclient *);
Chris Caputo228da422009-07-18 05:44:03 +0000147extern void zclient_free (struct zclient *);
ajs634f9ea2005-04-11 15:51:40 +0000148
Vyacheslav Trushkinb5114682011-11-25 18:51:48 +0400149extern int zclient_socket_connect (struct zclient *);
150extern void zclient_serv_path_set (char *path);
David Lamparterfd8f6eb2015-03-03 08:57:02 +0100151extern const char *zclient_serv_path_get (void);
paul718e3742002-12-13 20:15:29 +0000152
Feng Luc99f3482014-10-16 09:52:36 +0800153extern void zclient_send_requests (struct zclient *, vrf_id_t);
154
ajs634f9ea2005-04-11 15:51:40 +0000155/* Send redistribute command to zebra daemon. Do not update zclient state. */
Feng Luc99f3482014-10-16 09:52:36 +0800156extern int zebra_redistribute_send (int command, struct zclient *, int type,
157 vrf_id_t vrf_id);
paul718e3742002-12-13 20:15:29 +0000158
ajs634f9ea2005-04-11 15:51:40 +0000159/* If state has changed, update state and call zebra_redistribute_send. */
Feng Luc99f3482014-10-16 09:52:36 +0800160extern void zclient_redistribute (int command, struct zclient *, int type,
161 vrf_id_t vrf_id);
ajs634f9ea2005-04-11 15:51:40 +0000162
163/* If state has changed, update state and send the command to zebra. */
Feng Luc99f3482014-10-16 09:52:36 +0800164extern void zclient_redistribute_default (int command, struct zclient *,
165 vrf_id_t vrf_id);
ajs634f9ea2005-04-11 15:51:40 +0000166
167/* Send the message in zclient->obuf to the zebra daemon (or enqueue it).
168 Returns 0 for success or -1 on an I/O error. */
169extern int zclient_send_message(struct zclient *);
paul718e3742002-12-13 20:15:29 +0000170
pauld2110862006-01-17 17:43:18 +0000171/* create header for command, length to be filled in by user later */
Feng Luc99f3482014-10-16 09:52:36 +0800172extern void zclient_create_header (struct stream *, uint16_t, vrf_id_t);
Nicolas Dichtel794c4732015-09-16 09:42:36 +0200173extern int zclient_read_header (struct stream *s, int sock, u_int16_t *size,
174 u_char *marker, u_char *version,
175 u_int16_t *vrf_id, u_int16_t *cmd);
pauld2110862006-01-17 17:43:18 +0000176
Feng Luc99f3482014-10-16 09:52:36 +0800177extern struct interface *zebra_interface_add_read (struct stream *,
178 vrf_id_t);
179extern struct interface *zebra_interface_state_read (struct stream *,
180 vrf_id_t);
181extern struct connected *zebra_interface_address_read (int, struct stream *,
182 vrf_id_t);
paul8cc41982005-05-06 21:25:49 +0000183extern void zebra_interface_if_set_value (struct stream *, struct interface *);
184extern void zebra_router_id_update_read (struct stream *s, struct prefix *rid);
185extern int zapi_ipv4_route (u_char, struct zclient *, struct prefix_ipv4 *,
186 struct zapi_ipv4 *);
paul718e3742002-12-13 20:15:29 +0000187
Olivier Dugeonae51c9d2016-04-19 16:21:46 +0200188extern struct interface *zebra_interface_link_params_read (struct stream *);
189extern size_t zebra_interface_link_params_write (struct stream *,
190 struct interface *);
paul718e3742002-12-13 20:15:29 +0000191#ifdef HAVE_IPV6
192/* IPv6 prefix add and delete function prototype. */
193
194struct zapi_ipv6
195{
196 u_char type;
197
198 u_char flags;
199
200 u_char message;
201
G.Balajic7ec1792011-11-26 22:04:05 +0400202 safi_t safi;
203
paul718e3742002-12-13 20:15:29 +0000204 u_char nexthop_num;
205 struct in6_addr **nexthop;
206
207 u_char ifindex_num;
Paul Jakma9099f9b2016-01-18 10:12:10 +0000208 ifindex_t *ifindex;
paul718e3742002-12-13 20:15:29 +0000209
210 u_char distance;
211
212 u_int32_t metric;
Feng Luc99f3482014-10-16 09:52:36 +0800213
Timo Teräsb11f3b52015-11-02 16:50:07 +0200214 u_int32_t mtu;
215
Feng Luc99f3482014-10-16 09:52:36 +0800216 vrf_id_t vrf_id;
paul718e3742002-12-13 20:15:29 +0000217};
218
paul8cc41982005-05-06 21:25:49 +0000219extern int zapi_ipv6_route (u_char cmd, struct zclient *zclient,
paul0a589352004-05-08 11:48:26 +0000220 struct prefix_ipv6 *p, struct zapi_ipv6 *api);
paul718e3742002-12-13 20:15:29 +0000221#endif /* HAVE_IPV6 */
222
223#endif /* _ZEBRA_ZCLIENT_H */