blob: 982aca1bb6a824231c547abf3e4ab4eb699b73e7 [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
24#include <sys/types.h>
25#include <sys/socket.h>
26#include <unistd.h>
27#include <netinet/in.h>
28#include <features.h>
29#if (__GLIBC__ >= 2 && __GLIBC_MINOR >= 1) || defined _NEWLIB_VERSION
30#include <netpacket/packet.h>
31#include <net/ethernet.h>
32#else
33#include <asm/types.h>
34#include <linux/if_packet.h>
35#include <linux/if_ether.h>
36#endif
37
38#include "clientsocket.h"
39#include "common.h"
40
41
42int raw_socket(int ifindex)
43{
44 int fd;
45 struct sockaddr_ll sock;
46
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000047 DEBUG("Opening raw socket on ifindex %d", ifindex);
Mike Frysinger7031f622006-05-08 03:20:50 +000048 if ((fd = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP))) < 0) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000049 bb_perror_msg("socket");
Mike Frysinger7031f622006-05-08 03:20:50 +000050 return -1;
51 }
52
53 sock.sll_family = AF_PACKET;
54 sock.sll_protocol = htons(ETH_P_IP);
55 sock.sll_ifindex = ifindex;
56 if (bind(fd, (struct sockaddr *) &sock, sizeof(sock)) < 0) {
Denis Vlasenko3538b9a2006-09-06 18:36:50 +000057 bb_perror_msg("bind:");
Mike Frysinger7031f622006-05-08 03:20:50 +000058 close(fd);
59 return -1;
60 }
61
62 return fd;
63}