]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_query.c
Merge remote-tracking branch 'origin/stable/3.0'
[mirror_frr.git] / eigrpd / eigrp_query.c
CommitLineData
7f57883e
DS
1/*
2 * EIGRP Sending and Receiving EIGRP Query Packets.
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 *
896014f4
DL
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
7f57883e
DS
26 */
27
28#include <zebra.h>
29
30#include "thread.h"
31#include "memory.h"
32#include "linklist.h"
33#include "prefix.h"
34#include "if.h"
35#include "table.h"
36#include "sockunion.h"
37#include "stream.h"
38#include "log.h"
39#include "sockopt.h"
40#include "checksum.h"
41#include "md5.h"
42#include "vty.h"
43
44#include "eigrpd/eigrp_structs.h"
45#include "eigrpd/eigrpd.h"
46#include "eigrpd/eigrp_interface.h"
47#include "eigrpd/eigrp_neighbor.h"
48#include "eigrpd/eigrp_packet.h"
49#include "eigrpd/eigrp_zebra.h"
50#include "eigrpd/eigrp_vty.h"
51#include "eigrpd/eigrp_dump.h"
52#include "eigrpd/eigrp_macros.h"
53#include "eigrpd/eigrp_topology.h"
54#include "eigrpd/eigrp_fsm.h"
55#include "eigrpd/eigrp_memory.h"
56
57u_int32_t
58eigrp_query_send_all (struct eigrp *eigrp)
59{
60 struct eigrp_interface *iface;
61 struct listnode *node, *node2, *nnode2;
62 struct eigrp_prefix_entry *pe;
63 u_int32_t counter;
64
65 if (eigrp == NULL)
66 {
67 zlog_debug("EIGRP Routing Process not enabled");
68 return 0;
69 }
70
71 counter=0;
72 for (ALL_LIST_ELEMENTS_RO(eigrp->eiflist, node, iface))
73 {
74 eigrp_send_query(iface);
75 counter++;
76 }
77
78 for (ALL_LIST_ELEMENTS(eigrp->topology_changes_internalIPV4, node2, nnode2, pe))
79 {
80 if(pe->req_action & EIGRP_FSM_NEED_QUERY)
81 {
82 pe->req_action &= ~EIGRP_FSM_NEED_QUERY;
83 listnode_delete(eigrp->topology_changes_internalIPV4, pe);
84 }
85 }
86
87 return counter;
88}
89
90/*EIGRP QUERY read function*/
91void
92eigrp_query_receive (struct eigrp *eigrp, struct ip *iph, struct eigrp_header *eigrph,
93 struct stream * s, struct eigrp_interface *ei, int size)
94{
95 struct eigrp_neighbor *nbr;
96 struct TLV_IPv4_Internal_type *tlv;
97
98 u_int16_t type;
99
100 /* increment statistics. */
101 ei->query_in++;
102
103 /* get neighbor struct */
104 nbr = eigrp_nbr_get(ei, eigrph, iph);
105
106 /* neighbor must be valid, eigrp_nbr_get creates if none existed */
107 assert(nbr);
108
109 nbr->recv_sequence_number = ntohl(eigrph->sequence);
110
111 while (s->endp > s->getp)
112 {
113 type = stream_getw(s);
114 if (type == EIGRP_TLV_IPv4_INT)
115 {
057fad8d
DS
116 struct prefix_ipv4 dest_addr;
117
7f57883e
DS
118 stream_set_getp(s, s->getp - sizeof(u_int16_t));
119
120 tlv = eigrp_read_ipv4_tlv(s);
121
057fad8d
DS
122 dest_addr.family = AFI_IP;
123 dest_addr.prefix = tlv->destination;
124 dest_addr.prefixlen = tlv->prefix_length;
f9e5c9ca 125 struct eigrp_prefix_entry *dest =
057fad8d 126 eigrp_topology_table_lookup_ipv4(eigrp->topology_table, &dest_addr);
7f57883e
DS
127
128 /* If the destination exists (it should, but one never know)*/
129 if (dest != NULL)
130 {
131 struct eigrp_fsm_action_message *msg;
132 msg = XCALLOC(MTYPE_EIGRP_FSM_MSG,
f9e5c9ca
DS
133 sizeof(struct eigrp_fsm_action_message));
134 struct eigrp_neighbor_entry *entry =
135 eigrp_prefix_entry_lookup(dest->entries, nbr);
7f57883e
DS
136 msg->packet_type = EIGRP_OPC_QUERY;
137 msg->eigrp = eigrp;
138 msg->data_type = EIGRP_TLV_IPv4_INT;
139 msg->adv_router = nbr;
140 msg->data.ipv4_int_type = tlv;
141 msg->entry = entry;
142 msg->prefix = dest;
143 int event = eigrp_get_fsm_event(msg);
144 eigrp_fsm_event(msg, event);
145 }
146 eigrp_IPv4_InternalTLV_free (tlv);
147 }
148 }
149 eigrp_hello_send_ack(nbr);
150 eigrp_query_send_all(eigrp);
151 eigrp_update_send_all(eigrp,nbr->ei);
152}
153
154void
155eigrp_send_query (struct eigrp_interface *ei)
156{
157 struct eigrp_packet *ep;
158 u_int16_t length = EIGRP_HEADER_LEN;
159 struct listnode *node, *nnode, *node2, *nnode2;
160 struct eigrp_neighbor *nbr;
161 struct eigrp_prefix_entry *pe;
162 char has_tlv;
163
164 ep = eigrp_packet_new(ei->ifp->mtu);
165
166 /* Prepare EIGRP INIT UPDATE header */
167 eigrp_packet_header_init(EIGRP_OPC_QUERY, ei, ep->s, 0,
168 ei->eigrp->sequence_number, 0);
169
170 // encode Authentication TLV, if needed
f9e5c9ca
DS
171 if((IF_DEF_PARAMS (ei->ifp)->auth_type == EIGRP_AUTH_TYPE_MD5) &&
172 (IF_DEF_PARAMS (ei->ifp)->auth_keychain != NULL))
7f57883e
DS
173 {
174 length += eigrp_add_authTLV_MD5_to_stream(ep->s,ei);
175 }
176
177 has_tlv = 0;
178 for (ALL_LIST_ELEMENTS(ei->eigrp->topology_changes_internalIPV4, node, nnode, pe))
179 {
180 if(pe->req_action & EIGRP_FSM_NEED_QUERY)
181 {
182 length += eigrp_add_internalTLV_to_stream(ep->s, pe);
183 for (ALL_LIST_ELEMENTS(ei->nbrs, node2, nnode2, nbr))
184 {
f9e5c9ca
DS
185 if(nbr->state == EIGRP_NEIGHBOR_UP)
186 {
187 listnode_add(pe->rij, nbr);
7f57883e 188 has_tlv = 1;
f9e5c9ca 189 }
7f57883e
DS
190 }
191 }
192 }
193
194 if(!has_tlv)
195 {
196 eigrp_packet_free(ep);
197 return;
198 }
199
f9e5c9ca
DS
200 if((IF_DEF_PARAMS (ei->ifp)->auth_type == EIGRP_AUTH_TYPE_MD5) &&
201 (IF_DEF_PARAMS (ei->ifp)->auth_keychain != NULL))
7f57883e
DS
202 {
203 eigrp_make_md5_digest(ei,ep->s, EIGRP_AUTH_UPDATE_FLAG);
204 }
205
206 /* EIGRP Checksum */
f9e5c9ca
DS
207 eigrp_packet_checksum(ei, ep->s, length);
208
209 ep->length = length;
210 ep->dst.s_addr = htonl(EIGRP_MULTICAST_ADDRESS);
211
212 /*This ack number we await from neighbor*/
213 ep->sequence_number = ei->eigrp->sequence_number;
214
215 for (ALL_LIST_ELEMENTS(ei->nbrs, node2, nnode2, nbr))
216 {
217 if (nbr->state == EIGRP_NEIGHBOR_UP)
218 {
219 /*Put packet to retransmission queue*/
220 eigrp_fifo_push_head(nbr->retrans_queue, ep);
221
222 if (nbr->retrans_queue->count == 1)
223 {
224 eigrp_send_packet_reliably(nbr);
225 }
226 }
227 }
7f57883e 228}