summaryrefslogtreecommitdiffstats
path: root/ripd/rip_nb.h
blob: 441b253fea0c5a7eca68e57bed2f938be5f26f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/*
 * Copyright (C) 2018  NetDEF, Inc.
 *                     Renato Westphal
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option)
 * any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; see the file COPYING; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifndef _FRR_RIP_NB_H_
#define _FRR_RIP_NB_H_

extern const struct frr_yang_module_info frr_ripd_info;

/* Mandatory callbacks. */
int ripd_instance_create(enum nb_event event, const struct lyd_node *dnode,
			 union nb_resource *resource);
int ripd_instance_destroy(enum nb_event event, const struct lyd_node *dnode);
const void *ripd_instance_get_next(const void *parent_list_entry,
				   const void *list_entry);
int ripd_instance_get_keys(const void *list_entry, struct yang_list_keys *keys);
const void *ripd_instance_lookup_entry(const void *parent_list_entry,
				       const struct yang_list_keys *keys);
int ripd_instance_allow_ecmp_modify(enum nb_event event,
				    const struct lyd_node *dnode,
				    union nb_resource *resource);
int ripd_instance_default_information_originate_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int ripd_instance_default_metric_modify(enum nb_event event,
					const struct lyd_node *dnode,
					union nb_resource *resource);
int ripd_instance_distance_default_modify(enum nb_event event,
					  const struct lyd_node *dnode,
					  union nb_resource *resource);
int ripd_instance_distance_source_create(enum nb_event event,
					 const struct lyd_node *dnode,
					 union nb_resource *resource);
int ripd_instance_distance_source_destroy(enum nb_event event,
					  const struct lyd_node *dnode);
int ripd_instance_distance_source_distance_modify(enum nb_event event,
						  const struct lyd_node *dnode,
						  union nb_resource *resource);
int ripd_instance_distance_source_access_list_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int ripd_instance_distance_source_access_list_destroy(
	enum nb_event event, const struct lyd_node *dnode);
int ripd_instance_explicit_neighbor_create(enum nb_event event,
					   const struct lyd_node *dnode,
					   union nb_resource *resource);
int ripd_instance_explicit_neighbor_destroy(enum nb_event event,
					    const struct lyd_node *dnode);
int ripd_instance_network_create(enum nb_event event,
				 const struct lyd_node *dnode,
				 union nb_resource *resource);
int ripd_instance_network_destroy(enum nb_event event,
				  const struct lyd_node *dnode);
int ripd_instance_interface_create(enum nb_event event,
				   const struct lyd_node *dnode,
				   union nb_resource *resource);
int ripd_instance_interface_destroy(enum nb_event event,
				    const struct lyd_node *dnode);
int ripd_instance_offset_list_create(enum nb_event event,
				     const struct lyd_node *dnode,
				     union nb_resource *resource);
int ripd_instance_offset_list_destroy(enum nb_event event,
				      const struct lyd_node *dnode);
int ripd_instance_offset_list_access_list_modify(enum nb_event event,
						 const struct lyd_node *dnode,
						 union nb_resource *resource);
int ripd_instance_offset_list_metric_modify(enum nb_event event,
					    const struct lyd_node *dnode,
					    union nb_resource *resource);
int ripd_instance_passive_default_modify(enum nb_event event,
					 const struct lyd_node *dnode,
					 union nb_resource *resource);
int ripd_instance_passive_interface_create(enum nb_event event,
					   const struct lyd_node *dnode,
					   union nb_resource *resource);
int ripd_instance_passive_interface_destroy(enum nb_event event,
					    const struct lyd_node *dnode);
int ripd_instance_non_passive_interface_create(enum nb_event event,
					       const struct lyd_node *dnode,
					       union nb_resource *resource);
int ripd_instance_non_passive_interface_destroy(enum nb_event event,
						const struct lyd_node *dnode);
int ripd_instance_redistribute_create(enum nb_event event,
				      const struct lyd_node *dnode,
				      union nb_resource *resource);
