be5985f88cb488e6ee3c685539dc686410ae67a5
[oweals/busybox.git] / networking / udhcp / socket.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * socket.c -- DHCP server client/server socket creation
4  *
5  * udhcp client/server
6  * Copyright (C) 1999 Matthew Ramsay <matthewr@moreton.com.au>
7  *                      Chris Trew <ctrew@moreton.com.au>
8  *
9  * Rewrite by Russ Dill <Russ.Dill@asu.edu> July 2001
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #include <net/if.h>
27 #include <features.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 <asm/types.h>
33 #include <linux/if_packet.h>
34 #include <linux/if_ether.h>
35 #endif
36
37 #include "common.h"
38
39
40 int read_interface(const char *interface, int *ifindex, uint32_t *addr, uint8_t *arp)
41 {
42         int fd;
43         struct ifreq ifr;
44         struct sockaddr_in *our_ip;
45
46         memset(&ifr, 0, sizeof(ifr));
47         fd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
48         if (fd < 0) {
49                 bb_perror_msg("socket failed");
50                 return -1;
51         }
52
53         ifr.ifr_addr.sa_family = AF_INET;
54         strncpy(ifr.ifr_name, interface, sizeof(ifr.ifr_name));
55         if (addr) {
56                 if (ioctl(fd, SIOCGIFADDR, &ifr) != 0) {
57                         bb_perror_msg("SIOCGIFADDR failed (is interface %s "
58                                         "up and configured?)", interface);
59                         close(fd);
60                         return -1;
61                 }
62                 our_ip = (struct sockaddr_in *) &ifr.ifr_addr;
63                 *addr = our_ip->sin_addr.s_addr;
64                 DEBUG("%s (our ip) = %s", ifr.ifr_name, inet_ntoa(our_ip->sin_addr));
65         }
66
67         if (ifindex) {
68                 if (ioctl(fd, SIOCGIFINDEX, &ifr) != 0) {
69                         bb_perror_msg("SIOCGIFINDEX failed");
70                         close(fd);
71                         return -1;
72                 }
73                 DEBUG("adapter index %d", ifr.ifr_ifindex);
74                 *ifindex = ifr.ifr_ifindex;
75         }
76
77         if (arp) {
78                 if (ioctl(fd, SIOCGIFHWADDR, &ifr) != 0) {
79                         bb_perror_msg("SIOCGIFHWADDR failed");
80                         close(fd);
81                         return -1;
82                 }
83                 memcpy(arp, ifr.ifr_hwaddr.sa_data, 6);
84                 DEBUG("adapter hardware address %02x:%02x:%02x:%02x:%02x:%02x",
85                         arp[0], arp[1], arp[2], arp[3], arp[4], arp[5]);
86         }
87
88         return 0;
89 }
90
91
92 int listen_socket(uint32_t ip, int port, const char *inf)
93 {
94         struct ifreq interface;
95         int fd;
96         struct sockaddr_in addr;
97
98         DEBUG("Opening listen socket on 0x%08x:%d %s", ip, port, inf);
99         fd = xsocket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
100
101         memset(&addr, 0, sizeof(addr));
102         addr.sin_family = AF_INET;
103         addr.sin_port = htons(port);
104         addr.sin_addr.s_addr = ip;
105
106         if (setsockopt_reuseaddr(fd) == -1) {
107                 close(fd);
108                 return -1;
109         }
110         if (setsockopt_broadcast(fd) == -1) {
111                 close(fd);
112                 return -1;
113         }
114
115         strncpy(interface.ifr_name, inf, IFNAMSIZ);
116         if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, &interface, sizeof(interface)) < 0) {
117                 close(fd);
118                 return -1;
119         }
120
121         if (bind(fd, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
122                 close(fd);
123                 return -1;
124         }
125
126         return fd;
127 }