]> git.proxmox.com Git - mirror_frr.git/blame - eigrpd/eigrp_reply.c
zebra: Allow ns delete to happen after under/over flow checks
[mirror_frr.git] / eigrpd / eigrp_reply.c
CommitLineData
7f57883e 1/*
b748db67 2 * Eigrp Sending and Receiving EIGRP Reply Packets.
7f57883e
DS
3 * Copyright (C) 2013-2016
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 * Frantisek Gazo
11 * Tomas Hvorkovy
12 * Martin Kontsek
13 * Lukas Koribsky
14 *
15 * This file is part of GNU Zebra.
16 *
17 * GNU Zebra is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2, or (at your option) any
20 * later version.
21 *
22 * GNU Zebra is distributed in the hope that it will be useful, but
23 * WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * General Public License for more details.
26 *
896014f4
DL
27 * You should have received a copy of the GNU General Public License along
28 * with this program; see the file COPYING; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
7f57883e
DS
30 */
31
32#include <zebra.h>
33
34#include "thread.h"
35#include "memory.h"
36#include "linklist.h"
37#include "prefix.h"
38#include "if.h"
39#include "table.h"
40#include "sockunion.h"
41#include "stream.h"
42#include "log.h"
43#include "sockopt.h"
44#include "checksum.h"
45#include "md5.h"
46#include "vty.h"
47#include "keychain.h"
48#include "plist.h"
49
50#include "eigrpd/eigrp_structs.h"
51#include "eigrpd/eigrpd.h"
52#include "eigrpd/eigrp_interface.h"
53#include "eigrpd/eigrp_neighbor.h"
54#include "eigrpd/eigrp_packet.h"
55#include "eigrpd/eigrp_zebra.h"
56#include "eigrpd/eigrp_vty.h"
57#include "eigrpd/eigrp_dump.h"
58#include "eigrpd/eigrp_macros.h"
59#include "eigrpd/eigrp_topology.h"
60#include "eigrpd/eigrp_fsm.h"
61#include "eigrpd/eigrp_memory.h"
8b0a80f1 62#include "eigrpd/eigrp_errors.h"
7f57883e 63
d62a17ae 64void eigrp_send_reply(struct eigrp_neighbor *nbr, struct eigrp_prefix_entry *pe)
7f57883e 65{
d62a17ae 66 struct eigrp_packet *ep;
d7c0a89a 67 uint16_t length = EIGRP_HEADER_LEN;
71b52ef2
DS
68 struct eigrp_interface *ei = nbr->ei;
69 struct eigrp *eigrp = ei->eigrp;
d62a17ae 70 struct eigrp_prefix_entry *pe2;
71
72 // TODO: Work in progress
73 /* Filtering */
74 /* get list from eigrp process */
d62a17ae 75 pe2 = XCALLOC(MTYPE_EIGRP_PREFIX_ENTRY,
76 sizeof(struct eigrp_prefix_entry));
77 memcpy(pe2, pe, sizeof(struct eigrp_prefix_entry));
71b52ef2 78
996c9314 79 if (eigrp_update_prefix_apply(eigrp, ei, EIGRP_FILTER_OUT,
71b52ef2 80 pe2->destination)) {
d62a17ae 81 zlog_info("REPLY SEND: Setting Metric to max");
82 pe2->reported_metric.delay = EIGRP_MAX_METRIC;
d62a17ae 83 }
84
85 /*
86 * End of filtering
87 */
88
9378632f 89 ep = eigrp_packet_new(EIGRP_PACKET_MTU(ei->ifp->mtu), nbr);
d62a17ae 90
91 /* Prepare EIGRP INIT UPDATE header */
71b52ef2
DS
92 eigrp_packet_header_init(EIGRP_OPC_REPLY, eigrp, ep->s, 0,
93 eigrp->sequence_number, 0);
d62a17ae 94
95 // encode Authentication TLV, if needed
b748db67
DS
96 if (ei->params.auth_type == EIGRP_AUTH_TYPE_MD5
97 && (ei->params.auth_keychain != NULL)) {
71b52ef2 98 length += eigrp_add_authTLV_MD5_to_stream(ep->s, ei);
d62a17ae 99 }
100
101
102 length += eigrp_add_internalTLV_to_stream(ep->s, pe2);
103
b748db67
DS
104 if ((ei->params.auth_type == EIGRP_AUTH_TYPE_MD5)
105 && (ei->params.auth_keychain != NULL)) {
71b52ef2 106 eigrp_make_md5_digest(ei, ep->s, EIGRP_AUTH_UPDATE_FLAG);
d62a17ae 107 }
108
109 /* EIGRP Checksum */
71b52ef2 110 eigrp_packet_checksum(ei, ep->s, length);
d62a17ae 111
112 ep->length = length;
113 ep->dst.s_addr = nbr->src.s_addr;
114
115 /*This ack number we await from neighbor*/
71b52ef2 116 ep->sequence_number = eigrp->sequence_number;
d62a17ae 117
118 /*Put packet to retransmission queue*/
f90f65a2 119 eigrp_fifo_push(nbr->retrans_queue, ep);
d62a17ae 120
121 if (nbr->retrans_queue->count == 1) {
122 eigrp_send_packet_reliably(nbr);
123 }
124
125 XFREE(MTYPE_EIGRP_PREFIX_ENTRY, pe2);
7f57883e
DS
126}
127
128/*EIGRP REPLY read function*/
d62a17ae 129void eigrp_reply_receive(struct eigrp *eigrp, struct ip *iph,
130 struct eigrp_header *eigrph, struct stream *s,
131 struct eigrp_interface *ei, int size)
7f57883e 132{
d62a17ae 133 struct eigrp_neighbor *nbr;
134 struct TLV_IPv4_Internal_type *tlv;
135
d7c0a89a 136 uint16_t type;
d62a17ae 137
138 /* increment statistics. */
139 ei->reply_in++;
140
141 /* get neighbor struct */
142 nbr = eigrp_nbr_get(ei, eigrph, iph);
143
144 /* neighbor must be valid, eigrp_nbr_get creates if none existed */
145 assert(nbr);
146
147 nbr->recv_sequence_number = ntohl(eigrph->sequence);
148
149 while (s->endp > s->getp) {
150 type = stream_getw(s);
b42a4a09
DS
151
152 if (type != EIGRP_TLV_IPv4_INT)
153 continue;
154
155 struct prefix dest_addr;
156
d7c0a89a 157 stream_set_getp(s, s->getp - sizeof(uint16_t));
b42a4a09
DS
158
159 tlv = eigrp_read_ipv4_tlv(s);
160
161 dest_addr.family = AF_INET;
162 dest_addr.u.prefix4 = tlv->destination;
163 dest_addr.prefixlen = tlv->prefix_length;
164 struct eigrp_prefix_entry *dest =
996c9314
LB
165 eigrp_topology_table_lookup_ipv4(eigrp->topology_table,
166 &dest_addr);
b42a4a09
DS
167 /*
168 * Destination must exists
169 */
170 if (!dest) {
171 char buf[PREFIX_STRLEN];
2fd89ed7 172
1c50c1c0
QY
173 flog_err(
174 EC_EIGRP_PACKET,
175 "%s: Received prefix %s which we do not know about",
176 __PRETTY_FUNCTION__,
177 prefix2str(&dest_addr, buf, sizeof(buf)));
2fd89ed7 178 eigrp_IPv4_InternalTLV_free(tlv);
b42a4a09
DS
179 continue;
180 }
181
182 struct eigrp_fsm_action_message msg;
183 struct eigrp_nexthop_entry *entry =
184 eigrp_prefix_entry_lookup(dest->entries, nbr);
185
996c9314 186 if (eigrp_update_prefix_apply(eigrp, ei, EIGRP_FILTER_IN,
b42a4a09
DS
187 &dest_addr)) {
188 tlv->metric.delay = EIGRP_MAX_METRIC;
d62a17ae 189 }
b42a4a09
DS
190 /*
191 * End of filtering
192 */
193
194 msg.packet_type = EIGRP_OPC_REPLY;
195 msg.eigrp = eigrp;
196 msg.data_type = EIGRP_INT;
197 msg.adv_router = nbr;
198 msg.metrics = tlv->metric;
199 msg.entry = entry;
200 msg.prefix = dest;
201 eigrp_fsm_event(&msg);
202
203 eigrp_IPv4_InternalTLV_free(tlv);
d62a17ae 204 }
205 eigrp_hello_send_ack(nbr);
7f57883e 206}