]>
git.proxmox.com Git - mirror_frr.git/blob - pimd/pim_ssmpingd.c
3 * Copyright (C) 2008 Everton da Silva Marques
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; see the file COPYING; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 #include "lib_errors.h"
30 #include "pim_ssmpingd.h"
34 static const char *const PIM_SSMPINGD_REPLY_GROUP
= "232.43.211.234";
36 enum { PIM_SSMPINGD_REQUEST
= 'Q', PIM_SSMPINGD_REPLY
= 'A' };
38 static void ssmpingd_read_on(struct ssmpingd_sock
*ss
);
40 void pim_ssmpingd_init(struct pim_instance
*pim
)
44 zassert(!pim
->ssmpingd_list
);
46 result
= inet_pton(AF_INET
, PIM_SSMPINGD_REPLY_GROUP
,
47 &pim
->ssmpingd_group_addr
);
52 void pim_ssmpingd_destroy(struct pim_instance
*pim
)
54 if (pim
->ssmpingd_list
)
55 list_delete(&pim
->ssmpingd_list
);
58 static struct ssmpingd_sock
*ssmpingd_find(struct pim_instance
*pim
,
59 struct in_addr source_addr
)
61 struct listnode
*node
;
62 struct ssmpingd_sock
*ss
;
64 if (!pim
->ssmpingd_list
)
67 for (ALL_LIST_ELEMENTS_RO(pim
->ssmpingd_list
, node
, ss
))
68 if (source_addr
.s_addr
== ss
->source_addr
.s_addr
)
74 static void ssmpingd_free(struct ssmpingd_sock
*ss
)
76 XFREE(MTYPE_PIM_SSMPINGD
, ss
);
79 static int ssmpingd_socket(struct in_addr addr
, int port
, int mttl
)
81 struct sockaddr_in sockaddr
;
84 fd
= socket(AF_INET
, SOCK_DGRAM
, IPPROTO_UDP
);
86 flog_err_sys(EC_LIB_SOCKET
,
87 "%s: could not create socket: errno=%d: %s",
88 __PRETTY_FUNCTION__
, errno
, safe_strerror(errno
));
92 sockaddr
.sin_family
= AF_INET
;
93 sockaddr
.sin_addr
= addr
;
94 sockaddr
.sin_port
= htons(port
);
96 if (bind(fd
, (struct sockaddr
*)&sockaddr
, sizeof(sockaddr
))) {
97 char addr_str
[INET_ADDRSTRLEN
];
98 pim_inet4_dump("<addr?>", addr
, addr_str
, sizeof(addr_str
));
100 "%s: bind(fd=%d,addr=%s,port=%d,len=%zu) failure: errno=%d: %s",
101 __PRETTY_FUNCTION__
, fd
, addr_str
, port
,
102 sizeof(sockaddr
), errno
, safe_strerror(errno
));
107 /* Needed to obtain destination address from recvmsg() */
109 #if defined(HAVE_IP_PKTINFO)
110 /* Linux and Solaris IP_PKTINFO */
112 if (setsockopt(fd
, IPPROTO_IP
, IP_PKTINFO
, &opt
, sizeof(opt
))) {
114 "%s: could not set IP_PKTINFO on socket fd=%d: errno=%d: %s",
115 __PRETTY_FUNCTION__
, fd
, errno
,
116 safe_strerror(errno
));
118 #elif defined(HAVE_IP_RECVDSTADDR)
119 /* BSD IP_RECVDSTADDR */
121 if (setsockopt(fd
, IPPROTO_IP
, IP_RECVDSTADDR
, &opt
,
124 "%s: could not set IP_RECVDSTADDR on socket fd=%d: errno=%d: %s",
125 __PRETTY_FUNCTION__
, fd
, errno
,
126 safe_strerror(errno
));
131 "%s %s: missing IP_PKTINFO and IP_RECVDSTADDR: unable to get dst addr from recvmsg()",
132 __FILE__
, __PRETTY_FUNCTION__
);
140 if (setsockopt(fd
, SOL_SOCKET
, SO_REUSEADDR
, (void *)&reuse
,
143 "%s: could not set Reuse Address Option on socket fd=%d: errno=%d: %s",
144 __PRETTY_FUNCTION__
, fd
, errno
,
145 safe_strerror(errno
));
151 if (setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_TTL
, (void *)&mttl
,
154 "%s: could not set multicast TTL=%d on socket fd=%d: errno=%d: %s",
155 __PRETTY_FUNCTION__
, mttl
, fd
, errno
,
156 safe_strerror(errno
));
161 if (setsockopt_ipv4_multicast_loop(fd
, 0)) {
163 "%s: could not disable Multicast Loopback Option on socket fd=%d: errno=%d: %s",
164 __PRETTY_FUNCTION__
, fd
, errno
, safe_strerror(errno
));
166 return PIM_SOCK_ERR_LOOP
;
169 if (setsockopt(fd
, IPPROTO_IP
, IP_MULTICAST_IF
, (void *)&addr
,
172 "%s: could not set Outgoing Interface Option on socket fd=%d: errno=%d: %s",
173 __PRETTY_FUNCTION__
, fd
, errno
, safe_strerror(errno
));
181 flags
= fcntl(fd
, F_GETFL
, 0);
184 "%s: could not get fcntl(F_GETFL,O_NONBLOCK) on socket fd=%d: errno=%d: %s",
185 __PRETTY_FUNCTION__
, fd
, errno
,
186 safe_strerror(errno
));
191 if (fcntl(fd
, F_SETFL
, flags
| O_NONBLOCK
)) {
193 "%s: could not set fcntl(F_SETFL,O_NONBLOCK) on socket fd=%d: errno=%d: %s",
194 __PRETTY_FUNCTION__
, fd
, errno
,
195 safe_strerror(errno
));
204 static void ssmpingd_delete(struct ssmpingd_sock
*ss
)
208 THREAD_OFF(ss
->t_sock_read
);
210 if (close(ss
->sock_fd
)) {
211 char source_str
[INET_ADDRSTRLEN
];
212 pim_inet4_dump("<src?>", ss
->source_addr
, source_str
,
215 "%s: failure closing ssmpingd sock_fd=%d for source %s: errno=%d: %s",
216 __PRETTY_FUNCTION__
, ss
->sock_fd
, source_str
, errno
,
217 safe_strerror(errno
));
221 listnode_delete(ss
->pim
->ssmpingd_list
, ss
);
225 static void ssmpingd_sendto(struct ssmpingd_sock
*ss
, const uint8_t *buf
,
226 int len
, struct sockaddr_in to
)
228 socklen_t tolen
= sizeof(to
);
231 sent
= sendto(ss
->sock_fd
, buf
, len
, MSG_DONTWAIT
,
232 (struct sockaddr
*)&to
, tolen
);
234 char to_str
[INET_ADDRSTRLEN
];
235 pim_inet4_dump("<to?>", to
.sin_addr
, to_str
, sizeof(to_str
));
238 "%s: sendto() failure to %s,%d: fd=%d len=%d: errno=%d: %s",
239 __PRETTY_FUNCTION__
, to_str
, ntohs(to
.sin_port
),
240 ss
->sock_fd
, len
, errno
, safe_strerror(errno
));
243 "%s: sendto() partial to %s,%d: fd=%d len=%d: sent=%d",
244 __PRETTY_FUNCTION__
, to_str
, ntohs(to
.sin_port
),
245 ss
->sock_fd
, len
, sent
);
250 static int ssmpingd_read_msg(struct ssmpingd_sock
*ss
)
252 struct interface
*ifp
;
253 struct sockaddr_in from
;
254 struct sockaddr_in to
;
255 socklen_t fromlen
= sizeof(from
);
256 socklen_t tolen
= sizeof(to
);
257 ifindex_t ifindex
= -1;
263 len
= pim_socket_recvfromto(ss
->sock_fd
, buf
, sizeof(buf
), &from
,
264 &fromlen
, &to
, &tolen
, &ifindex
);
266 char source_str
[INET_ADDRSTRLEN
];
267 pim_inet4_dump("<src?>", ss
->source_addr
, source_str
,
270 "%s: failure receiving ssmping for source %s on fd=%d: errno=%d: %s",
271 __PRETTY_FUNCTION__
, source_str
, ss
->sock_fd
, errno
,
272 safe_strerror(errno
));
276 ifp
= if_lookup_by_index(ifindex
, ss
->pim
->vrf_id
);
278 if (buf
[0] != PIM_SSMPINGD_REQUEST
) {
279 char source_str
[INET_ADDRSTRLEN
];
280 char from_str
[INET_ADDRSTRLEN
];
281 char to_str
[INET_ADDRSTRLEN
];
282 pim_inet4_dump("<src?>", ss
->source_addr
, source_str
,
284 pim_inet4_dump("<from?>", from
.sin_addr
, from_str
,
286 pim_inet4_dump("<to?>", to
.sin_addr
, to_str
, sizeof(to_str
));
288 "%s: bad ssmping type=%d from %s,%d to %s,%d on interface %s ifindex=%d fd=%d src=%s",
289 __PRETTY_FUNCTION__
, buf
[0], from_str
,
290 ntohs(from
.sin_port
), to_str
, ntohs(to
.sin_port
),
291 ifp
? ifp
->name
: "<iface?>", ifindex
, ss
->sock_fd
,
296 if (PIM_DEBUG_SSMPINGD
) {
297 char source_str
[INET_ADDRSTRLEN
];
298 char from_str
[INET_ADDRSTRLEN
];
299 char to_str
[INET_ADDRSTRLEN
];
300 pim_inet4_dump("<src?>", ss
->source_addr
, source_str
,
302 pim_inet4_dump("<from?>", from
.sin_addr
, from_str
,
304 pim_inet4_dump("<to?>", to
.sin_addr
, to_str
, sizeof(to_str
));
306 "%s: recv ssmping from %s,%d to %s,%d on interface %s ifindex=%d fd=%d src=%s",
307 __PRETTY_FUNCTION__
, from_str
, ntohs(from
.sin_port
),
308 to_str
, ntohs(to
.sin_port
),
309 ifp
? ifp
->name
: "<iface?>", ifindex
, ss
->sock_fd
,
313 buf
[0] = PIM_SSMPINGD_REPLY
;
316 ssmpingd_sendto(ss
, buf
, len
, from
);
318 /* multicast reply */
319 from
.sin_addr
= ss
->pim
->ssmpingd_group_addr
;
320 ssmpingd_sendto(ss
, buf
, len
, from
);
325 static int ssmpingd_sock_read(struct thread
*t
)
327 struct ssmpingd_sock
*ss
;
332 result
= ssmpingd_read_msg(ss
);
335 ssmpingd_read_on(ss
);
340 static void ssmpingd_read_on(struct ssmpingd_sock
*ss
)
342 thread_add_read(router
->master
, ssmpingd_sock_read
, ss
, ss
->sock_fd
,
346 static struct ssmpingd_sock
*ssmpingd_new(struct pim_instance
*pim
,
347 struct in_addr source_addr
)
349 struct ssmpingd_sock
*ss
;
352 if (!pim
->ssmpingd_list
) {
353 pim
->ssmpingd_list
= list_new();
354 pim
->ssmpingd_list
->del
= (void (*)(void *))ssmpingd_free
;
358 ssmpingd_socket(source_addr
, /* port: */ 4321, /* mTTL: */ 64);
360 char source_str
[INET_ADDRSTRLEN
];
361 pim_inet4_dump("<src?>", source_addr
, source_str
,
363 zlog_warn("%s: ssmpingd_socket() failure for source %s",
364 __PRETTY_FUNCTION__
, source_str
);
368 ss
= XCALLOC(MTYPE_PIM_SSMPINGD
, sizeof(*ss
));
371 ss
->sock_fd
= sock_fd
;
372 ss
->t_sock_read
= NULL
;
373 ss
->source_addr
= source_addr
;
374 ss
->creation
= pim_time_monotonic_sec();
377 listnode_add(pim
->ssmpingd_list
, ss
);
379 ssmpingd_read_on(ss
);
384 int pim_ssmpingd_start(struct pim_instance
*pim
, struct in_addr source_addr
)
386 struct ssmpingd_sock
*ss
;
388 ss
= ssmpingd_find(pim
, source_addr
);
390 /* silently ignore request to recreate entry */
395 char source_str
[INET_ADDRSTRLEN
];
396 pim_inet4_dump("<src?>", source_addr
, source_str
,
398 zlog_info("%s: starting ssmpingd for source %s",
399 __PRETTY_FUNCTION__
, source_str
);
402 ss
= ssmpingd_new(pim
, source_addr
);
404 char source_str
[INET_ADDRSTRLEN
];
405 pim_inet4_dump("<src?>", source_addr
, source_str
,
407 zlog_warn("%s: ssmpingd_new() failure for source %s",
408 __PRETTY_FUNCTION__
, source_str
);
415 int pim_ssmpingd_stop(struct pim_instance
*pim
, struct in_addr source_addr
)
417 struct ssmpingd_sock
*ss
;
419 ss
= ssmpingd_find(pim
, source_addr
);
421 char source_str
[INET_ADDRSTRLEN
];
422 pim_inet4_dump("<src?>", source_addr
, source_str
,
424 zlog_warn("%s: could not find ssmpingd for source %s",
425 __PRETTY_FUNCTION__
, source_str
);
430 char source_str
[INET_ADDRSTRLEN
];
431 pim_inet4_dump("<src?>", source_addr
, source_str
,
433 zlog_info("%s: stopping ssmpingd for source %s",
434 __PRETTY_FUNCTION__
, source_str
);