int ripd_instance_redistribute_destroy(enum nb_event event,
				       const struct lyd_node *dnode);
int ripd_instance_redistribute_route_map_modify(enum nb_event event,
						const struct lyd_node *dnode,
						union nb_resource *resource);
int ripd_instance_redistribute_route_map_destroy(enum nb_event event,
						 const struct lyd_node *dnode);
int ripd_instance_redistribute_metric_modify(enum nb_event event,
					     const struct lyd_node *dnode,
					     union nb_resource *resource);
int ripd_instance_redistribute_metric_destroy(enum nb_event event,
					      const struct lyd_node *dnode);
int ripd_instance_static_route_create(enum nb_event event,
				      const struct lyd_node *dnode,
				      union nb_resource *resource);
int ripd_instance_static_route_destroy(enum nb_event event,
				       const struct lyd_node *dnode);
int ripd_instance_timers_flush_interval_modify(enum nb_event event,
					       const struct lyd_node *dnode,
					       union nb_resource *resource);
int ripd_instance_timers_holddown_interval_modify(enum nb_event event,
						  const struct lyd_node *dnode,
						  union nb_resource *resource);
int ripd_instance_timers_update_interval_modify(enum nb_event event,
						const struct lyd_node *dnode,
						union nb_resource *resource);
int ripd_instance_version_receive_modify(enum nb_event event,
					 const struct lyd_node *dnode,
					 union nb_resource *resource);
int ripd_instance_version_send_modify(enum nb_event event,
				      const struct lyd_node *dnode,
				      union nb_resource *resource);
const void *
ripd_instance_state_neighbors_neighbor_get_next(const void *parent_list_entry,
						const void *list_entry);
int ripd_instance_state_neighbors_neighbor_get_keys(
	const void *list_entry, struct yang_list_keys *keys);
const void *ripd_instance_state_neighbors_neighbor_lookup_entry(
	const void *parent_list_entry, const struct yang_list_keys *keys);
struct yang_data *
ripd_instance_state_neighbors_neighbor_address_get_elem(const char *xpath,
							const void *list_entry);
struct yang_data *ripd_instance_state_neighbors_neighbor_last_update_get_elem(
	const char *xpath, const void *list_entry);
struct yang_data *
ripd_instance_state_neighbors_neighbor_bad_packets_rcvd_get_elem(
	const char *xpath, const void *list_entry);
struct yang_data *
ripd_instance_state_neighbors_neighbor_bad_routes_rcvd_get_elem(
	const char *xpath, const void *list_entry);
const void *
ripd_instance_state_routes_route_get_next(const void *parent_list_entry,
					  const void *list_entry);
int ripd_instance_state_routes_route_get_keys(const void *list_entry,
					      struct yang_list_keys *keys);
const void *ripd_instance_state_routes_route_lookup_entry(
	const void *parent_list_entry, const struct yang_list_keys *keys);
struct yang_data *
ripd_instance_state_routes_route_prefix_get_elem(const char *xpath,
						 const void *list_entry);
struct yang_data *
ripd_instance_state_routes_route_next_hop_get_elem(const char *xpath,
						   const void *list_entry);
struct yang_data *
ripd_instance_state_routes_route_interface_get_elem(const char *xpath,
						    const void *list_entry);
struct yang_data *
ripd_instance_state_routes_route_metric_get_elem(const char *xpath,
						 const void *list_entry);
int clear_rip_route_rpc(const char *xpath, const struct list *input,
			struct list *output);
int lib_interface_rip_split_horizon_modify(enum nb_event event,
					   const struct lyd_node *dnode,
					   union nb_resource *resource);
int lib_interface_rip_v2_broadcast_modify(enum nb_event event,
					  const struct lyd_node *dnode,
					  union nb_resource *resource);
int lib_interface_rip_version_receive_modify(enum nb_event event,
					     const struct lyd_node *dnode,
					     union nb_resource *resource);
int lib_interface_rip_version_send_modify(enum nb_event event,
					  const struct lyd_node *dnode,
					  union nb_resource *resource);
