create_icmp_socket.c 828 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * create raw socket for icmp 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. int create_icmp_socket(void)
  16. {
  17. struct protoent *proto;
  18. int sock;
  19. proto = getprotobyname("icmp");
  20. /* if getprotobyname failed, just silently force
  21. * proto->p_proto to have the correct value for "icmp" */
  22. if ((sock = socket(AF_INET, SOCK_RAW,
  23. (proto ? proto->p_proto : 1))) < 0) { /* 1 == ICMP */
  24. if (errno == EPERM)
  25. bb_error_msg_and_die(bb_msg_perm_denied_are_you_root);
  26. else
  27. bb_perror_msg_and_die(bb_msg_can_not_create_raw_socket);
  28. }
  29. /* drop root privs if running setuid */
  30. xsetuid(getuid());
  31. return sock;
  32. }