blob: 954db531935b919914348b13015f02c7c76d106d [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger7031f622006-05-08 03:20:50 +00002/*
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
Mike Frysinger7031f622006-05-08 03:20:50 +000024#include <features.h>
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +000025#if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined(_NEWLIB_VERSION)
Mike Frysinger7031f622006-05-08 03:20:50 +000026#include <netpacket/packet.h>
27#include <net/ethernet.h>
28#else
29#include <asm/types.h>
30#include <linux/if_packet.h>
31#include <linux/if_ether.h>
32#endif
Denis Vlasenkob76b9a42008-01-25 22:46:34 +000033#include <linux/filter.h>
Mike Frysinger7031f622006-05-08 03:20:50 +000034
Mike Frysinger7031f622006-05-08 03:20:50 +000035#include "common.h"
36
Denis Vlasenkob76b9a42008-01-25 22:46:34 +000037#define SERVER_AND_CLIENT_PORTS ((SERVER_PORT << 16) + CLIENT_PORT)
Mike Frysinger7031f622006-05-08 03:20:50 +000038
39int raw_socket(int ifindex)
40{
41 int fd;
42 struct sockaddr_ll sock;
43
Denis Vlasenkob76b9a42008-01-25 22:46:34 +000044 /*
45 * Comment:
46 *
47 * I've selected not to see LL header, so BPF doesn't see it, too.
48 * The filter may also pass non-IP and non-ARP packets, but we do
49 * a more complete check when receiving the message in userspace.
50 *
51 * and filter shamelessly stolen from:
52 *
53 * http://www.flamewarmaster.de/software/dhcpclient/
54 *
55 * There are a few other interesting ideas on that page (look under
56 * "Motivation"). Use of netlink events is most interesting. Think
57 * of various network servers listening for events and reconfiguring.
58 * That would obsolete sending HUP signals and/or make use of restarts.
59 *
60 * Copyright: 2006, 2007 Stefan Rompf <sux@loplof.de>.
61 * License: GPL v2.
62 *
63 * TODO: make conditional?
64 */
65 static const struct sock_filter filter_instr[] = {
66 /* check for udp */
67 BPF_STMT(BPF_LD|BPF_B|BPF_ABS, 9),
68 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, IPPROTO_UDP, 2, 0), /* L5, L1, is UDP? */
69 /* ugly check for arp on ethernet-like and IPv4 */
70 BPF_STMT(BPF_LD|BPF_W|BPF_ABS, 2), /* L1: */
71 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, 0x08000604, 3, 4), /* L3, L4 */
72 /* skip IP header */
73 BPF_STMT(BPF_LDX|BPF_B|BPF_MSH, 0), /* L5: */
74 /* check udp source and destination ports */
75 BPF_STMT(BPF_LD|BPF_W|BPF_IND, 0),
76 BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, SERVER_AND_CLIENT_PORTS, 0, 1), /* L3, L4 */
77 /* returns */
78 BPF_STMT(BPF_RET|BPF_K, ~0UL), /* L3: pass */
79 BPF_STMT(BPF_RET|BPF_K, 0), /* L4: reject */
80 };
81 static const struct sock_fprog filter_prog = {
82 .len = sizeof(filter_instr) / sizeof(filter_instr[0]),
83 /* casting const away: */
84 .filter = (struct sock_filter *) filter_instr,
85 };
86
87 DEBUG("opening raw socket on ifindex %d", ifindex);
88
Bernhard Reutner-Fischer28fbd692006-12-19 16:31:09 +000089 fd = xsocket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP));
Denis Vlasenkob76b9a42008-01-25 22:46:34 +000090 DEBUG("got raw socket fd %d", fd);
91
92 /* Ignoring error (kernel may lack support for this) */
93 if (setsockopt(fd, SOL_SOCKET, SO_ATTACH_FILTER, &filter_prog,
94 sizeof(filter_prog)) >= 0)
95 DEBUG("attached filter to raw socket fd %d", fd);
Mike Frysinger7031f622006-05-08 03:20:50 +000096
97 sock.sll_family = AF_PACKET;
98 sock.sll_protocol = htons(ETH_P_IP);
99 sock.sll_ifindex = ifindex;
Bernhard Reutner-Fischer28fbd692006-12-19 16:31:09 +0000100 xbind(fd, (struct sockaddr *) &sock, sizeof(sock));
Denis Vlasenkob76b9a42008-01-25 22:46:34 +0000101 DEBUG("bound to raw socket fd %d", fd);
Mike Frysinger7031f622006-05-08 03:20:50 +0000102
103 return fd;
104}