sd-dhcp-client.c revision 02ec5cd78a148c2c05c0d6e5016ae04570a9ef97
/***
This file is part of systemd.
Copyright (C) 2013 Intel Corporation. All rights reserved.
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <stdio.h>
#include <net/ethernet.h>
#include "util.h"
#include "list.h"
#include "dhcp-protocol.h"
#include "dhcp-internal.h"
#include "dhcp-lease-internal.h"
#include "sd-dhcp-client.h"
struct sd_dhcp_client {
int event_priority;
int index;
int fd;
union sockaddr_union link;
struct ether_addr mac_addr;
unsigned int attempt;
void *userdata;
};
static const uint8_t default_req_opts[] = {
};
void *userdata) {
return 0;
}
size_t i;
switch(option) {
case DHCP_OPTION_PAD:
case DHCP_OPTION_OVERLOAD:
case DHCP_OPTION_MESSAGE_TYPE:
case DHCP_OPTION_END:
return -EINVAL;
default:
break;
}
for (i = 0; i < client->req_opts_size; i++)
return -EEXIST;
return -ENOMEM;
return 0;
}
if (last_addr)
else
return 0;
}
return 0;
}
const struct ether_addr *addr) {
"%02hhx:%02hhx:%02hhx:%02hhx:%02hhx:%02hhx",
addr->ether_addr_octet[0],
return 0;
}
return -EADDRNOTAVAIL;
return 0;
}
return 0;
}
client->start_time = 0;
return 0;
}
int r;
optlen);
if (r < 0)
return r;
/* Although 'secs' field is a SHOULD in RFC 2131, certain DHCP servers
refuse to issue an DHCP lease if 'secs' is set to zero */
/* Some DHCP servers will refuse to issue an DHCP lease if the Client
Identifier option is not set */
if (r < 0)
return r;
if (r < 0)
return r;
/* Some DHCP servers will send bigger DHCP packets than the
defined default size unless the Maximum Messge Size option
is explicitely set */
2, &max_size);
if (r < 0)
return r;
}
return 0;
}
int err = 0;
if (!discover)
return -ENOMEM;
if (err < 0)
return err;
if (err < 0)
return err;
}
if (err < 0)
return err;
return err;
}
int err;
if (!request)
return -ENOMEM;
if (err < 0)
return err;
if (err < 0)
return err;
if (err < 0)
return err;
}
if (err < 0)
return err;
len - DHCP_IP_UDP_SIZE);
} else {
}
return err;
}
{
}
void *userdata) {
usec_t next_timeout = 0;
int r = 0;
assert(s);
case DHCP_STATE_RENEWING:
if (time_left < 60)
time_left = 60;
break;
case DHCP_STATE_REBINDING:
if (time_left < 60)
time_left = 60;
break;
case DHCP_STATE_INIT:
case DHCP_STATE_INIT_REBOOT:
case DHCP_STATE_REBOOTING:
case DHCP_STATE_SELECTING:
case DHCP_STATE_REQUESTING:
case DHCP_STATE_BOUND:
break;
}
10 * USEC_PER_MSEC,
if (r < 0)
goto error;
if (r < 0)
goto error;
case DHCP_STATE_INIT:
if (r >= 0) {
} else {
goto error;
}
break;
case DHCP_STATE_SELECTING:
goto error;
break;
case DHCP_STATE_REQUESTING:
case DHCP_STATE_RENEWING:
case DHCP_STATE_REBINDING:
goto error;
break;
case DHCP_STATE_INIT_REBOOT:
case DHCP_STATE_REBOOTING:
case DHCP_STATE_BOUND:
break;
}
return 0;
client_stop(client, r);
/* Errors were dealt with when stopping the client, don't spill
errors into the event loop handler */
return 0;
}
int r;
client);
if (r < 0)
goto error;
if (r < 0)
goto error;
usec, 0,
if (r < 0)
goto error;
if (r < 0)
client_stop(client, r);
return 0;
}
void *userdata) {
return 0;
}
int r;
}
if (r < 0) {
client_stop(client, r);
return 0;
}
usec);
}
void *userdata) {
int r;
if (r < 0) {
client_stop(client, r);
return 0;
}
}
int r;
r = dhcp_lease_new(&lease);
if (r < 0)
return r;
if (r != DHCP_OFFER)
return -ENOMSG;
return -ENOMSG;
return 0;
}
int r;
r = dhcp_lease_new(&lease);
if (r < 0)
return r;
if (r == DHCP_NAK) {
return DHCP_EVENT_NO_LEASE;
}
if (r != DHCP_ACK)
return -ENOMSG;
return -ENOMSG;
r = DHCP_EVENT_IP_CHANGE;
}
}
return r;
}
+ (random_u32() & 0x1fffff);
}
int r;
return -EINVAL;
if (next_timeout < usec)
return -EINVAL;
&client->timeout_t1,
10 * USEC_PER_MSEC,
if (r < 0)
return r;
if (r < 0)
return r;
return -EINVAL;
return -EINVAL;
if (next_timeout < usec)
return -EINVAL;
&client->timeout_t2,
10 * USEC_PER_MSEC,
if (r < 0)
return r;
if (r < 0)
return r;
if (next_timeout < usec)
return -EINVAL;
10 * USEC_PER_MSEC,
if (r < 0)
return r;
if (r < 0)
return r;
return 0;
}
int r = 0, notify_event = 0;
if (len < DHCP_MESSAGE_SIZE) {
"ignoring", len);
return 0;
}
return 0;
}
"expected (%u): ignoring",
return 0;
}
ETHER_ADDR_LEN)) {
"expected: ignoring");
return 0;
}
case DHCP_STATE_SELECTING:
if (r >= 0) {
time_now, 0,
client);
if (r < 0)
goto error;
if (r < 0)
goto error;
}
break;
case DHCP_STATE_REQUESTING:
case DHCP_STATE_RENEWING:
case DHCP_STATE_REBINDING:
if (r == DHCP_EVENT_NO_LEASE)
goto error;
if (r >= 0) {
else if (r != DHCP_EVENT_IP_ACQUIRE)
notify_event = r;
if (r < 0)
goto error;
if (notify_event)
}
r = 0;
break;
case DHCP_STATE_INIT:
case DHCP_STATE_INIT_REBOOT:
case DHCP_STATE_REBOOTING:
case DHCP_STATE_BOUND:
break;
}
if (r < 0 || r == DHCP_EVENT_NO_LEASE)
return client_stop(client, r);
return 0;
}
assert(s);
if (r < 0 || buflen <= 0)
if (!message)
return -ENOMEM;
if (len < 0)
return 0;
if (r < 0)
return client_stop(client, r);
time_now);
}
.msg_iovlen = 1,
.msg_control = cmsgbuf,
.msg_controllen = sizeof(cmsgbuf),
};
bool checksum = true;
assert(s);
if (r < 0 || buflen <= 0)
if (!packet)
return -ENOMEM;
if (len < 0) {
return 0;
}
break;
}
}
if (r < 0)
return 0;
len -= DHCP_IP_UDP_SIZE;
if (r < 0)
return client_stop(client, r);
}
int r;
if (r < 0) {
client_stop(client, r);
return r;
}
client->start_time);
}
}
int priority) {
int r;
if (event)
else {
if (r < 0)
return 0;
}
return 0;
}
return 0;
}
if (!client)
return NULL;
}
if (!client)
return;
}
if (!client)
return -ENOMEM;
return -ENOMEM;
return 0;
}