2002-07-03 17:16:38 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2008-03-13 03:44:34 +05:30
|
|
|
* create raw socket for icmp (IPv6 version) protocol
|
2004-04-14 23:21:38 +05:30
|
|
|
* and drop root privileges if running setuid
|
2008-12-07 06:22:58 +05:30
|
|
|
*
|
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
2002-07-03 17:16:38 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2007-08-13 16:06:25 +05:30
|
|
|
#if ENABLE_FEATURE_IPV6
|
2008-06-27 08:22:20 +05:30
|
|
|
int FAST_FUNC create_icmp6_socket(void)
|
2002-07-03 17:16:38 +05:30
|
|
|
{
|
|
|
|
int sock;
|
2008-03-13 03:44:34 +05:30
|
|
|
#if 0
|
|
|
|
struct protoent *proto;
|
2002-07-03 17:16:38 +05:30
|
|
|
proto = getprotobyname("ipv6-icmp");
|
|
|
|
/* if getprotobyname failed, just silently force
|
|
|
|
* proto->p_proto to have the correct value for "ipv6-icmp" */
|
2007-03-03 06:06:35 +05:30
|
|
|
sock = socket(AF_INET6, SOCK_RAW,
|
|
|
|
(proto ? proto->p_proto : IPPROTO_ICMPV6));
|
2008-03-13 03:44:34 +05:30
|
|
|
#else
|
|
|
|
sock = socket(AF_INET6, SOCK_RAW, IPPROTO_ICMPV6);
|
|
|
|
#endif
|
2007-03-03 06:06:35 +05:30
|
|
|
if (sock < 0) {
|
2002-07-03 17:16:38 +05:30
|
|
|
if (errno == EPERM)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
|
2007-03-03 06:06:35 +05:30
|
|
|
bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket);
|
2002-07-03 17:16:38 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* drop root privs if running setuid */
|
2006-07-16 13:44:35 +05:30
|
|
|
xsetuid(getuid());
|
2002-07-03 17:16:38 +05:30
|
|
|
|
|
|
|
return sock;
|
|
|
|
}
|
|
|
|
#endif
|