udhcp: pass pointer to whole packet to "add option" functions
[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 #if (defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 1) || defined _NEWLIB_VERSION
28 #include <netpacket/packet.h>
29 #include <net/ethernet.h>
30 #else
31 #include <asm/types.h>
32 #include <linux/if_packet.h>
33 #include <linux/if_ether.h>
34 #endif
35
36 #include "common.h"
37
38
39 int FAST_FUNC udhcp_read_interface(const char *interface, int *ifindex, uint32_t *nip, uint8_t *mac)
40 {
41         int fd;
42         struct ifreq ifr;
43         struct sockaddr_in *our_ip;
44
45         memset(&ifr, 0, sizeof(ifr));
46         fd = xsocket(AF_INET, SOCK_RAW, IPPROTO_RAW);
47
48         ifr.ifr_addr.sa_family = AF_INET;
49         strncpy_IFNAMSIZ(ifr.ifr_name, interface);
50         if (nip) {
51                 if (ioctl_or_perror(fd, SIOCGIFADDR, &ifr,
52                         "is interface %s up and configured?", interface)
53                 ) {
54                         close(fd);
55                         return -1;
56                 }
57                 our_ip = (struct sockaddr_in *) &ifr.ifr_addr;
58                 *nip = our_ip->sin_addr.s_addr;
59                 log1("IP %s", inet_ntoa(our_ip->sin_addr));
60         }
61
62         if (ifindex) {
63                 if (ioctl_or_warn(fd, SIOCGIFINDEX, &ifr) != 0) {
64                         close(fd);
65                         return -1;
66                 }
67                 log1("Adapter index %d", ifr.ifr_ifindex);
68                 *ifindex = ifr.ifr_ifindex;
69         }
70
71         if (mac) {
72                 if (ioctl_or_warn(fd, SIOCGIFHWADDR, &ifr) != 0) {
73                         close(fd);
74                         return -1;
75                 }
76                 memcpy(mac, ifr.ifr_hwaddr.sa_data, 6);
77                 log1("MAC %02x:%02x:%02x:%02x:%02x:%02x",
78                         mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
79         }
80
81         close(fd);
82         return 0;
83 }
84
85 /* 1. None of the callers expects it to ever fail */
86 /* 2. ip was always INADDR_ANY */
87 int FAST_FUNC udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf)
88 {
89         int fd;
90         struct sockaddr_in addr;
91
92         log1("Opening listen socket on *:%d %s", port, inf);
93         fd = xsocket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
94
95         setsockopt_reuseaddr(fd);
96         if (setsockopt_broadcast(fd) == -1)
97                 bb_perror_msg_and_die("SO_BROADCAST");
98
99         /* NB: bug 1032 says this doesn't work on ethernet aliases (ethN:M) */
100         if (setsockopt_bindtodevice(fd, inf))
101                 xfunc_die(); /* warning is already printed */
102
103         memset(&addr, 0, sizeof(addr));
104         addr.sin_family = AF_INET;
105         addr.sin_port = htons(port);
106         /* addr.sin_addr.s_addr = ip; - all-zeros is INADDR_ANY */
107         xbind(fd, (struct sockaddr *)&addr, sizeof(addr));
108
109         return fd;
110 }