]> git.proxmox.com Git - mirror_frr.git/blame - zebra/zserv.h
zebra: add pseudowire manager
[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"
82f97584 28#include "vrf.h"
518f0eb1 29#include "routemap.h"
4e3afb14 30#include "vty.h"
7c8ff89e 31#include "zclient.h"
5b73a671 32
7c551956 33#include "zebra/zebra_ns.h"
6da80de9 34#include "zebra/zebra_pw.h"
35
718e3744 36/* Default port information. */
718e3744 37#define ZEBRA_VTY_PORT 2601
718e3744 38
39/* Default configuration filename. */
40#define DEFAULT_CONFIG_FILE "zebra.conf"
41
518f0eb1
DS
42#define ZEBRA_RMAP_DEFAULT_UPDATE_TIMER 5 /* disabled by default */
43
718e3744 44/* Client structure. */
45struct zserv
46{
47 /* Client file descriptor. */
48 int sock;
49
50 /* Input/output buffer to the client. */
51 struct stream *ibuf;
52 struct stream *obuf;
53
719e9741 54 /* Buffer of data waiting to be written to client. */
55 struct buffer *wb;
56
718e3744 57 /* Threads for read/write. */
58 struct thread *t_read;
59 struct thread *t_write;
60
719e9741 61 /* Thread for delayed close. */
62 struct thread *t_suicide;
63
718e3744 64 /* default routing table this client munges */
65 int rtm_table;
66
67 /* This client's redistribute flag. */
7076bb2f
FL
68 struct redist_proto mi_redist[AFI_MAX][ZEBRA_ROUTE_MAX];
69 vrf_bitmap_t redist[AFI_MAX][ZEBRA_ROUTE_MAX];
718e3744 70
71 /* Redistribute default route flag. */
7076bb2f 72 vrf_bitmap_t redist_default;
718e3744 73
74 /* Interface information. */
7076bb2f 75 vrf_bitmap_t ifinfo;
18a6dce6 76
77 /* Router-id information. */
7076bb2f 78 vrf_bitmap_t ridinfo;
fb018d25
DS
79
80 /* client's protocol */
81 u_char proto;
7c8ff89e 82 u_short instance;
fea12efb 83 u_char is_synchronous;
04b02fda
DS
84
85 /* Statistics */
86 u_int32_t redist_v4_add_cnt;
87 u_int32_t redist_v4_del_cnt;
88 u_int32_t redist_v6_add_cnt;
89 u_int32_t redist_v6_del_cnt;
90 u_int32_t v4_route_add_cnt;
91 u_int32_t v4_route_upd8_cnt;
92 u_int32_t v4_route_del_cnt;
93 u_int32_t v6_route_add_cnt;
94 u_int32_t v6_route_del_cnt;
95 u_int32_t v6_route_upd8_cnt;
96 u_int32_t connected_rt_add_cnt;
97 u_int32_t connected_rt_del_cnt;
98 u_int32_t ifup_cnt;
99 u_int32_t ifdown_cnt;
100 u_int32_t ifadd_cnt;
101 u_int32_t ifdel_cnt;
d5a5c8f0 102 u_int32_t if_bfd_cnt;
c43ed2e4
DS
103 u_int32_t bfd_peer_add_cnt;
104 u_int32_t bfd_peer_upd8_cnt;
105 u_int32_t bfd_peer_del_cnt;
106 u_int32_t bfd_peer_replay_cnt;
12f6fb97
DS
107 u_int32_t vrfadd_cnt;
108 u_int32_t vrfdel_cnt;
c8e264b6 109 u_int32_t if_vrfchg_cnt;
055c4dfc 110 u_int32_t bfd_client_reg_cnt;
04b02fda
DS
111
112 time_t connect_time;
113 time_t last_read_time;
114 time_t last_write_time;
115 time_t nh_reg_time;
116 time_t nh_dereg_time;
117 time_t nh_last_upd_time;
118
119 int last_read_cmd;
120 int last_write_cmd;
718e3744 121};
122
b21b19c5 123/* Zebra instance */
124struct zebra_t
125{
126 /* Thread master */
127 struct thread_master *master;
52dc7ee6 128 struct list *client_list;
b21b19c5 129
130 /* default table */
4e3afb14 131 u_int32_t rtm_table_default;
4d38fdb4 132
133 /* rib work queue */
134 struct work_queue *ribq;
e96f9203 135 struct meta_queue *mq;
40c7bdb0 136
137 /* LSP work queue */
138 struct work_queue *lsp_process_q;
b21b19c5 139};
44e9909d 140extern struct zebra_t zebrad;
37fe7731 141extern unsigned int multipath_num;
b21b19c5 142
718e3744 143/* Prototypes. */
a1ac18c4 144extern void zebra_init (void);
145extern void zebra_if_init (void);
b5114685 146extern void zebra_zserv_socket_init (char *path);
a1ac18c4 147extern void hostinfo_get (void);
148extern void rib_init (void);
12f6fb97
DS
149extern void interface_list (struct zebra_ns *);
150extern void route_read (struct zebra_ns *);
151extern void kernel_init (struct zebra_ns *);
152extern void kernel_terminate (struct zebra_ns *);
7514fb77 153extern void zebra_route_map_init (void);
a1ac18c4 154extern void zebra_vty_init (void);
155
9e1bf607
DS
156extern int zsend_vrf_add (struct zserv *, struct zebra_vrf *);
157extern int zsend_vrf_delete (struct zserv *, struct zebra_vrf *);
12f6fb97 158
a1ac18c4 159extern int zsend_interface_add (struct zserv *, struct interface *);
a1ac18c4 160extern int zsend_interface_delete (struct zserv *, struct interface *);
c8e264b6 161extern int zsend_interface_addresses (struct zserv *, struct interface *);
a1ac18c4 162extern int zsend_interface_address (int, struct zserv *, struct interface *,
163 struct connected *);
1d20ccf3 164extern void nbr_connected_add_ipv6 (struct interface *, struct in6_addr *);
165extern void nbr_connected_delete_ipv6 (struct interface *, struct in6_addr *);
a1ac18c4 166extern int zsend_interface_update (int, struct zserv *, struct interface *);
5048fe14 167extern int zsend_redistribute_route (int, struct zserv *, struct prefix *,
05737783 168 struct prefix *, struct rib *);
c6ffe645
FL
169extern int zsend_router_id_update (struct zserv *, struct prefix *,
170 vrf_id_t);
c8e264b6 171extern int zsend_interface_vrf_update (struct zserv *, struct interface *,
172 vrf_id_t);
c6ffe645 173
16f1b9ee 174extern int zsend_interface_link_params (struct zserv *, struct interface *);
6da80de9 175extern int zsend_pw_update (struct zserv *, struct zebra_pw *);
16f1b9ee 176
718e3744 177extern pid_t pid;
718e3744 178
7076bb2f 179extern void zserv_create_header(struct stream *s, uint16_t cmd, vrf_id_t vrf_id);
4f87aceb 180extern void zserv_nexthop_num_warn(const char *, const struct prefix *, const unsigned int);
fb018d25
DS
181extern int zebra_server_send_message(struct zserv *client);
182
8ed6821e 183extern struct zserv *zebra_find_client (u_char proto);
184
718e3744 185#endif /* _ZEBRA_ZEBRA_H */