2011-07-25 12:00:57 +05:30
|
|
|
/* dhcp.c - general DHCP protocol handling
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2015-02-13 12:24:57 +05:30
|
|
|
* Copyright (c) 2004-2015 Nicholas J. Kain <njkain at gmail dot com>
|
2011-07-25 12:00:57 +05:30
|
|
|
* All rights reserved.
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
2011-03-31 09:29:22 +05:30
|
|
|
*
|
2011-07-25 12:00:57 +05:30
|
|
|
* - Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
2011-03-31 09:29:22 +05:30
|
|
|
*/
|
|
|
|
|
2010-12-24 20:11:52 +05:30
|
|
|
#include <stdlib.h>
|
2014-03-18 11:06:14 +05:30
|
|
|
#include <stddef.h>
|
2014-03-20 05:02:45 +05:30
|
|
|
#include <stdio.h>
|
2010-11-12 14:32:18 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2015-02-14 08:23:15 +05:30
|
|
|
#include <sys/ioctl.h>
|
2011-06-11 20:49:05 +05:30
|
|
|
#include <arpa/inet.h>
|
2010-11-12 14:32:18 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netpacket/packet.h>
|
|
|
|
#include <net/ethernet.h>
|
|
|
|
#include <errno.h>
|
2014-03-31 02:32:48 +05:30
|
|
|
#include "nk/log.h"
|
|
|
|
#include "nk/io.h"
|
|
|
|
#include "nk/random.h"
|
2014-06-09 06:04:34 +05:30
|
|
|
#include "nk/net_checksum.h"
|
2010-11-12 14:32:18 +05:30
|
|
|
|
2011-07-02 13:21:44 +05:30
|
|
|
#include "dhcp.h"
|
2011-06-30 09:17:31 +05:30
|
|
|
#include "state.h"
|
2010-12-24 21:10:46 +05:30
|
|
|
#include "arp.h"
|
2010-12-24 20:42:41 +05:30
|
|
|
#include "ifchange.h"
|
2010-12-24 20:11:52 +05:30
|
|
|
#include "sys.h"
|
2010-11-12 14:32:18 +05:30
|
|
|
#include "options.h"
|
2014-04-04 13:42:25 +05:30
|
|
|
#include "sockd.h"
|
2010-11-12 14:32:18 +05:30
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
static int get_udp_unicast_socket(struct client_state_t cs[static 1])
|
2011-06-25 20:10:41 +05:30
|
|
|
{
|
2014-04-16 03:25:28 +05:30
|
|
|
char buf[32];
|
|
|
|
buf[0] = 'u';
|
2014-04-16 06:24:35 +05:30
|
|
|
memcpy(buf + 1, &cs->clientAddr, sizeof cs->clientAddr);
|
|
|
|
return request_sockd_fd(buf, 1 + sizeof cs->clientAddr, NULL);
|
2014-04-04 13:42:25 +05:30
|
|
|
}
|
2011-06-25 20:10:41 +05:30
|
|
|
|
2014-04-04 13:42:25 +05:30
|
|
|
static int get_raw_broadcast_socket(void)
|
|
|
|
{
|
|
|
|
return request_sockd_fd("s", 1, NULL);
|
|
|
|
}
|
2011-06-25 20:10:41 +05:30
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
static int get_raw_listen_socket(struct client_state_t cs[static 1])
|
2011-06-25 20:10:41 +05:30
|
|
|
{
|
2014-04-04 13:42:25 +05:30
|
|
|
char resp;
|
|
|
|
int fd = request_sockd_fd("L", 1, &resp);
|
|
|
|
switch (resp) {
|
|
|
|
case 'L': cs->using_dhcp_bpf = 1; break;
|
|
|
|
case 'l': cs->using_dhcp_bpf = 0; break;
|
|
|
|
default: suicide("%s: (%s) expected l or L sockd reply but got %c",
|
|
|
|
client_config.interface, __func__, resp);
|
2011-06-25 20:10:41 +05:30
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
return fd;
|
|
|
|
}
|
2011-06-25 20:10:41 +05:30
|
|
|
|
2014-04-16 10:30:36 +05:30
|
|
|
// Unicast a DHCP message using a UDP socket.
|
2015-02-14 08:59:03 +05:30
|
|
|
static ssize_t send_dhcp_unicast(struct client_state_t cs[static 1],
|
2015-02-14 09:44:08 +05:30
|
|
|
struct dhcpmsg payload[static 1])
|
2011-06-29 09:26:12 +05:30
|
|
|
{
|
2014-04-06 15:54:13 +05:30
|
|
|
ssize_t ret = -1;
|
2014-04-16 03:25:28 +05:30
|
|
|
int fd = get_udp_unicast_socket(cs);
|
|
|
|
if (fd < 0) {
|
|
|
|
log_error("%s: (%s) get_udp_unicast_socket failed",
|
|
|
|
client_config.interface, __func__);
|
2011-06-29 09:26:12 +05:30
|
|
|
goto out;
|
2014-04-16 03:25:28 +05:30
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
|
|
|
|
struct sockaddr_in raddr = {
|
|
|
|
.sin_family = AF_INET,
|
|
|
|
.sin_port = htons(DHCP_SERVER_PORT),
|
2011-07-04 04:26:57 +05:30
|
|
|
.sin_addr.s_addr = cs->serverAddr,
|
2011-06-29 09:26:12 +05:30
|
|
|
};
|
2014-04-06 16:03:14 +05:30
|
|
|
if (connect(fd, (struct sockaddr *)&raddr, sizeof(struct sockaddr)) < 0) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_error("%s: (%s) connect failed: %s", client_config.interface,
|
|
|
|
__func__, strerror(errno));
|
2011-06-26 02:01:21 +05:30
|
|
|
goto out_fd;
|
2011-06-25 20:16:24 +05:30
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
|
2011-07-27 17:19:30 +05:30
|
|
|
// Send packets that are as short as possible.
|
2011-06-29 09:26:12 +05:30
|
|
|
ssize_t endloc = get_end_option_idx(payload);
|
|
|
|
if (endloc < 0) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_error("%s: (%s) No end marker. Not sending.",
|
|
|
|
client_config.interface, __func__);
|
2011-06-26 02:01:21 +05:30
|
|
|
goto out_fd;
|
2011-06-25 20:10:41 +05:30
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
size_t payload_len =
|
|
|
|
sizeof *payload - (sizeof payload->options - 1 - endloc);
|
2015-02-15 13:20:29 +05:30
|
|
|
if (check_carrier()) {
|
2015-02-14 08:23:15 +05:30
|
|
|
log_error("%s: (%s) carrier down; write would fail",
|
|
|
|
client_config.interface, __func__);
|
2015-02-14 15:50:04 +05:30
|
|
|
ret = -99;
|
2015-02-14 08:23:15 +05:30
|
|
|
goto out_fd;
|
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
ret = safe_write(fd, (const char *)payload, payload_len);
|
2014-04-04 13:31:49 +05:30
|
|
|
if (ret < 0 || (size_t)ret != payload_len)
|
|
|
|
log_error("%s: (%s) write failed: %d", client_config.interface,
|
|
|
|
__func__, ret);
|
2011-06-29 09:26:12 +05:30
|
|
|
out_fd:
|
2011-06-26 02:01:21 +05:30
|
|
|
close(fd);
|
2011-06-29 09:26:12 +05:30
|
|
|
out:
|
|
|
|
return ret;
|
2011-06-25 20:10:41 +05:30
|
|
|
}
|
2011-06-27 03:07:57 +05:30
|
|
|
|
2011-06-27 02:03:07 +05:30
|
|
|
// Returns 1 if IP checksum is correct, otherwise 0.
|
2015-02-14 09:44:08 +05:30
|
|
|
static int ip_checksum(struct ip_udp_dhcp_packet packet[static 1])
|
2011-06-27 02:03:07 +05:30
|
|
|
{
|
2014-06-09 06:04:34 +05:30
|
|
|
return net_checksum161c(&packet->ip, sizeof packet->ip) == 0;
|
2011-06-27 02:03:07 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// Returns 1 if UDP checksum is correct, otherwise 0.
|
2015-02-14 09:44:08 +05:30
|
|
|
static int udp_checksum(struct ip_udp_dhcp_packet packet[static 1])
|
2011-06-27 02:03:07 +05:30
|
|
|
{
|
|
|
|
struct iphdr ph = {
|
|
|
|
.saddr = packet->ip.saddr,
|
|
|
|
.daddr = packet->ip.daddr,
|
|
|
|
.protocol = packet->ip.protocol,
|
|
|
|
.tot_len = packet->udp.len,
|
|
|
|
};
|
2015-01-06 17:37:08 +05:30
|
|
|
uint16_t udpcs =
|
|
|
|
net_checksum161c(&packet->udp,
|
|
|
|
min_size_t(ntohs(packet->udp.len),
|
|
|
|
sizeof *packet - sizeof(struct iphdr)));
|
2014-06-09 06:04:34 +05:30
|
|
|
uint16_t hdrcs = net_checksum161c(&ph, sizeof ph);
|
|
|
|
uint16_t cs = net_checksum161c_add(udpcs, hdrcs);
|
2011-06-27 02:03:07 +05:30
|
|
|
return cs == 0;
|
2011-06-26 02:25:00 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 09:44:08 +05:30
|
|
|
static int get_raw_packet_validate_bpf(struct ip_udp_dhcp_packet packet[static 1])
|
2011-07-01 13:44:10 +05:30
|
|
|
{
|
|
|
|
if (packet->ip.version != IPVERSION) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: IP version is not IPv4.", client_config.interface);
|
2011-07-01 13:44:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (packet->ip.ihl != sizeof packet->ip >> 2) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: IP header length incorrect.",
|
|
|
|
client_config.interface);
|
2011-07-01 13:44:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (packet->ip.protocol != IPPROTO_UDP) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: IP header is not UDP: %d",
|
|
|
|
client_config.interface, packet->ip.protocol);
|
2011-07-01 13:44:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ntohs(packet->udp.dest) != DHCP_CLIENT_PORT) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: UDP destination port incorrect: %d",
|
|
|
|
client_config.interface, ntohs(packet->udp.dest));
|
2011-07-01 13:44:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ntohs(packet->udp.len) !=
|
|
|
|
ntohs(packet->ip.tot_len) - sizeof packet->ip) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: UDP header length incorrect.",
|
|
|
|
client_config.interface);
|
2011-07-01 13:44:10 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-06-11 20:35:53 +05:30
|
|
|
// Read a packet from a raw socket. Returns -1 on fatal error, -2 on
|
|
|
|
// transient error.
|
2015-02-14 08:59:03 +05:30
|
|
|
static ssize_t get_raw_packet(struct client_state_t cs[static 1],
|
2015-02-14 09:44:08 +05:30
|
|
|
struct dhcpmsg payload[static 1],
|
2015-02-13 09:58:54 +05:30
|
|
|
uint32_t *srcaddr)
|
2011-06-11 20:35:53 +05:30
|
|
|
{
|
|
|
|
struct ip_udp_dhcp_packet packet;
|
2011-06-27 02:55:00 +05:30
|
|
|
memset(&packet, 0, sizeof packet);
|
2011-06-27 02:03:07 +05:30
|
|
|
|
2011-07-01 14:08:38 +05:30
|
|
|
ssize_t inc = safe_read(cs->listenFd, (char *)&packet, sizeof packet);
|
2014-04-06 15:54:13 +05:30
|
|
|
if (inc < 0) {
|
2011-06-11 20:35:53 +05:30
|
|
|
if (errno == EAGAIN || errno == EWOULDBLOCK)
|
|
|
|
return -2;
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: (%s) read error %s", client_config.interface,
|
|
|
|
__func__, strerror(errno));
|
2011-06-11 20:35:53 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2014-04-16 00:53:52 +05:30
|
|
|
size_t iphdrlen = ntohs(packet.ip.tot_len);
|
2015-02-14 12:10:06 +05:30
|
|
|
if ((size_t)inc < iphdrlen)
|
2012-07-21 04:18:26 +05:30
|
|
|
return -2;
|
2011-07-01 13:44:10 +05:30
|
|
|
if (!cs->using_dhcp_bpf && !get_raw_packet_validate_bpf(&packet))
|
2011-06-11 20:35:53 +05:30
|
|
|
return -2;
|
2011-07-01 13:44:10 +05:30
|
|
|
|
2011-06-27 02:03:07 +05:30
|
|
|
if (!ip_checksum(&packet)) {
|
2014-07-26 06:04:01 +05:30
|
|
|
log_error("%s: IP header checksum incorrect.",
|
|
|
|
client_config.interface);
|
2011-06-11 20:35:53 +05:30
|
|
|
return -2;
|
|
|
|
}
|
2014-07-26 06:04:01 +05:30
|
|
|
if (iphdrlen <= sizeof packet.ip + sizeof packet.udp) {
|
|
|
|
log_error("%s: Packet received that is too small (%zu bytes).",
|
|
|
|
iphdrlen);
|
|
|
|
return -2;
|
|
|
|
}
|
2014-04-16 00:53:52 +05:30
|
|
|
size_t l = iphdrlen - sizeof packet.ip - sizeof packet.udp;
|
2014-07-26 06:04:01 +05:30
|
|
|
if (l > sizeof *payload) {
|
|
|
|
log_error("%s: Packet received that is too long (%zu bytes).",
|
|
|
|
l);
|
|
|
|
return -2;
|
2015-01-06 15:02:58 +05:30
|
|
|
}
|
|
|
|
if (packet.udp.check && !udp_checksum(&packet)) {
|
|
|
|
log_error("%s: Packet with bad UDP checksum received. Ignoring.",
|
|
|
|
client_config.interface);
|
|
|
|
return -2;
|
2014-07-26 06:04:01 +05:30
|
|
|
}
|
2015-02-13 09:58:54 +05:30
|
|
|
if (srcaddr)
|
|
|
|
*srcaddr = packet.ip.saddr;
|
2011-06-27 02:55:00 +05:30
|
|
|
memcpy(payload, &packet.data, l);
|
|
|
|
return l;
|
2011-06-11 20:35:53 +05:30
|
|
|
}
|
|
|
|
|
2011-06-29 09:26:12 +05:30
|
|
|
// Broadcast a DHCP message using a raw socket.
|
2015-02-14 09:44:08 +05:30
|
|
|
static ssize_t send_dhcp_raw(struct dhcpmsg payload[static 1])
|
2011-06-29 09:26:12 +05:30
|
|
|
{
|
2014-04-06 15:54:13 +05:30
|
|
|
ssize_t ret = -1;
|
2014-04-04 13:42:25 +05:30
|
|
|
int fd = get_raw_broadcast_socket();
|
2014-04-16 03:25:28 +05:30
|
|
|
if (fd < 0) {
|
|
|
|
log_error("%s: (%s) get_raw_broadcast_socket failed",
|
|
|
|
client_config.interface, __func__);
|
2011-06-29 09:26:12 +05:30
|
|
|
return ret;
|
2014-04-16 03:25:28 +05:30
|
|
|
}
|
2010-11-13 01:03:17 +05:30
|
|
|
|
2011-07-27 17:19:30 +05:30
|
|
|
// Send packets that are as short as possible.
|
2011-06-27 22:23:35 +05:30
|
|
|
ssize_t endloc = get_end_option_idx(payload);
|
2011-06-27 02:55:00 +05:30
|
|
|
if (endloc < 0) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_error("%s: (%s) No end marker. Not sending.",
|
|
|
|
client_config.interface, __func__);
|
2011-06-29 09:26:12 +05:30
|
|
|
close(fd);
|
|
|
|
return ret;
|
2011-03-31 01:27:01 +05:30
|
|
|
}
|
2011-06-27 22:23:35 +05:30
|
|
|
size_t padding = sizeof payload->options - 1 - endloc;
|
2011-06-27 02:55:00 +05:30
|
|
|
size_t iud_len = sizeof(struct ip_udp_dhcp_packet) - padding;
|
|
|
|
size_t ud_len = sizeof(struct udp_dhcp_packet) - padding;
|
2011-06-27 03:20:35 +05:30
|
|
|
|
|
|
|
struct iphdr ph = {
|
|
|
|
.saddr = INADDR_ANY,
|
|
|
|
.daddr = INADDR_BROADCAST,
|
|
|
|
.protocol = IPPROTO_UDP,
|
|
|
|
.tot_len = htons(ud_len),
|
|
|
|
};
|
2011-06-27 02:55:00 +05:30
|
|
|
struct ip_udp_dhcp_packet iudmsg = {
|
2011-06-26 19:51:02 +05:30
|
|
|
.ip = {
|
|
|
|
.saddr = INADDR_ANY,
|
|
|
|
.daddr = INADDR_BROADCAST,
|
2011-06-27 03:20:35 +05:30
|
|
|
.protocol = IPPROTO_UDP,
|
|
|
|
.tot_len = htons(iud_len),
|
|
|
|
.ihl = sizeof iudmsg.ip >> 2,
|
|
|
|
.version = IPVERSION,
|
|
|
|
.ttl = IPDEFTTL,
|
2011-06-26 19:51:02 +05:30
|
|
|
},
|
|
|
|
.data = *payload,
|
|
|
|
};
|
2014-04-04 13:42:25 +05:30
|
|
|
iudmsg.udp.source = htons(DHCP_CLIENT_PORT);
|
|
|
|
iudmsg.udp.dest = htons(DHCP_SERVER_PORT);
|
|
|
|
iudmsg.udp.len = htons(ud_len);
|
|
|
|
iudmsg.udp.check = 0;
|
2014-06-09 06:04:34 +05:30
|
|
|
uint16_t udpcs = net_checksum161c(&iudmsg.udp, ud_len);
|
|
|
|
uint16_t phcs = net_checksum161c(&ph, sizeof ph);
|
|
|
|
iudmsg.udp.check = net_checksum161c_add(udpcs, phcs);
|
|
|
|
iudmsg.ip.check = net_checksum161c(&iudmsg.ip, sizeof iudmsg.ip);
|
2011-06-27 02:55:00 +05:30
|
|
|
|
2014-04-04 13:42:25 +05:30
|
|
|
struct sockaddr_ll da = {
|
|
|
|
.sll_family = AF_PACKET,
|
|
|
|
.sll_protocol = htons(ETH_P_IP),
|
|
|
|
.sll_pkttype = PACKET_BROADCAST,
|
|
|
|
.sll_ifindex = client_config.ifindex,
|
|
|
|
.sll_halen = 6,
|
|
|
|
};
|
|
|
|
memcpy(da.sll_addr, "\xff\xff\xff\xff\xff\xff", 6);
|
2015-02-15 13:20:29 +05:30
|
|
|
if (check_carrier()) {
|
2015-02-14 08:23:15 +05:30
|
|
|
log_error("%s: (%s) carrier down; sendto would fail",
|
|
|
|
client_config.interface, __func__);
|
2015-02-14 15:50:04 +05:30
|
|
|
ret = -99;
|
2015-02-14 08:23:15 +05:30
|
|
|
goto carrier_down;
|
|
|
|
}
|
2011-06-29 09:26:12 +05:30
|
|
|
ret = safe_sendto(fd, (const char *)&iudmsg, iud_len, 0,
|
|
|
|
(struct sockaddr *)&da, sizeof da);
|
2014-04-07 13:45:02 +05:30
|
|
|
if (ret < 0 || (size_t)ret != iud_len) {
|
|
|
|
if (ret < 0)
|
|
|
|
log_error("%s: (%s) sendto failed: %s", client_config.interface,
|
|
|
|
__func__, strerror(errno));
|
|
|
|
else
|
|
|
|
log_error("%s: (%s) sendto short write: %z < %zu",
|
|
|
|
client_config.interface, __func__, ret, iud_len);
|
|
|
|
}
|
2015-02-14 08:23:15 +05:30
|
|
|
carrier_down:
|
2010-11-13 01:03:17 +05:30
|
|
|
close(fd);
|
2011-06-29 09:26:12 +05:30
|
|
|
return ret;
|
2010-11-13 01:03:17 +05:30
|
|
|
}
|
2010-12-24 19:25:59 +05:30
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
void start_dhcp_listen(struct client_state_t cs[static 1])
|
2010-12-24 20:11:52 +05:30
|
|
|
{
|
2014-04-16 10:30:36 +05:30
|
|
|
if (cs->listenFd >= 0)
|
|
|
|
return;
|
|
|
|
cs->listenFd = get_raw_listen_socket(cs);
|
2014-03-31 02:51:27 +05:30
|
|
|
if (cs->listenFd < 0)
|
2014-04-04 13:31:49 +05:30
|
|
|
suicide("%s: FATAL: Couldn't listen on socket: %s",
|
|
|
|
client_config.interface, strerror(errno));
|
2014-03-13 02:21:10 +05:30
|
|
|
epoll_add(cs->epollFd, cs->listenFd);
|
2010-12-24 20:11:52 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
void stop_dhcp_listen(struct client_state_t cs[static 1])
|
2011-07-01 07:03:38 +05:30
|
|
|
{
|
2014-04-16 10:30:36 +05:30
|
|
|
if (cs->listenFd < 0)
|
|
|
|
return;
|
|
|
|
epoll_del(cs->epollFd, cs->listenFd);
|
|
|
|
close(cs->listenFd);
|
|
|
|
cs->listenFd = -1;
|
2011-07-01 07:03:38 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 09:44:08 +05:30
|
|
|
static int validate_dhcp_packet(struct client_state_t cs[static 1],
|
|
|
|
size_t len, struct dhcpmsg packet[static 1],
|
2015-02-14 12:16:02 +05:30
|
|
|
uint8_t msgtype[static 1])
|
2011-07-01 15:03:12 +05:30
|
|
|
{
|
2014-03-18 11:06:14 +05:30
|
|
|
if (len < offsetof(struct dhcpmsg, options)) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet is too short to contain magic cookie. Ignoring.",
|
|
|
|
client_config.interface);
|
2011-07-01 15:03:12 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (ntohl(packet->cookie) != DHCP_MAGIC) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet with bad magic number. Ignoring.",
|
|
|
|
client_config.interface);
|
2011-07-01 15:03:12 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (packet->xid != cs->xid) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet XID %lx does not equal our XID %lx. Ignoring.",
|
|
|
|
client_config.interface, packet->xid, cs->xid);
|
2011-07-01 15:03:12 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2011-09-02 08:35:56 +05:30
|
|
|
if (memcmp(packet->chaddr, client_config.arp, sizeof client_config.arp)) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet client MAC %2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x does not equal our MAC %2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x. Ignoring it.",
|
|
|
|
client_config.interface,
|
|
|
|
packet->chaddr[0], packet->chaddr[1], packet->chaddr[2],
|
|
|
|
packet->chaddr[3], packet->chaddr[4], packet->chaddr[5],
|
|
|
|
client_config.arp[0], client_config.arp[1],
|
|
|
|
client_config.arp[2], client_config.arp[3],
|
|
|
|
client_config.arp[4], client_config.arp[5]);
|
2011-09-02 08:35:56 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2015-01-06 14:32:52 +05:30
|
|
|
ssize_t endloc = get_end_option_idx(packet);
|
|
|
|
if (endloc < 0) {
|
|
|
|
log_warning("%s: Packet does not have an end option. Ignoring.");
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-26 10:34:59 +05:30
|
|
|
*msgtype = get_option_msgtype(packet);
|
|
|
|
if (!*msgtype) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet does not specify a DHCP message type. Ignoring.",
|
|
|
|
client_config.interface);
|
2011-07-01 15:03:12 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2014-03-18 12:43:51 +05:30
|
|
|
char clientid[MAX_DOPT_SIZE];
|
|
|
|
size_t cidlen = get_option_clientid(packet, clientid, MAX_DOPT_SIZE);
|
|
|
|
if (cidlen == 0)
|
|
|
|
return 1;
|
|
|
|
if (memcmp(client_config.clientid, clientid,
|
|
|
|
min_size_t(cidlen, client_config.clientid_len))) {
|
2014-04-04 13:31:49 +05:30
|
|
|
log_warning("%s: Packet clientid does not match our clientid. Ignoring.",
|
|
|
|
client_config.interface);
|
2014-03-18 12:43:51 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2011-07-01 15:03:12 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-02-15 17:08:03 +05:30
|
|
|
int dhcp_packet_get(struct client_state_t cs[static 1],
|
|
|
|
struct dhcpmsg packet[static 1],
|
|
|
|
uint8_t msgtype[static 1],
|
|
|
|
uint32_t srcaddr[static 1])
|
2010-12-24 19:25:59 +05:30
|
|
|
{
|
2014-04-16 10:30:36 +05:30
|
|
|
if (cs->listenFd < 0)
|
2015-02-15 17:08:03 +05:30
|
|
|
return -1;
|
|
|
|
ssize_t r = get_raw_packet(cs, packet, srcaddr);
|
2014-03-11 04:28:53 +05:30
|
|
|
if (r < 0) {
|
2014-04-16 09:54:40 +05:30
|
|
|
// Not a transient issue handled by packet collection functions.
|
|
|
|
if (r != -2) {
|
|
|
|
log_error("%s: Error reading from listening socket: %s. Reopening.",
|
|
|
|
client_config.interface, strerror(errno));
|
2014-04-16 10:30:36 +05:30
|
|
|
stop_dhcp_listen(cs);
|
|
|
|
start_dhcp_listen(cs);
|
2014-04-16 09:54:40 +05:30
|
|
|
}
|
2015-02-15 17:08:03 +05:30
|
|
|
return -1;
|
2010-12-24 19:25:59 +05:30
|
|
|
}
|
2015-02-15 17:08:03 +05:30
|
|
|
if (!validate_dhcp_packet(cs, (size_t)r, packet, msgtype))
|
|
|
|
return -1;
|
|
|
|
return 0;
|
2010-12-24 19:25:59 +05:30
|
|
|
}
|
2011-06-11 20:49:05 +05:30
|
|
|
|
2011-06-27 22:31:39 +05:30
|
|
|
// Initialize a DHCP client packet that will be sent to a server
|
2015-02-14 12:11:52 +05:30
|
|
|
static void init_packet(struct dhcpmsg packet[static 1], char type)
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
packet->op = 1; // BOOTREQUEST (client)
|
|
|
|
packet->htype = 1; // ETH_10MB
|
|
|
|
packet->hlen = 6; // ETH_10MB_LEN
|
|
|
|
packet->cookie = htonl(DHCP_MAGIC);
|
|
|
|
packet->options[0] = DCODE_END;
|
|
|
|
add_option_msgtype(packet, type);
|
|
|
|
memcpy(packet->chaddr, client_config.arp, 6);
|
|
|
|
add_option_clientid(packet, client_config.clientid,
|
2014-03-18 12:43:51 +05:30
|
|
|
client_config.clientid_len);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_discover(struct client_state_t cs[static 1])
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = cs->xid};
|
|
|
|
init_packet(&packet, DHCPDISCOVER);
|
2011-07-01 21:07:13 +05:30
|
|
|
if (cs->clientAddr)
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_reqip(&packet, cs->clientAddr);
|
|
|
|
add_option_maxsize(&packet);
|
2011-06-27 22:23:35 +05:30
|
|
|
add_option_request_list(&packet);
|
2011-07-02 13:18:08 +05:30
|
|
|
add_option_vendor(&packet);
|
2011-07-03 15:33:54 +05:30
|
|
|
add_option_hostname(&packet);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Discovering DHCP servers...", client_config.interface);
|
2011-06-26 02:25:00 +05:30
|
|
|
return send_dhcp_raw(&packet);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_selecting(struct client_state_t cs[static 1])
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2011-07-12 02:32:32 +05:30
|
|
|
char clibuf[INET_ADDRSTRLEN];
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = cs->xid};
|
|
|
|
init_packet(&packet, DHCPREQUEST);
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_reqip(&packet, cs->clientAddr);
|
|
|
|
add_option_serverid(&packet, cs->serverAddr);
|
|
|
|
add_option_maxsize(&packet);
|
2011-06-27 22:23:35 +05:30
|
|
|
add_option_request_list(&packet);
|
2011-07-02 13:18:08 +05:30
|
|
|
add_option_vendor(&packet);
|
2011-07-03 15:33:54 +05:30
|
|
|
add_option_hostname(&packet);
|
2011-07-12 02:32:32 +05:30
|
|
|
inet_ntop(AF_INET, &(struct in_addr){.s_addr = cs->clientAddr},
|
|
|
|
clibuf, sizeof clibuf);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Sending a selection request for %s...",
|
|
|
|
client_config.interface, clibuf);
|
2011-06-26 02:25:00 +05:30
|
|
|
return send_dhcp_raw(&packet);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_renew(struct client_state_t cs[static 1])
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = cs->xid};
|
|
|
|
init_packet(&packet, DHCPREQUEST);
|
2011-07-01 21:07:13 +05:30
|
|
|
packet.ciaddr = cs->clientAddr;
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_maxsize(&packet);
|
2011-06-27 22:23:35 +05:30
|
|
|
add_option_request_list(&packet);
|
2011-07-02 13:18:08 +05:30
|
|
|
add_option_vendor(&packet);
|
2011-07-03 15:33:54 +05:30
|
|
|
add_option_hostname(&packet);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Sending a renew request...", client_config.interface);
|
2014-04-16 10:30:36 +05:30
|
|
|
return send_dhcp_unicast(cs, &packet);
|
2011-07-01 21:07:13 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_rebind(struct client_state_t cs[static 1])
|
2011-07-01 21:07:13 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = cs->xid};
|
|
|
|
init_packet(&packet, DHCPREQUEST);
|
2011-07-01 21:07:13 +05:30
|
|
|
packet.ciaddr = cs->clientAddr;
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_reqip(&packet, cs->clientAddr);
|
|
|
|
add_option_maxsize(&packet);
|
2011-07-01 21:07:13 +05:30
|
|
|
add_option_request_list(&packet);
|
2011-07-02 13:18:08 +05:30
|
|
|
add_option_vendor(&packet);
|
2011-07-03 15:33:54 +05:30
|
|
|
add_option_hostname(&packet);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Sending a rebind request...", client_config.interface);
|
2011-07-01 21:07:13 +05:30
|
|
|
return send_dhcp_raw(&packet);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_decline(struct client_state_t cs[static 1], uint32_t server)
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = cs->xid};
|
|
|
|
init_packet(&packet, DHCPDECLINE);
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_reqip(&packet, cs->clientAddr);
|
|
|
|
add_option_serverid(&packet, server);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Sending a decline message...", client_config.interface);
|
2011-06-26 02:25:00 +05:30
|
|
|
return send_dhcp_raw(&packet);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
|
|
|
|
2015-02-14 08:59:03 +05:30
|
|
|
ssize_t send_release(struct client_state_t cs[static 1])
|
2011-06-11 20:49:05 +05:30
|
|
|
{
|
2015-02-14 12:11:52 +05:30
|
|
|
struct dhcpmsg packet = {.xid = nk_random_u32(&cs->rnd32_state)};
|
|
|
|
init_packet(&packet, DHCPRELEASE);
|
2011-07-01 21:07:13 +05:30
|
|
|
packet.ciaddr = cs->clientAddr;
|
2011-07-26 09:04:32 +05:30
|
|
|
add_option_reqip(&packet, cs->clientAddr);
|
|
|
|
add_option_serverid(&packet, cs->serverAddr);
|
2014-04-04 13:31:49 +05:30
|
|
|
log_line("%s: Sending a release message...", client_config.interface);
|
2014-04-16 10:30:36 +05:30
|
|
|
return send_dhcp_unicast(cs, &packet);
|
2011-06-11 20:49:05 +05:30
|
|
|
}
|
2011-06-26 02:25:00 +05:30
|
|
|
|