clientsocket.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * clientsocket.c -- DHCP client socket creation
  4. *
  5. * udhcp client
  6. *
  7. * Russ Dill <Russ.Dill@asu.edu> July 2001
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. */
  23. #include "common.h"
  24. #include "dhcpd.h"
  25. #include "dhcpc.h"
  26. //#include <features.h>
  27. #include <asm/types.h>
  28. #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
  29. #include <netpacket/packet.h>
  30. #include <net/ethernet.h>
  31. #else
  32. #include <linux/if_packet.h>
  33. #include <linux/if_ether.h>
  34. #endif
  35. #include <linux/filter.h>
  36. int FAST_FUNC udhcp_raw_socket(int ifindex)
  37. {
  38. int fd;
  39. struct sockaddr_ll sock;
  40. /*
  41. * Comment:
  42. *
  43. * I've selected not to see LL header, so BPF doesn't see it, too.
  44. * The filter may also pass non-IP and non-ARP packets, but we do
  45. * a more complete check when receiving the message in userspace.
  46. *
  47. * and filter shamelessly stolen from:
  48. *
  49. * http://www.flamewarmaster.de/software/dhcpclient/
  50. *
  51. * There are a few other interesting ideas on that page (look under
  52. * "Motivation"). Use of netlink events is most interesting. Think
  53. * of various network servers listening for events and reconfiguring.
  54. * That would obsolete sending HUP signals and/or make use of restarts.
  55. *
  56. * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
  57. * License: GPL v2.
  58. *
  59. * TODO: make conditional?
  60. */
  61. #define SERVER_AND_CLIENT_PORTS ((67 << 16) + 68)
  62. static const struct sock_filter filter_instr[] = {
  63. /* check for udp */
  64. BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
  65. BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 2, 0), /* L5, L1, is UDP? */
  66. /* ugly check for arp on ethernet-like and IPv4 */
  67. BPF_STMT(BPF_LD|BPF_W|BPF_ABS, 2), /* L1: */
  68. BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 0x08000604, 3, 4), /* L3, L4 */
  69. /* skip IP header */
  70. BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), /* L5: */
  71. /* check udp source and destination ports */
  72. BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
  73. BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
  74. /* returns */
  75. BPF_STMT(BPF_RET|BPF_K, 0x0fffffff ), /* L3: pass */
  76. BPF_STMT(BPF_RET|BPF_K, 0), /* L4: reject */
  77. };
  78. static const struct sock_fprog filter_prog = {
  79. .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
  80. /* casting const away: */
  81. .filter = (struct sock_filter *) filter_instr,
  82. };
  83. log1("Opening raw socket on ifindex %d", ifindex); //log2?
  84. fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
  85. log1("Got raw socket fd %d", fd); //log2?
  86. if (SERVER_PORT == 67 && CLIENT_PORT == 68) {
  87. /* Use only if standard ports are in use */
  88. /* Ignoring error (kernel may lack support for this) */
  89. if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
  90. sizeof(filter_prog)) >= 0)
  91. log1("Attached filter to raw socket fd %d", fd); // log?
  92. }
  93. sock.sll_family = AF_PACKET;
  94. sock.sll_protocol = htons(ETH_P_IP);
  95. sock.sll_ifindex = ifindex;
  96. xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
  97. log1("Created raw socket");
  98. return fd;
  99. }