int lib_interface_rip_authentication_scheme_mode_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int lib_interface_rip_authentication_scheme_md5_auth_length_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int lib_interface_rip_authentication_scheme_md5_auth_length_destroy(
	enum nb_event event, const struct lyd_node *dnode);
int lib_interface_rip_authentication_password_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int lib_interface_rip_authentication_password_destroy(
	enum nb_event event, const struct lyd_node *dnode);
int lib_interface_rip_authentication_key_chain_modify(
	enum nb_event event, const struct lyd_node *dnode,
	union nb_resource *resource);
int lib_interface_rip_authentication_key_chain_destroy(
	enum nb_event event, const struct lyd_node *dnode);

/* Optional 'apply_finish' callbacks. */
void ripd_instance_redistribute_apply_finish(const struct lyd_node *dnode);
void ripd_instance_timers_apply_finish(const struct lyd_node *dnode);

/* Optional 'cli_show' callbacks. */
void cli_show_router_rip(struct vty *vty, struct lyd_node *dnode,
			 bool show_defaults);
void cli_show_rip_allow_ecmp(struct vty *vty, struct lyd_node *dnode,
			     bool show_defaults);
void cli_show_rip_default_information_originate(struct vty *vty,
						struct lyd_node *dnode,
						bool show_defaults);
void cli_show_rip_default_metric(struct vty *vty, struct lyd_node *dnode,
				 bool show_defaults);
void cli_show_rip_distance(struct vty *vty, struct lyd_node *dnode,
			   bool show_defaults);
void cli_show_rip_distance_source(struct vty *vty, struct lyd_node *dnode,
				  bool show_defaults);
void cli_show_rip_neighbor(struct vty *vty, struct lyd_node *dnode,
			   bool show_defaults);
void cli_show_rip_network_prefix(struct vty *vty, struct lyd_node *dnode,
				 bool show_defaults);
void cli_show_rip_network_interface(struct vty *vty, struct lyd_node *dnode,
				    bool show_defaults);
void cli_show_rip_offset_list(struct vty *vty, struct lyd_node *dnode,
			      bool show_defaults);
void cli_show_rip_passive_default(struct vty *vty, struct lyd_node *dnode,
				  bool show_defaults);
void cli_show_rip_passive_interface(struct vty *vty, struct lyd_node *dnode,
				    bool show_defaults);
void cli_show_rip_non_passive_interface(struct vty *vty, struct lyd_node *dnode,
					bool show_defaults);
void cli_show_rip_redistribute(struct vty *vty, struct lyd_node *dnode,
			       bool show_defaults);
void cli_show_rip_route(struct vty *vty, struct lyd_node *dnode,
			bool show_defaults);
void cli_show_rip_timers(struct vty *vty, struct lyd_node *dnode,
			 bool show_defaults);
void cli_show_rip_version(struct vty *vty, struct lyd_node *dnode,
			  bool show_defaults);
void cli_show_ip_rip_split_horizon(struct vty *vty, struct lyd_node *dnode,
				   bool show_defaults);
void cli_show_ip_rip_v2_broadcast(struct vty *vty, struct lyd_node *dnode,
				  bool show_defaults);
void cli_show_ip_rip_receive_version(struct vty *vty, struct lyd_node *dnode,
				     bool show_defaults);
void cli_show_ip_rip_send_version(struct vty *vty, struct lyd_node *dnode,
				  bool show_defaults);
void cli_show_ip_rip_authentication_scheme(struct vty *vty,
					   struct lyd_node *dnode,
					   bool show_defaults);
void cli_show_ip_rip_authentication_string(struct vty *vty,
					   struct lyd_node *dnode,
					   bool show_defaults);
void cli_show_ip_rip_authentication_key_chain(struct vty *vty,
					      struct lyd_node *dnode,
					      bool show_defaults);

/* Notifications. */
extern void ripd_notif_send_auth_type_failure(const char *ifname);
extern void ripd_notif_send_auth_failure(const char *ifname);

#endif /* _FRR_RIP_NB_H_ */