]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zserv.h
zebra: Add the 'struct zebra_ns' data structure
[mirror_frr.git] / zebra / zserv.h
CommitLineData
718e3744 1/* Zebra daemon server header.
2 * Copyright (C) 1997, 98 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 Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#ifndef _ZEBRA_ZSERV_H
23#define _ZEBRA_ZSERV_H
24
5b73a671 25#include "rib.h"
ec1a4283 26#include "if.h"
4d38fdb4 27#include "workqueue.h"
518f0eb1 28#include "routemap.h"
4e3afb14 29#include "vty.h"
7c8ff89e 30#include "zclient.h"
7076bb2f 31#include "vrf.h"
5b73a671 32
718e3744 33/* Default port information. */
718e3744 34#define ZEBRA_VTY_PORT 2601
718e3744 35
36/* Default configuration filename. */
37#define DEFAULT_CONFIG_FILE "zebra.conf"
38
518f0eb1
DS
39#define ZEBRA_RMAP_DEFAULT_UPDATE_TIMER 5 /* disabled by default */
40
718e3744 41/* Client structure. */
42struct zserv
43{
44 /* Client file descriptor. */
45 int sock;
46
47 /* Input/output buffer to the client. */
48 struct stream *ibuf;
49 struct stream *obuf;
50
719e9741 51 /* Buffer of data waiting to be written to client. */
52 struct buffer *wb;
53
718e3744 54 /* Threads for read/write. */
55 struct thread *t_read;
56 struct thread *t_write;
57
719e9741 58 /* Thread for delayed close. */
59 struct thread *t_suicide;
60
718e3744 61 /* default routing table this client munges */
62 int rtm_table;
63
64 /* This client's redistribute flag. */
7076bb2f
FL
65 struct redist_proto mi_redist[AFI_MAX][ZEBRA_ROUTE_MAX];
66 vrf_bitmap_t redist[AFI_MAX][ZEBRA_ROUTE_MAX];
718e3744 67
68 /* Redistribute default route flag. */
7076bb2f 69 vrf_bitmap_t redist_default;
718e3744 70
71 /* Interface information. */
7076bb2f 72 vrf_bitmap_t ifinfo;
18a6dce6 73
74 /* Router-id information. */
7076bb2f 75 vrf_bitmap_t ridinfo;
fb018d25
DS
76
77 /* client's protocol */
78 u_char proto;
7c8ff89e 79 u_short instance;
04b02fda
DS
80
81 /* Statistics */
82 u_int32_t redist_v4_add_cnt;
83 u_int32_t redist_v4_del_cnt;
84 u_int32_t redist_v6_add_cnt;
85 u_int32_t redist_v6_del_cnt;
86 u_int32_t v4_route_add_cnt;
87 u_int32_t v4_route_upd8_cnt;
88 u_int32_t v4_route_del_cnt;
89 u_int32_t v6_route_add_cnt;
90 u_int32_t v6_route_del_cnt;
91 u_int32_t v6_route_upd8_cnt;
92 u_int32_t connected_rt_add_cnt;
93 u_int32_t connected_rt_del_cnt;
94 u_int32_t ifup_cnt;
95 u_int32_t ifdown_cnt;
96 u_int32_t ifadd_cnt;
97 u_int32_t ifdel_cnt;
d5a5c8f0 98 u_int32_t if_bfd_cnt;
c43ed2e4
DS
99 u_int32_t bfd_peer_add_cnt;
100 u_int32_t bfd_peer_upd8_cnt;
101 u_int32_t bfd_peer_del_cnt;
102 u_int32_t bfd_peer_replay_cnt;
04b02fda
DS
103
104 time_t connect_time;
105 time_t last_read_time;
106 time_t last_write_time;
107 time_t nh_reg_time;
108 time_t nh_dereg_time;
109 time_t nh_last_upd_time;
110
111 int last_read_cmd;
112 int last_write_cmd;
718e3744 113};
114
b21b19c5 115/* Zebra instance */
116struct zebra_t
117{
118 /* Thread master */
119 struct thread_master *master;
52dc7ee6 120 struct list *client_list;
b21b19c5 121
122 /* default table */
4e3afb14 123 u_int32_t rtm_table_default;
4d38fdb4 124
125 /* rib work queue */
126 struct work_queue *ribq;
e96f9203 127 struct meta_queue *mq;
b21b19c5 128};
129
718e3744 130/* Prototypes. */
a1ac18c4 131extern void zebra_init (void);
132extern void zebra_if_init (void);
b5114685 133extern void zebra_zserv_socket_init (char *path);
a1ac18c4 134extern void hostinfo_get (void);
135extern void rib_init (void);
8f7d9fc0
FL
136extern void interface_list (struct zebra_vrf *);
137extern void route_read (struct zebra_vrf *);
138extern void kernel_init (struct zebra_vrf *);
139extern void kernel_terminate (struct zebra_vrf *);
7514fb77 140extern void zebra_route_map_init (void);
a1ac18c4 141extern void zebra_snmp_init (void);
142extern void zebra_vty_init (void);
143
144extern int zsend_interface_add (struct zserv *, struct interface *);
a1ac18c4 145extern int zsend_interface_delete (struct zserv *, struct interface *);
a1ac18c4 146extern int zsend_interface_address (int, struct zserv *, struct interface *,
147 struct connected *);
a80beece
DS
148extern void nbr_connected_replacement_add_ipv6 (struct interface *,
149 struct in6_addr *, u_char);
150extern void nbr_connected_delete_ipv6 (struct interface *, struct in6_addr *, u_char);
a1ac18c4 151extern int zsend_interface_update (int, struct zserv *, struct interface *);
5048fe14 152extern int zsend_redistribute_route (int, struct zserv *, struct prefix *,
153 struct rib *);
c6ffe645
FL
154extern int zsend_router_id_update (struct zserv *, struct prefix *,
155 vrf_id_t);
156
718e3744 157extern pid_t pid;
718e3744 158
7076bb2f 159extern void zserv_create_header(struct stream *s, uint16_t cmd, vrf_id_t vrf_id);
6878b9db 160extern void zserv_nexthop_num_warn(const char *, const struct prefix *, const u_char);
fb018d25
DS
161extern int zebra_server_send_message(struct zserv *client);
162
518f0eb1
DS
163extern void zebra_route_map_write_delay_timer(struct vty *);
164extern route_map_result_t zebra_route_map_check (int family, int rib_type,
165 struct prefix *p,
ca84c8ef 166 struct nexthop *nexthop,
0032dd59 167 vrf_id_t vrf_id,
ca84c8ef 168 u_short tag);
9f0ea7d4
DS
169extern route_map_result_t zebra_nht_route_map_check (int family,
170 int client_proto,
171 struct prefix *p,
172 struct rib *,
173 struct nexthop *nexthop);
518f0eb1 174
718e3744 175#endif /* _ZEBRA_ZEBRA_H */