paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 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 |
| 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 | |
| 25 | /* For struct interface and struct connected. */ |
| 26 | #include "if.h" |
| 27 | |
| 28 | /* For input/output buffer to zebra. */ |
| 29 | #define ZEBRA_MAX_PACKET_SIZ 4096 |
| 30 | |
| 31 | /* Zebra header size. */ |
| 32 | #define ZEBRA_HEADER_SIZE 3 |
| 33 | |
| 34 | /* Structure for the zebra client. */ |
| 35 | struct zclient |
| 36 | { |
| 37 | /* Socket to zebra daemon. */ |
| 38 | int sock; |
| 39 | |
| 40 | /* Flag of communication to zebra is enabled or not. Default is on. |
| 41 | This flag is disabled by `no router zebra' statement. */ |
| 42 | int enable; |
| 43 | |
| 44 | /* Connection failure count. */ |
| 45 | int fail; |
| 46 | |
| 47 | /* Input buffer for zebra message. */ |
| 48 | struct stream *ibuf; |
| 49 | |
| 50 | /* Output buffer for zebra message. */ |
| 51 | struct stream *obuf; |
| 52 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 53 | /* Buffer of data waiting to be written to zebra. */ |
| 54 | struct buffer *wb; |
| 55 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 56 | /* Read and connect thread. */ |
| 57 | struct thread *t_read; |
| 58 | struct thread *t_connect; |
| 59 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 60 | /* Thread to write buffered data to zebra. */ |
| 61 | struct thread *t_write; |
| 62 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 63 | /* Redistribute information. */ |
| 64 | u_char redist_default; |
| 65 | u_char redist[ZEBRA_ROUTE_MAX]; |
| 66 | |
| 67 | /* Redistribute defauilt. */ |
| 68 | u_char default_information; |
| 69 | |
| 70 | /* Pointer to the callback functions. */ |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 71 | int (*router_id_update) (int, struct zclient *, zebra_size_t); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 72 | int (*interface_add) (int, struct zclient *, zebra_size_t); |
| 73 | int (*interface_delete) (int, struct zclient *, zebra_size_t); |
| 74 | int (*interface_up) (int, struct zclient *, zebra_size_t); |
| 75 | int (*interface_down) (int, struct zclient *, zebra_size_t); |
| 76 | int (*interface_address_add) (int, struct zclient *, zebra_size_t); |
| 77 | int (*interface_address_delete) (int, struct zclient *, zebra_size_t); |
| 78 | int (*ipv4_route_add) (int, struct zclient *, zebra_size_t); |
| 79 | int (*ipv4_route_delete) (int, struct zclient *, zebra_size_t); |
| 80 | int (*ipv6_route_add) (int, struct zclient *, zebra_size_t); |
| 81 | int (*ipv6_route_delete) (int, struct zclient *, zebra_size_t); |
| 82 | }; |
| 83 | |
| 84 | /* Zebra API message flag. */ |
| 85 | #define ZAPI_MESSAGE_NEXTHOP 0x01 |
| 86 | #define ZAPI_MESSAGE_IFINDEX 0x02 |
| 87 | #define ZAPI_MESSAGE_DISTANCE 0x04 |
| 88 | #define ZAPI_MESSAGE_METRIC 0x08 |
| 89 | |
| 90 | /* Zebra IPv4 route message API. */ |
| 91 | struct zapi_ipv4 |
| 92 | { |
| 93 | u_char type; |
| 94 | |
| 95 | u_char flags; |
| 96 | |
| 97 | u_char message; |
| 98 | |
| 99 | u_char nexthop_num; |
| 100 | struct in_addr **nexthop; |
| 101 | |
| 102 | u_char ifindex_num; |
| 103 | unsigned int *ifindex; |
| 104 | |
| 105 | u_char distance; |
| 106 | |
| 107 | u_int32_t metric; |
| 108 | }; |
| 109 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 110 | /* Prototypes of zebra client service functions. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 111 | extern struct zclient *zclient_new (void); |
| 112 | extern void zclient_init (struct zclient *, int); |
| 113 | extern int zclient_start (struct zclient *); |
| 114 | extern void zclient_stop (struct zclient *); |
| 115 | extern void zclient_reset (struct zclient *); |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 116 | |
| 117 | /* Get TCP socket connection to zebra daemon at loopback address. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 118 | extern int zclient_socket (void); |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 119 | |
| 120 | /* Get unix stream socket connection to zebra daemon at given path. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 121 | extern int zclient_socket_un (const char *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 122 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 123 | /* Send redistribute command to zebra daemon. Do not update zclient state. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 124 | extern int zebra_redistribute_send (int command, struct zclient *, int type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 125 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 126 | /* If state has changed, update state and call zebra_redistribute_send. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 127 | extern void zclient_redistribute (int command, struct zclient *, int type); |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 128 | |
| 129 | /* If state has changed, update state and send the command to zebra. */ |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 130 | extern void zclient_redistribute_default (int command, struct zclient *); |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 131 | |
| 132 | /* Send the message in zclient->obuf to the zebra daemon (or enqueue it). |
| 133 | Returns 0 for success or -1 on an I/O error. */ |
| 134 | extern int zclient_send_message(struct zclient *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 135 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 136 | extern struct interface *zebra_interface_add_read (struct stream *); |
| 137 | extern struct interface *zebra_interface_state_read (struct stream *s); |
| 138 | extern struct connected *zebra_interface_address_read (int, struct stream *); |
| 139 | extern void zebra_interface_if_set_value (struct stream *, struct interface *); |
| 140 | extern void zebra_router_id_update_read (struct stream *s, struct prefix *rid); |
| 141 | extern int zapi_ipv4_route (u_char, struct zclient *, struct prefix_ipv4 *, |
| 142 | struct zapi_ipv4 *); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 143 | |
| 144 | #ifdef HAVE_IPV6 |
| 145 | /* IPv6 prefix add and delete function prototype. */ |
| 146 | |
| 147 | struct zapi_ipv6 |
| 148 | { |
| 149 | u_char type; |
| 150 | |
| 151 | u_char flags; |
| 152 | |
| 153 | u_char message; |
| 154 | |
| 155 | u_char nexthop_num; |
| 156 | struct in6_addr **nexthop; |
| 157 | |
| 158 | u_char ifindex_num; |
| 159 | unsigned int *ifindex; |
| 160 | |
| 161 | u_char distance; |
| 162 | |
| 163 | u_int32_t metric; |
| 164 | }; |
| 165 | |
paul | 8cc4198 | 2005-05-06 21:25:49 +0000 | [diff] [blame] | 166 | extern int zapi_ipv6_route (u_char cmd, struct zclient *zclient, |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 167 | struct prefix_ipv6 *p, struct zapi_ipv6 *api); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 168 | #endif /* HAVE_IPV6 */ |
| 169 | |
| 170 | #endif /* _ZEBRA_ZCLIENT_H */ |