create_icmp6_socket.c 879 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * create raw socket for icmp (IPv6 version) protocol test permission
  6. * and drop root privileges if running setuid
  7. *
  8. */
  9. #include <sys/types.h>
  10. #include <netdb.h>
  11. #include <sys/socket.h>
  12. #include <errno.h>
  13. #include <unistd.h>
  14. #include "libbb.h"
  15. #ifdef CONFIG_FEATURE_IPV6
  16. int create_icmp6_socket(void)
  17. {
  18. struct protoent *proto;
  19. int sock;
  20. proto = getprotobyname("ipv6-icmp");
  21. /* if getprotobyname failed, just silently force
  22. * proto->p_proto to have the correct value for "ipv6-icmp" */
  23. if ((sock = socket(AF_INET6, SOCK_RAW,
  24. (proto ? proto->p_proto : IPPROTO_ICMPV6))) < 0) {
  25. if (errno == EPERM)
  26. bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
  27. else
  28. bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket);
  29. }
  30. /* drop root privs if running setuid */
  31. xsetuid(getuid());
  32. return sock;
  33. }
  34. #endif