blob: e5589aea40bfa18bf15fbbc8ac43b3e21d7d96c9 [file] [log] [blame]
Paul Jakma8bc98052007-08-08 11:19:27 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_pfpacket.c
3 *
4 * Copyright (C) 2001,2002 Sampo Saaristo
5 * Tampere University of Technology
6 * Institute of Communications Engineering
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public Licenseas published by the Free
10 * Software Foundation; either version 2 of the License, or (at your option)
11 * any later version.
12 *
13 * This program is distributed in the hope that it will be useful,but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 */
22
23#include <zebra.h>
David Lamparter745bf052010-02-02 21:49:35 +010024#if ISIS_METHOD == ISIS_METHOD_PFPACKET
Paul Jakma8bc98052007-08-08 11:19:27 +000025#include <net/ethernet.h> /* the L2 protocols */
26#include <netpacket/packet.h>
27
28#include "log.h"
29#include "stream.h"
30#include "if.h"
31
32#include "isisd/dict.h"
33#include "isisd/include-netbsd/iso.h"
34#include "isisd/isis_constants.h"
35#include "isisd/isis_common.h"
36#include "isisd/isis_circuit.h"
37#include "isisd/isis_flags.h"
38#include "isisd/isisd.h"
39#include "isisd/isis_constants.h"
40#include "isisd/isis_circuit.h"
41#include "isisd/isis_network.h"
42
43#include "privs.h"
44
45extern struct zebra_privs_t isisd_privs;
46
47/*
48 * Table 9 - Architectural constants for use with ISO 8802 subnetworks
49 * ISO 10589 - 8.4.8
50 */
51
52u_char ALL_L1_ISS[6] = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x14 };
53u_char ALL_L2_ISS[6] = { 0x01, 0x80, 0xC2, 0x00, 0x00, 0x15 };
54u_char ALL_ISS[6] = { 0x09, 0x00, 0x2B, 0x00, 0x00, 0x05 };
55u_char ALL_ESS[6] = { 0x09, 0x00, 0x2B, 0x00, 0x00, 0x04 };
56
57static char discard_buff[8192];
58static char sock_buff[8192];
59
60/*
61 * if level is 0 we are joining p2p multicast
62 * FIXME: and the p2p multicast being ???
63 */
64static int
65isis_multicast_join (int fd, int registerto, int if_num)
66{
67 struct packet_mreq mreq;
68
69 memset (&mreq, 0, sizeof (mreq));
70 mreq.mr_ifindex = if_num;
71 if (registerto)
72 {
73 mreq.mr_type = PACKET_MR_MULTICAST;
74 mreq.mr_alen = ETH_ALEN;
75 if (registerto == 1)
76 memcpy (&mreq.mr_address, ALL_L1_ISS, ETH_ALEN);
77 else if (registerto == 2)
78 memcpy (&mreq.mr_address, ALL_L2_ISS, ETH_ALEN);
79 else if (registerto == 3)
80 memcpy (&mreq.mr_address, ALL_ISS, ETH_ALEN);
81 else
82 memcpy (&mreq.mr_address, ALL_ESS, ETH_ALEN);
83
84 }
85 else
86 {
87 mreq.mr_type = PACKET_MR_ALLMULTI;
88 }
89#ifdef EXTREME_DEBUG
90 zlog_debug ("isis_multicast_join(): fd=%d, reg_to=%d, if_num=%d, "
91 "address = %02x:%02x:%02x:%02x:%02x:%02x",
92 fd, registerto, if_num, mreq.mr_address[0], mreq.mr_address[1],
93 mreq.mr_address[2], mreq.mr_address[3], mreq.mr_address[4],
94 mreq.mr_address[5]);
95#endif /* EXTREME_DEBUG */
96 if (setsockopt (fd, SOL_PACKET, PACKET_ADD_MEMBERSHIP, &mreq,
97 sizeof (struct packet_mreq)))
98 {
99 zlog_warn ("isis_multicast_join(): setsockopt(): %s", safe_strerror (errno));
100 return ISIS_WARNING;
101 }
102
103 return ISIS_OK;
104}
105
106static int
107open_packet_socket (struct isis_circuit *circuit)
108{
109 struct sockaddr_ll s_addr;
110 int fd, retval = ISIS_OK;
111
112 fd = socket (PF_PACKET, SOCK_DGRAM, htons (ETH_P_ALL));
113 if (fd < 0)
114 {
115 zlog_warn ("open_packet_socket(): socket() failed %s",
116 safe_strerror (errno));
117 return ISIS_WARNING;
118 }
119
120 /*
121 * Bind to the physical interface
122 */
123 memset (&s_addr, 0, sizeof (struct sockaddr_ll));
124 s_addr.sll_family = AF_PACKET;
125 s_addr.sll_protocol = htons (ETH_P_ALL);
126 s_addr.sll_ifindex = circuit->interface->ifindex;
127
128 if (bind (fd, (struct sockaddr *) (&s_addr),
129 sizeof (struct sockaddr_ll)) < 0)
130 {
131 zlog_warn ("open_packet_socket(): bind() failed: %s", safe_strerror (errno));
132 return ISIS_WARNING;
133 }
134
135 circuit->fd = fd;
136
Josh Bailey3f045a02012-03-24 08:35:20 -0700137 if (if_is_broadcast (circuit->interface))
Paul Jakma8bc98052007-08-08 11:19:27 +0000138 {
139 /*
140 * Join to multicast groups
141 * according to
142 * 8.4.2 - Broadcast subnetwork IIH PDUs
143 * FIXME: is there a case only one will fail??
144 */
David Lamparter318c8042012-11-27 01:10:29 +0000145 /* joining ALL_L1_ISS */
146 retval |= isis_multicast_join (circuit->fd, 1,
Josh Bailey3f045a02012-03-24 08:35:20 -0700147 circuit->interface->ifindex);
David Lamparter318c8042012-11-27 01:10:29 +0000148 /* joining ALL_L2_ISS */
149 retval |= isis_multicast_join (circuit->fd, 2,
Josh Bailey3f045a02012-03-24 08:35:20 -0700150 circuit->interface->ifindex);
151 /* joining ALL_ISS (used in RFC 5309 p2p-over-lan as well) */
David Lamparter318c8042012-11-27 01:10:29 +0000152 retval |= isis_multicast_join (circuit->fd, 3,
Josh Bailey3f045a02012-03-24 08:35:20 -0700153 circuit->interface->ifindex);
Paul Jakma8bc98052007-08-08 11:19:27 +0000154 }
155 else
156 {
157 retval =
Josh Bailey3f045a02012-03-24 08:35:20 -0700158 isis_multicast_join (circuit->fd, 0, circuit->interface->ifindex);
Paul Jakma8bc98052007-08-08 11:19:27 +0000159 }
160
161 return retval;
162}
163
164/*
165 * Create the socket and set the tx/rx funcs
166 */
167int
168isis_sock_init (struct isis_circuit *circuit)
169{
170 int retval = ISIS_OK;
171
172 if (isisd_privs.change (ZPRIVS_RAISE))
173 zlog_err ("%s: could not raise privs, %s", __func__, safe_strerror (errno));
174
175 retval = open_packet_socket (circuit);
176
177 if (retval != ISIS_OK)
178 {
179 zlog_warn ("%s: could not initialize the socket", __func__);
180 goto end;
181 }
182
Josh Bailey3f045a02012-03-24 08:35:20 -0700183 /* Assign Rx and Tx callbacks are based on real if type */
184 if (if_is_broadcast (circuit->interface))
Paul Jakma8bc98052007-08-08 11:19:27 +0000185 {
186 circuit->tx = isis_send_pdu_bcast;
187 circuit->rx = isis_recv_pdu_bcast;
188 }
Josh Bailey3f045a02012-03-24 08:35:20 -0700189 else if (if_is_pointopoint (circuit->interface))
Paul Jakma8bc98052007-08-08 11:19:27 +0000190 {
191 circuit->tx = isis_send_pdu_p2p;
192 circuit->rx = isis_recv_pdu_p2p;
193 }
194 else
195 {
196 zlog_warn ("isis_sock_init(): unknown circuit type");
197 retval = ISIS_WARNING;
198 goto end;
199 }
200
201end:
202 if (isisd_privs.change (ZPRIVS_LOWER))
203 zlog_err ("%s: could not lower privs, %s", __func__, safe_strerror (errno));
204
205 return retval;
206}
207
208static inline int
209llc_check (u_char * llc)
210{
211 if (*llc != ISO_SAP || *(llc + 1) != ISO_SAP || *(llc + 2) != 3)
212 return 0;
213
214 return 1;
215}
216
217int
218isis_recv_pdu_bcast (struct isis_circuit *circuit, u_char * ssnpa)
219{
220 int bytesread, addr_len;
221 struct sockaddr_ll s_addr;
222 u_char llc[LLC_LEN];
223
224 addr_len = sizeof (s_addr);
225
226 memset (&s_addr, 0, sizeof (struct sockaddr_ll));
227
228 bytesread = recvfrom (circuit->fd, (void *) &llc,
229 LLC_LEN, MSG_PEEK,
230 (struct sockaddr *) &s_addr, (socklen_t *) &addr_len);
231
232 if (bytesread < 0)
233 {
Josh Bailey3f045a02012-03-24 08:35:20 -0700234 zlog_warn ("isis_recv_packet_bcast(): ifname %s, fd %d, bytesread %d, "
235 "recvfrom(): %s",
236 circuit->interface->name, circuit->fd, bytesread,
237 safe_strerror (errno));
Paul Jakma8bc98052007-08-08 11:19:27 +0000238 /* get rid of the packet */
Josh Bailey3f045a02012-03-24 08:35:20 -0700239 bytesread = recvfrom (circuit->fd, discard_buff, sizeof (discard_buff),
240 MSG_DONTWAIT, (struct sockaddr *) &s_addr,
241 (socklen_t *) &addr_len);
Paul Jakma8bc98052007-08-08 11:19:27 +0000242 return ISIS_WARNING;
243 }
244 /*
245 * Filtering by llc field, discard packets sent by this host (other circuit)
246 */
247 if (!llc_check (llc) || s_addr.sll_pkttype == PACKET_OUTGOING)
248 {
249 /* Read the packet into discard buff */
Josh Bailey3f045a02012-03-24 08:35:20 -0700250 bytesread = recvfrom (circuit->fd, discard_buff, sizeof (discard_buff),
251 MSG_DONTWAIT, (struct sockaddr *) &s_addr,
252 (socklen_t *) &addr_len);
Paul Jakma8bc98052007-08-08 11:19:27 +0000253 if (bytesread < 0)
Josh Bailey3f045a02012-03-24 08:35:20 -0700254 zlog_warn ("isis_recv_pdu_bcast(): recvfrom() failed");
Paul Jakma8bc98052007-08-08 11:19:27 +0000255 return ISIS_WARNING;
256 }
257
258 /* on lan we have to read to the static buff first */
Josh Bailey3f045a02012-03-24 08:35:20 -0700259 bytesread = recvfrom (circuit->fd, sock_buff, sizeof (sock_buff), MSG_DONTWAIT,
Paul Jakma8bc98052007-08-08 11:19:27 +0000260 (struct sockaddr *) &s_addr, (socklen_t *) &addr_len);
Josh Bailey3f045a02012-03-24 08:35:20 -0700261 if (bytesread < 0)
262 {
263 zlog_warn ("isis_recv_pdu_bcast(): recvfrom() failed");
264 return ISIS_WARNING;
265 }
Paul Jakma8bc98052007-08-08 11:19:27 +0000266
267 /* then we lose the LLC */
268 stream_write (circuit->rcv_stream, sock_buff + LLC_LEN, bytesread - LLC_LEN);
269
270 memcpy (ssnpa, &s_addr.sll_addr, s_addr.sll_halen);
271
272 return ISIS_OK;
273}
274
275int
276isis_recv_pdu_p2p (struct isis_circuit *circuit, u_char * ssnpa)
277{
278 int bytesread, addr_len;
279 struct sockaddr_ll s_addr;
280
281 memset (&s_addr, 0, sizeof (struct sockaddr_ll));
282 addr_len = sizeof (s_addr);
283
284 /* we can read directly to the stream */
285 bytesread = stream_recvfrom (circuit->rcv_stream, circuit->fd,
286 circuit->interface->mtu, 0,
287 (struct sockaddr *) &s_addr,
288 (socklen_t *) &addr_len);
289
290 if (s_addr.sll_pkttype == PACKET_OUTGOING)
291 {
292 /* Read the packet into discard buff */
Josh Bailey3f045a02012-03-24 08:35:20 -0700293 bytesread = recvfrom (circuit->fd, discard_buff, sizeof (discard_buff),
294 MSG_DONTWAIT, (struct sockaddr *) &s_addr,
295 (socklen_t *) &addr_len);
Paul Jakma8bc98052007-08-08 11:19:27 +0000296 if (bytesread < 0)
Josh Bailey3f045a02012-03-24 08:35:20 -0700297 zlog_warn ("isis_recv_pdu_p2p(): recvfrom() failed");
Paul Jakma8bc98052007-08-08 11:19:27 +0000298 return ISIS_WARNING;
299 }
300
301 /* If we don't have protocol type 0x00FE which is
302 * ISO over GRE we exit with pain :)
303 */
304 if (ntohs (s_addr.sll_protocol) != 0x00FE)
305 {
306 zlog_warn ("isis_recv_pdu_p2p(): protocol mismatch(): %X",
307 ntohs (s_addr.sll_protocol));
308 return ISIS_WARNING;
309 }
310
311 memcpy (ssnpa, &s_addr.sll_addr, s_addr.sll_halen);
312
313 return ISIS_OK;
314}
315
316int
317isis_send_pdu_bcast (struct isis_circuit *circuit, int level)
318{
Josh Bailey3f045a02012-03-24 08:35:20 -0700319 struct msghdr msg;
320 struct iovec iov[2];
321
Paul Jakma8bc98052007-08-08 11:19:27 +0000322 /* we need to do the LLC in here because of P2P circuits, which will
323 * not need it
324 */
325 int written = 1;
326 struct sockaddr_ll sa;
327
328 stream_set_getp (circuit->snd_stream, 0);
329 memset (&sa, 0, sizeof (struct sockaddr_ll));
330 sa.sll_family = AF_PACKET;
331 sa.sll_protocol = htons (stream_get_endp (circuit->snd_stream) + LLC_LEN);
332 sa.sll_ifindex = circuit->interface->ifindex;
333 sa.sll_halen = ETH_ALEN;
Josh Bailey3f045a02012-03-24 08:35:20 -0700334 /* RFC5309 section 4.1 recommends ALL_ISS */
335 if (circuit->circ_type == CIRCUIT_T_P2P)
336 memcpy (&sa.sll_addr, ALL_ISS, ETH_ALEN);
337 else if (level == 1)
Paul Jakma8bc98052007-08-08 11:19:27 +0000338 memcpy (&sa.sll_addr, ALL_L1_ISS, ETH_ALEN);
339 else
340 memcpy (&sa.sll_addr, ALL_L2_ISS, ETH_ALEN);
341
342 /* on a broadcast circuit */
343 /* first we put the LLC in */
344 sock_buff[0] = 0xFE;
345 sock_buff[1] = 0xFE;
346 sock_buff[2] = 0x03;
347
Josh Bailey3f045a02012-03-24 08:35:20 -0700348 memset (&msg, 0, sizeof (msg));
349 msg.msg_name = &sa;
350 msg.msg_namelen = sizeof (struct sockaddr_ll);
351 msg.msg_iov = iov;
352 msg.msg_iovlen = 2;
353 iov[0].iov_base = sock_buff;
354 iov[0].iov_len = LLC_LEN;
355 iov[1].iov_base = circuit->snd_stream->data;
356 iov[1].iov_len = stream_get_endp (circuit->snd_stream);
Paul Jakma8bc98052007-08-08 11:19:27 +0000357
Josh Bailey3f045a02012-03-24 08:35:20 -0700358 written = sendmsg (circuit->fd, &msg, 0);
Paul Jakma8bc98052007-08-08 11:19:27 +0000359
360 return ISIS_OK;
361}
362
363int
364isis_send_pdu_p2p (struct isis_circuit *circuit, int level)
365{
Paul Jakma8bc98052007-08-08 11:19:27 +0000366 int written = 1;
367 struct sockaddr_ll sa;
368
369 stream_set_getp (circuit->snd_stream, 0);
370 memset (&sa, 0, sizeof (struct sockaddr_ll));
371 sa.sll_family = AF_PACKET;
372 sa.sll_protocol = htons (stream_get_endp (circuit->snd_stream) + LLC_LEN);
373 sa.sll_ifindex = circuit->interface->ifindex;
374 sa.sll_halen = ETH_ALEN;
375 if (level == 1)
376 memcpy (&sa.sll_addr, ALL_L1_ISS, ETH_ALEN);
377 else
378 memcpy (&sa.sll_addr, ALL_L2_ISS, ETH_ALEN);
379
380
381 /* lets try correcting the protocol */
382 sa.sll_protocol = htons (0x00FE);
383 written = sendto (circuit->fd, circuit->snd_stream->data,
384 stream_get_endp (circuit->snd_stream), 0,
385 (struct sockaddr *) &sa,
386 sizeof (struct sockaddr_ll));
387
388 return ISIS_OK;
389}
David Lamparter745bf052010-02-02 21:49:35 +0100390
391#endif /* ISIS_METHOD == ISIS_METHOD_PFPACKET */