]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrpd.c
*: rename zlog_fer -> flog_err
[mirror_frr.git] / eigrpd / eigrpd.c
1 /*
2 * EIGRP Daemon Program.
3 * Copyright (C) 2013-2014
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 *
11 * This file is part of GNU Zebra.
12 *
13 * GNU Zebra is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2, or (at your option) any
16 * later version.
17 *
18 * GNU Zebra is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; see the file COPYING; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
28 #include <zebra.h>
29
30 #include "thread.h"
31 #include "vty.h"
32 #include "command.h"
33 #include "linklist.h"
34 #include "prefix.h"
35 #include "table.h"
36 #include "if.h"
37 #include "memory.h"
38 #include "stream.h"
39 #include "log.h"
40 #include "sockunion.h" /* for inet_aton () */
41 #include "zclient.h"
42 #include "plist.h"
43 #include "sockopt.h"
44 #include "keychain.h"
45 #include "libfrr.h"
46 #include "lib_errors.h"
47
48 #include "eigrpd/eigrp_structs.h"
49 #include "eigrpd/eigrpd.h"
50 #include "eigrpd/eigrp_interface.h"
51 #include "eigrpd/eigrp_zebra.h"
52 #include "eigrpd/eigrp_vty.h"
53 #include "eigrpd/eigrp_neighbor.h"
54 #include "eigrpd/eigrp_packet.h"
55 #include "eigrpd/eigrp_network.h"
56 #include "eigrpd/eigrp_topology.h"
57 #include "eigrpd/eigrp_memory.h"
58
59 DEFINE_QOBJ_TYPE(eigrp)
60
61 static struct eigrp_master eigrp_master;
62
63 struct eigrp_master *eigrp_om;
64
65 static void eigrp_delete(struct eigrp *);
66 static struct eigrp *eigrp_new(const char *);
67 static void eigrp_add(struct eigrp *);
68
69 extern struct zclient *zclient;
70 extern struct in_addr router_id_zebra;
71
72
73 /*
74 * void eigrp_router_id_update(struct eigrp *eigrp)
75 *
76 * Description:
77 * update routerid associated with this instance of EIGRP.
78 * If the id changes, then call if_update for each interface
79 * to resync the topology database with all neighbors
80 *
81 * Select the router ID based on these priorities:
82 * 1. Statically assigned router ID is always the first choice.
83 * 2. If there is no statically assigned router ID, then try to stick
84 * with the most recent value, since changing router ID's is very
85 * disruptive.
86 * 3. Last choice: just go with whatever the zebra daemon recommends.
87 *
88 * Note:
89 * router id for EIGRP is really just a 32 bit number. Cisco historically
90 * displays it in dotted decimal notation, and will pickup an IP address
91 * from an interface so it can be 'auto-configed" to a uniqe value
92 *
93 * This does not work for IPv6, and to make the code simpler, its
94 * stored and processed internerall as a 32bit number
95 */
96 void eigrp_router_id_update(struct eigrp *eigrp)
97 {
98 struct vrf *vrf = vrf_lookup_by_id(VRF_DEFAULT);
99 struct interface *ifp;
100 uint32_t router_id, router_id_old;
101
102 router_id_old = eigrp->router_id;
103
104 if (eigrp->router_id_static != 0)
105 router_id = eigrp->router_id_static;
106
107 else if (eigrp->router_id != 0)
108 router_id = eigrp->router_id;
109
110 else
111 router_id = router_id_zebra.s_addr;
112
113 eigrp->router_id = router_id;
114 if (router_id_old != router_id) {
115 // if (IS_DEBUG_EIGRP_EVENT)
116 // zlog_debug("Router-ID[NEW:%s]: Update",
117 // inet_ntoa(eigrp->router_id));
118
119 /* update eigrp_interface's */
120 FOR_ALL_INTERFACES (vrf, ifp)
121 eigrp_if_update(ifp);
122 }
123 }
124
125 void eigrp_master_init()
126 {
127 struct timeval tv;
128
129 memset(&eigrp_master, 0, sizeof(struct eigrp_master));
130
131 eigrp_om = &eigrp_master;
132 eigrp_om->eigrp = list_new();
133
134 monotime(&tv);
135 eigrp_om->start_time = tv.tv_sec;
136 }
137
138 /* Allocate new eigrp structure. */
139 static struct eigrp *eigrp_new(const char *AS)
140 {
141 struct eigrp *eigrp = XCALLOC(MTYPE_EIGRP_TOP, sizeof(struct eigrp));
142 int eigrp_socket;
143
144 /* init information relevant to peers */
145 eigrp->vrid = 0;
146 eigrp->AS = atoi(AS);
147 eigrp->router_id = 0L;
148 eigrp->router_id_static = 0L;
149 eigrp->sequence_number = 1;
150
151 /*Configure default K Values for EIGRP Process*/
152 eigrp->k_values[0] = EIGRP_K1_DEFAULT;
153 eigrp->k_values[1] = EIGRP_K2_DEFAULT;
154 eigrp->k_values[2] = EIGRP_K3_DEFAULT;
155 eigrp->k_values[3] = EIGRP_K4_DEFAULT;
156 eigrp->k_values[4] = EIGRP_K5_DEFAULT;
157 eigrp->k_values[5] = EIGRP_K6_DEFAULT;
158
159 /* init internal data structures */
160 eigrp->eiflist = list_new();
161 eigrp->passive_interface_default = EIGRP_IF_ACTIVE;
162 eigrp->networks = eigrp_topology_new();
163
164 if ((eigrp_socket = eigrp_sock_init()) < 0) {
165 flog_err(LIB_ERR_SOCKET,
166 "eigrp_new: fatal error: eigrp_sock_init was unable to open a socket");
167 exit(1);
168 }
169
170 eigrp->fd = eigrp_socket;
171 eigrp->maxsndbuflen = getsockopt_so_sendbuf(eigrp->fd);
172
173 eigrp->ibuf = stream_new(EIGRP_PACKET_MAX_LEN + 1);
174
175 eigrp->t_read = NULL;
176 thread_add_read(master, eigrp_read, eigrp, eigrp->fd, &eigrp->t_read);
177 eigrp->oi_write_q = list_new();
178
179 eigrp->topology_table = route_table_init();
180
181 eigrp->neighbor_self = eigrp_nbr_new(NULL);
182 eigrp->neighbor_self->src.s_addr = INADDR_ANY;
183
184 eigrp->variance = EIGRP_VARIANCE_DEFAULT;
185 eigrp->max_paths = EIGRP_MAX_PATHS_DEFAULT;
186
187 eigrp->serno = 0;
188 eigrp->serno_last_update = 0;
189 eigrp->topology_changes_externalIPV4 = list_new();
190 eigrp->topology_changes_internalIPV4 = list_new();
191
192 eigrp->list[EIGRP_FILTER_IN] = NULL;
193 eigrp->list[EIGRP_FILTER_OUT] = NULL;
194
195 eigrp->prefix[EIGRP_FILTER_IN] = NULL;
196 eigrp->prefix[EIGRP_FILTER_OUT] = NULL;
197
198 eigrp->routemap[EIGRP_FILTER_IN] = NULL;
199 eigrp->routemap[EIGRP_FILTER_OUT] = NULL;
200
201 QOBJ_REG(eigrp, eigrp);
202 return eigrp;
203 }
204
205 static void eigrp_add(struct eigrp *eigrp)
206 {
207 listnode_add(eigrp_om->eigrp, eigrp);
208 }
209
210 static void eigrp_delete(struct eigrp *eigrp)
211 {
212 listnode_delete(eigrp_om->eigrp, eigrp);
213 }
214
215 struct eigrp *eigrp_get(const char *AS)
216 {
217 struct eigrp *eigrp;
218
219 eigrp = eigrp_lookup();
220 if (eigrp == NULL) {
221 eigrp = eigrp_new(AS);
222 eigrp_add(eigrp);
223 }
224
225 return eigrp;
226 }
227
228 /* Shut down the entire process */
229 void eigrp_terminate(void)
230 {
231 struct eigrp *eigrp;
232 struct listnode *node, *nnode;
233
234 /* shutdown already in progress */
235 if (CHECK_FLAG(eigrp_om->options, EIGRP_MASTER_SHUTDOWN))
236 return;
237
238 SET_FLAG(eigrp_om->options, EIGRP_MASTER_SHUTDOWN);
239
240 for (ALL_LIST_ELEMENTS(eigrp_om->eigrp, node, nnode, eigrp))
241 eigrp_finish(eigrp);
242
243 frr_fini();
244 }
245
246 void eigrp_finish(struct eigrp *eigrp)
247 {
248 eigrp_finish_final(eigrp);
249
250 /* eigrp being shut-down? If so, was this the last eigrp instance? */
251 if (CHECK_FLAG(eigrp_om->options, EIGRP_MASTER_SHUTDOWN)
252 && (listcount(eigrp_om->eigrp) == 0)) {
253 if (zclient) {
254 zclient_stop(zclient);
255 zclient_free(zclient);
256 }
257 exit(0);
258 }
259
260 return;
261 }
262
263 /* Final cleanup of eigrp instance */
264 void eigrp_finish_final(struct eigrp *eigrp)
265 {
266 struct eigrp_interface *ei;
267 struct eigrp_neighbor *nbr;
268 struct listnode *node, *nnode, *node2, *nnode2;
269
270 for (ALL_LIST_ELEMENTS(eigrp->eiflist, node, nnode, ei)) {
271 for (ALL_LIST_ELEMENTS(ei->nbrs, node2, nnode2, nbr))
272 eigrp_nbr_delete(nbr);
273 eigrp_if_free(ei, INTERFACE_DOWN_BY_FINAL);
274 }
275
276 THREAD_OFF(eigrp->t_write);
277 THREAD_OFF(eigrp->t_read);
278 close(eigrp->fd);
279
280 list_delete_and_null(&eigrp->eiflist);
281 list_delete_and_null(&eigrp->oi_write_q);
282
283 eigrp_topology_cleanup(eigrp->topology_table);
284 eigrp_topology_free(eigrp->topology_table);
285
286 eigrp_nbr_delete(eigrp->neighbor_self);
287
288 list_delete_and_null(&eigrp->topology_changes_externalIPV4);
289 list_delete_and_null(&eigrp->topology_changes_internalIPV4);
290
291 eigrp_delete(eigrp);
292
293 XFREE(MTYPE_EIGRP_TOP, eigrp);
294 }
295
296 /*Look for existing eigrp process*/
297 struct eigrp *eigrp_lookup(void)
298 {
299 if (listcount(eigrp_om->eigrp) == 0)
300 return NULL;
301
302 return listgetdata(listhead(eigrp_om->eigrp));
303 }