blob: a8d5168188a7a741b7838302f0c34d8feae5da8b [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * OSPF network related functions
3 * Copyright (C) 1999 Toshiaki Takada
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "thread.h"
26#include "linklist.h"
27#include "prefix.h"
28#include "if.h"
29#include "sockunion.h"
30#include "log.h"
31#include "sockopt.h"
pauledd7c242003-06-04 13:59:38 +000032#include "privs.h"
33
34extern struct zebra_privs_t ospfd_privs;
paul718e3742002-12-13 20:15:29 +000035
36#include "ospfd/ospfd.h"
37#include "ospfd/ospf_network.h"
38#include "ospfd/ospf_interface.h"
39#include "ospfd/ospf_asbr.h"
40#include "ospfd/ospf_lsa.h"
41#include "ospfd/ospf_lsdb.h"
42#include "ospfd/ospf_neighbor.h"
43#include "ospfd/ospf_packet.h"
44
pauledd7c242003-06-04 13:59:38 +000045
46
paul718e3742002-12-13 20:15:29 +000047/* Join to the OSPF ALL SPF ROUTERS multicast group. */
48int
49ospf_if_add_allspfrouters (struct ospf *top, struct prefix *p,
50 unsigned int ifindex)
51{
52 int ret;
53
54 ret = setsockopt_multicast_ipv4 (top->fd, IP_ADD_MEMBERSHIP,
55 p->u.prefix4, htonl (OSPF_ALLSPFROUTERS),
56 ifindex);
57 if (ret < 0)
58 zlog_warn ("can't setsockopt IP_ADD_MEMBERSHIP (AllSPFRouters): %s",
ajs6099b3b2004-11-20 02:06:59 +000059 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000060 else
61 zlog_info ("interface %s join AllSPFRouters Multicast group.",
62 inet_ntoa (p->u.prefix4));
63
64 return ret;
65}
66
67int
68ospf_if_drop_allspfrouters (struct ospf *top, struct prefix *p,
69 unsigned int ifindex)
70{
71 int ret;
72
73 ret = setsockopt_multicast_ipv4 (top->fd, IP_DROP_MEMBERSHIP,
74 p->u.prefix4, htonl (OSPF_ALLSPFROUTERS),
75 ifindex);
76 if (ret < 0)
77 zlog_warn("can't setsockopt IP_DROP_MEMBERSHIP (AllSPFRouters): %s",
ajs6099b3b2004-11-20 02:06:59 +000078 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000079 else
80 zlog_info ("interface %s leave AllSPFRouters Multicast group.",
81 inet_ntoa (p->u.prefix4));
82
83 return ret;
84}
85
86/* Join to the OSPF ALL Designated ROUTERS multicast group. */
87int
88ospf_if_add_alldrouters (struct ospf *top, struct prefix *p, unsigned int
89 ifindex)
90{
91 int ret;
92
93 ret = setsockopt_multicast_ipv4 (top->fd, IP_ADD_MEMBERSHIP,
94 p->u.prefix4, htonl (OSPF_ALLDROUTERS),
95 ifindex);
96 if (ret < 0)
97 zlog_warn ("can't setsockopt IP_ADD_MEMBERSHIP (AllDRouters): %s",
ajs6099b3b2004-11-20 02:06:59 +000098 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +000099 else
100 zlog_info ("interface %s join AllDRouters Multicast group.",
101 inet_ntoa (p->u.prefix4));
102
103 return ret;
104}
105
106int
107ospf_if_drop_alldrouters (struct ospf *top, struct prefix *p, unsigned int
108 ifindex)
109{
110 int ret;
111
112 ret = setsockopt_multicast_ipv4 (top->fd, IP_DROP_MEMBERSHIP,
113 p->u.prefix4, htonl (OSPF_ALLDROUTERS),
114 ifindex);
115 if (ret < 0)
116 zlog_warn ("can't setsockopt IP_DROP_MEMBERSHIP (AllDRouters): %s",
ajs6099b3b2004-11-20 02:06:59 +0000117 safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000118 else
119 zlog_info ("interface %s leave AllDRouters Multicast group.",
120 inet_ntoa (p->u.prefix4));
121
122 return ret;
123}
124
125int
126ospf_if_ipmulticast (struct ospf *top, struct prefix *p, unsigned int ifindex)
127{
128 u_char val;
129 int ret, len;
130
131 val = 0;
132 len = sizeof (val);
133
134 /* Prevent receiving self-origined multicast packets. */
135 ret = setsockopt (top->fd, IPPROTO_IP, IP_MULTICAST_LOOP, (void *)&val, len);
136 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +0000137 zlog_warn ("can't setsockopt IP_MULTICAST_LOOP(0): %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000138
139 /* Explicitly set multicast ttl to 1 -- endo. */
140 val = 1;
141 ret = setsockopt (top->fd, IPPROTO_IP, IP_MULTICAST_TTL, (void *)&val, len);
142 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +0000143 zlog_warn ("can't setsockopt IP_MULTICAST_TTL(1): %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000144
145 ret = setsockopt_multicast_ipv4 (top->fd, IP_MULTICAST_IF,
146 p->u.prefix4, 0, ifindex);
147 if (ret < 0)
ajs6099b3b2004-11-20 02:06:59 +0000148 zlog_warn ("can't setsockopt IP_MULTICAST_IF: %s", safe_strerror (errno));
paul718e3742002-12-13 20:15:29 +0000149
150 return ret;
151}
152
153int
154ospf_sock_init (void)
155{
156 int ospf_sock;
gdtf4436f72004-12-09 14:49:51 +0000157 /*
158 * XXX warning: unused variable `tos'
159 * tos should be ifdefed similarly to usage
160 */
paul718e3742002-12-13 20:15:29 +0000161 int ret, tos, hincl = 1;
162
pauledd7c242003-06-04 13:59:38 +0000163 if ( ospfd_privs.change (ZPRIVS_RAISE) )
164 zlog_err ("ospf_sock_init: could not raise privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000165 safe_strerror (errno) );
pauledd7c242003-06-04 13:59:38 +0000166
paul718e3742002-12-13 20:15:29 +0000167 ospf_sock = socket (AF_INET, SOCK_RAW, IPPROTO_OSPFIGP);
168 if (ospf_sock < 0)
169 {
pauledd7c242003-06-04 13:59:38 +0000170 if ( ospfd_privs.change (ZPRIVS_LOWER) )
171 zlog_err ("ospf_sock_init: could not lower privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000172 safe_strerror (errno) );
173 zlog_err ("ospf_read_sock_init: socket: %s", safe_strerror (errno));
paulb1809be2003-10-24 00:49:17 +0000174 exit(-1);
paul718e3742002-12-13 20:15:29 +0000175 }
pauledd7c242003-06-04 13:59:38 +0000176
paul5bd41892004-05-05 17:29:24 +0000177#ifdef IP_HDRINCL
178 /* we will include IP header with packet */
179 ret = setsockopt (ospf_sock, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof (hincl));
180 if (ret < 0)
181 {
182 if ( ospfd_privs.change (ZPRIVS_LOWER) )
183 zlog_err ("ospf_sock_init: could not lower privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000184 safe_strerror (errno) );
paul5bd41892004-05-05 17:29:24 +0000185 zlog_warn ("Can't set IP_HDRINCL option");
186 }
187#elif defined (IPTOS_PREC_INTERNETCONTROL)
188#warning "IP_HDRINCL not available on this system"
189#warning "using IPTOS_PREC_INTERNETCONTROL"
paul718e3742002-12-13 20:15:29 +0000190 /* Set precedence field. */
paul718e3742002-12-13 20:15:29 +0000191 tos = IPTOS_PREC_INTERNETCONTROL;
192 ret = setsockopt (ospf_sock, IPPROTO_IP, IP_TOS,
193 (char *) &tos, sizeof (int));
194 if (ret < 0)
195 {
pauledd7c242003-06-04 13:59:38 +0000196 if ( ospfd_privs.change (ZPRIVS_LOWER) )
197 zlog_err ("ospf_sock_init: could not lower privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000198 safe_strerror (errno) );
paul718e3742002-12-13 20:15:29 +0000199 zlog_warn ("can't set sockopt IP_TOS %d to socket %d", tos, ospf_sock);
200 close (ospf_sock); /* Prevent sd leak. */
201 return ret;
202 }
paul5bd41892004-05-05 17:29:24 +0000203#else /* !IPTOS_PREC_INTERNETCONTROL */
204#warning "IP_HDRINCL not available, nor is IPTOS_PREC_INTERNETCONTROL"
205 zlog_warn ("IP_HDRINCL option not available");
206#endif /* IP_HDRINCL */
paul718e3742002-12-13 20:15:29 +0000207
paulac191232004-10-22 12:05:17 +0000208 ret = setsockopt_ifindex (AF_INET, ospf_sock, 1);
209
paul2dd8bb42004-07-23 15:13:48 +0000210 if (ret < 0)
211 zlog_warn ("Can't set pktinfo option");
pauledd7c242003-06-04 13:59:38 +0000212
213 if (ospfd_privs.change (ZPRIVS_LOWER))
214 {
215 zlog_err ("ospf_sock_init: could not lower privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000216 safe_strerror (errno) );
pauledd7c242003-06-04 13:59:38 +0000217 }
paul718e3742002-12-13 20:15:29 +0000218
219 return ospf_sock;
220}