2011-07-06 13:02:19 +00:00
|
|
|
/*
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
* Copyright (C) 2010,2011 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GRUB 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <grub/net.h>
|
|
|
|
#include <grub/env.h>
|
|
|
|
#include <grub/i18n.h>
|
|
|
|
#include <grub/command.h>
|
|
|
|
#include <grub/net/ip.h>
|
|
|
|
#include <grub/net/netbuff.h>
|
|
|
|
#include <grub/net/udp.h>
|
|
|
|
#include <grub/datetime.h>
|
|
|
|
|
2019-03-07 15:14:15 +00:00
|
|
|
struct grub_dhcp_discover_options
|
|
|
|
{
|
|
|
|
grub_uint8_t magic[4];
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
grub_uint8_t code;
|
|
|
|
grub_uint8_t len;
|
|
|
|
grub_uint8_t data;
|
|
|
|
} GRUB_PACKED message_type;
|
|
|
|
grub_uint8_t end;
|
|
|
|
} GRUB_PACKED;
|
|
|
|
|
|
|
|
struct grub_dhcp_request_options
|
|
|
|
{
|
|
|
|
grub_uint8_t magic[4];
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
grub_uint8_t code;
|
|
|
|
grub_uint8_t len;
|
|
|
|
grub_uint8_t data;
|
|
|
|
} GRUB_PACKED message_type;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
grub_uint8_t type;
|
|
|
|
grub_uint8_t len;
|
|
|
|
grub_uint32_t data;
|
|
|
|
} GRUB_PACKED server_identifier;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
grub_uint8_t type;
|
|
|
|
grub_uint8_t len;
|
|
|
|
grub_uint32_t data;
|
|
|
|
} GRUB_PACKED requested_ip;
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
grub_uint8_t type;
|
|
|
|
grub_uint8_t len;
|
|
|
|
grub_uint8_t data[7];
|
|
|
|
} GRUB_PACKED parameter_request;
|
|
|
|
grub_uint8_t end;
|
|
|
|
} GRUB_PACKED;
|
|
|
|
|
2019-03-07 15:14:09 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
GRUB_DHCP_OPT_OVERLOAD_FILE = 1,
|
|
|
|
GRUB_DHCP_OPT_OVERLOAD_SNAME = 2,
|
|
|
|
};
|
2019-03-07 15:14:14 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
GRUB_DHCP_MESSAGE_UNKNOWN,
|
|
|
|
GRUB_DHCP_MESSAGE_DISCOVER,
|
|
|
|
GRUB_DHCP_MESSAGE_OFFER,
|
|
|
|
GRUB_DHCP_MESSAGE_REQUEST,
|
|
|
|
GRUB_DHCP_MESSAGE_DECLINE,
|
|
|
|
GRUB_DHCP_MESSAGE_ACK,
|
|
|
|
GRUB_DHCP_MESSAGE_NAK,
|
|
|
|
GRUB_DHCP_MESSAGE_RELEASE,
|
|
|
|
GRUB_DHCP_MESSAGE_INFORM,
|
|
|
|
};
|
|
|
|
|
2019-03-07 15:14:15 +00:00
|
|
|
#define GRUB_BOOTP_MAX_OPTIONS_SIZE 64
|
|
|
|
|
2019-03-07 15:14:14 +00:00
|
|
|
/* Max timeout when waiting for BOOTP/DHCP reply */
|
|
|
|
#define GRUB_DHCP_MAX_PACKET_TIMEOUT 32
|
2019-03-07 15:14:09 +00:00
|
|
|
|
2019-03-07 15:14:10 +00:00
|
|
|
#define GRUB_BOOTP_MAX_OPTIONS_SIZE 64
|
|
|
|
|
2019-03-07 15:14:12 +00:00
|
|
|
/* Max timeout when waiting for BOOTP/DHCP reply */
|
|
|
|
#define GRUB_DHCP_MAX_PACKET_TIMEOUT 32
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
static const void *
|
|
|
|
find_dhcp_option (const struct grub_net_bootp_packet *bp, grub_size_t size,
|
|
|
|
grub_uint8_t opt_code, grub_uint8_t *opt_len)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2019-03-07 15:14:08 +00:00
|
|
|
const grub_uint8_t *ptr;
|
2019-03-07 15:14:09 +00:00
|
|
|
grub_uint8_t overload = 0;
|
|
|
|
int end = 0;
|
2019-03-07 15:14:08 +00:00
|
|
|
grub_size_t i;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
if (opt_len)
|
|
|
|
*opt_len = 0;
|
|
|
|
|
|
|
|
/* Is the packet big enough to hold at least the magic cookie? */
|
|
|
|
if (size < sizeof (*bp) + sizeof (grub_uint32_t))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pointer arithmetic to point behind the common stub packet, where
|
|
|
|
* the options start.
|
|
|
|
*/
|
|
|
|
ptr = (grub_uint8_t *) (bp + 1);
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
if (ptr[0] != GRUB_NET_BOOTP_RFC1048_MAGIC_0
|
|
|
|
|| ptr[1] != GRUB_NET_BOOTP_RFC1048_MAGIC_1
|
|
|
|
|| ptr[2] != GRUB_NET_BOOTP_RFC1048_MAGIC_2
|
|
|
|
|| ptr[3] != GRUB_NET_BOOTP_RFC1048_MAGIC_3)
|
2019-03-07 15:14:08 +00:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
size -= sizeof (*bp);
|
|
|
|
i = sizeof (grub_uint32_t);
|
|
|
|
|
2019-03-07 15:14:09 +00:00
|
|
|
again:
|
2019-03-07 15:14:08 +00:00
|
|
|
while (i < size)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
|
|
|
grub_uint8_t tagtype;
|
|
|
|
grub_uint8_t taglength;
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
tagtype = ptr[i++];
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
/* Pad tag. */
|
2011-12-16 16:37:47 +00:00
|
|
|
if (tagtype == GRUB_NET_BOOTP_PAD)
|
2011-07-06 13:02:19 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* End tag. */
|
2011-12-16 16:37:47 +00:00
|
|
|
if (tagtype == GRUB_NET_BOOTP_END)
|
2019-03-07 15:14:09 +00:00
|
|
|
{
|
|
|
|
end = 1;
|
|
|
|
break;
|
|
|
|
}
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
if (i >= size)
|
|
|
|
return NULL;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
taglength = ptr[i++];
|
|
|
|
if (i + taglength >= size)
|
|
|
|
return NULL;
|
2012-06-20 21:46:50 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
/* FIXME RFC 3396 options concatentation */
|
|
|
|
if (tagtype == opt_code)
|
|
|
|
{
|
|
|
|
if (opt_len)
|
|
|
|
*opt_len = taglength;
|
|
|
|
return &ptr[i];
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:09 +00:00
|
|
|
if (tagtype == GRUB_NET_DHCP_OVERLOAD && taglength == 1)
|
|
|
|
overload = ptr[i];
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
i += taglength;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
2019-03-07 15:14:08 +00:00
|
|
|
|
2019-03-07 15:14:09 +00:00
|
|
|
if (!end)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* RFC2131, 4.1, 23ff:
|
|
|
|
* If the options in a DHCP message extend into the 'sname' and 'file'
|
|
|
|
* fields, the 'option overload' option MUST appear in the 'options'
|
|
|
|
* field, with value 1, 2 or 3, as specified in RFC 1533. If the
|
|
|
|
* 'option overload' option is present in the 'options' field, the
|
|
|
|
* options in the 'options' field MUST be terminated by an 'end' option,
|
|
|
|
* and MAY contain one or more 'pad' options to fill the options field.
|
|
|
|
* The options in the 'sname' and 'file' fields (if in use as indicated
|
|
|
|
* by the 'options overload' option) MUST begin with the first octet of
|
|
|
|
* the field, MUST be terminated by an 'end' option, and MUST be
|
|
|
|
* followed by 'pad' options to fill the remainder of the field. Any
|
|
|
|
* individual option in the 'options', 'sname' and 'file' fields MUST be
|
|
|
|
* entirely contained in that field. The options in the 'options' field
|
|
|
|
* MUST be interpreted first, so that any 'option overload' options may
|
|
|
|
* be interpreted. The 'file' field MUST be interpreted next (if the
|
|
|
|
* 'option overload' option indicates that the 'file' field contains
|
|
|
|
* DHCP options), followed by the 'sname' field.
|
|
|
|
*
|
|
|
|
* FIXME: We do not explicitly check for trailing 'pad' options here.
|
|
|
|
*/
|
|
|
|
end = 0;
|
|
|
|
if (overload & GRUB_DHCP_OPT_OVERLOAD_FILE)
|
|
|
|
{
|
|
|
|
overload &= ~GRUB_DHCP_OPT_OVERLOAD_FILE;
|
|
|
|
ptr = (grub_uint8_t *) &bp->boot_file[0];
|
|
|
|
size = sizeof (bp->boot_file);
|
|
|
|
i = 0;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overload & GRUB_DHCP_OPT_OVERLOAD_SNAME)
|
|
|
|
{
|
|
|
|
overload &= ~GRUB_DHCP_OPT_OVERLOAD_SNAME;
|
|
|
|
ptr = (grub_uint8_t *) &bp->server_name[0];
|
|
|
|
size = sizeof (bp->server_name);
|
|
|
|
i = 0;
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
return NULL;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
2013-11-07 00:11:36 +00:00
|
|
|
#define OFFSET_OF(x, y) ((grub_size_t)((grub_uint8_t *)((y)->x) - (grub_uint8_t *)(y)))
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
struct grub_net_network_level_interface *
|
|
|
|
grub_net_configure_by_dhcp_ack (const char *name,
|
|
|
|
struct grub_net_card *card,
|
|
|
|
grub_net_interface_flags_t flags,
|
|
|
|
const struct grub_net_bootp_packet *bp,
|
|
|
|
grub_size_t size,
|
|
|
|
int is_def, char **device, char **path)
|
|
|
|
{
|
|
|
|
grub_net_network_level_address_t addr;
|
|
|
|
grub_net_link_level_address_t hwaddr;
|
|
|
|
struct grub_net_network_level_interface *inter;
|
2012-06-20 21:46:50 +00:00
|
|
|
int mask = -1;
|
2016-11-22 17:42:23 +00:00
|
|
|
char server_ip[sizeof ("xxx.xxx.xxx.xxx")];
|
2019-03-07 15:14:08 +00:00
|
|
|
const grub_uint8_t *opt;
|
2019-03-07 15:14:13 +00:00
|
|
|
grub_uint8_t opt_len, overload = 0;
|
|
|
|
const char *boot_file = 0, *server_name = 0;
|
|
|
|
grub_size_t boot_file_len, server_name_len;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
addr.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
|
|
|
|
addr.ipv4 = bp->your_ip;
|
|
|
|
|
|
|
|
if (device)
|
|
|
|
*device = 0;
|
|
|
|
if (path)
|
|
|
|
*path = 0;
|
|
|
|
|
|
|
|
grub_memcpy (hwaddr.mac, bp->mac_addr,
|
|
|
|
bp->hw_len < sizeof (hwaddr.mac) ? bp->hw_len
|
|
|
|
: sizeof (hwaddr.mac));
|
|
|
|
hwaddr.type = GRUB_NET_LINK_LEVEL_PROTOCOL_ETHERNET;
|
|
|
|
|
2011-10-12 08:20:55 +00:00
|
|
|
inter = grub_net_add_addr (name, card, &addr, &hwaddr, flags);
|
2016-03-20 07:32:33 +00:00
|
|
|
if (!inter)
|
|
|
|
return 0;
|
|
|
|
|
2019-03-07 15:14:13 +00:00
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_DHCP_OVERLOAD, &opt_len);
|
|
|
|
if (opt && opt_len == 1)
|
|
|
|
overload = *opt;
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_DHCP_TFTP_SERVER_NAME, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
{
|
|
|
|
server_name = (const char *) opt;
|
|
|
|
server_name_len = opt_len;
|
|
|
|
}
|
|
|
|
else if (size > OFFSET_OF (server_name, bp) && !(overload & GRUB_DHCP_OPT_OVERLOAD_SNAME) &&
|
|
|
|
bp->server_name[0])
|
|
|
|
{
|
|
|
|
server_name = bp->server_name;
|
|
|
|
server_name_len = sizeof (bp->server_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_DHCP_BOOTFILE_NAME, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
{
|
|
|
|
boot_file = (const char *) opt;
|
|
|
|
boot_file_len = opt_len;
|
|
|
|
}
|
|
|
|
else if (size > OFFSET_OF (boot_file, bp) && !(overload && GRUB_DHCP_OPT_OVERLOAD_FILE) &&
|
|
|
|
bp->boot_file[0])
|
|
|
|
{
|
|
|
|
boot_file = bp->boot_file;
|
|
|
|
boot_file_len = sizeof (bp->boot_file);
|
|
|
|
}
|
|
|
|
|
2016-11-22 17:42:23 +00:00
|
|
|
if (bp->server_ip)
|
|
|
|
{
|
|
|
|
grub_snprintf (server_ip, sizeof (server_ip), "%d.%d.%d.%d",
|
|
|
|
((grub_uint8_t *) &bp->server_ip)[0],
|
|
|
|
((grub_uint8_t *) &bp->server_ip)[1],
|
|
|
|
((grub_uint8_t *) &bp->server_ip)[2],
|
|
|
|
((grub_uint8_t *) &bp->server_ip)[3]);
|
|
|
|
grub_env_set_net_property (name, "next_server", server_ip, sizeof (server_ip));
|
|
|
|
grub_print_error ();
|
|
|
|
}
|
|
|
|
|
2011-07-06 13:02:19 +00:00
|
|
|
if (is_def)
|
|
|
|
grub_net_default_server = 0;
|
2012-06-21 20:15:10 +00:00
|
|
|
if (is_def && !grub_net_default_server && bp->server_ip)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2016-11-22 17:42:23 +00:00
|
|
|
grub_net_default_server = grub_strdup (server_ip);
|
2011-07-06 13:02:19 +00:00
|
|
|
grub_print_error ();
|
|
|
|
}
|
|
|
|
|
2013-05-07 10:05:36 +00:00
|
|
|
if (is_def)
|
2013-07-14 18:59:00 +00:00
|
|
|
{
|
|
|
|
grub_env_set ("net_default_interface", name);
|
|
|
|
grub_env_export ("net_default_interface");
|
|
|
|
}
|
2013-05-07 10:05:36 +00:00
|
|
|
|
2012-06-21 20:15:10 +00:00
|
|
|
if (device && !*device && bp->server_ip)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2016-11-22 17:42:23 +00:00
|
|
|
*device = grub_xasprintf ("tftp,%s", server_ip);
|
2011-07-06 13:02:19 +00:00
|
|
|
grub_print_error ();
|
|
|
|
}
|
2019-03-07 15:14:13 +00:00
|
|
|
|
|
|
|
if (server_name)
|
2012-06-21 20:15:10 +00:00
|
|
|
{
|
2019-03-07 15:14:13 +00:00
|
|
|
grub_env_set_net_property (name, "dhcp_server_name", server_name, server_name_len);
|
2012-06-21 20:15:10 +00:00
|
|
|
if (is_def && !grub_net_default_server)
|
|
|
|
{
|
2019-03-07 15:14:13 +00:00
|
|
|
grub_net_default_server = grub_strdup (server_name);
|
2012-06-21 20:15:10 +00:00
|
|
|
grub_print_error ();
|
|
|
|
}
|
|
|
|
if (device && !*device)
|
|
|
|
{
|
2019-03-07 15:14:13 +00:00
|
|
|
*device = grub_xasprintf ("tftp,%s", server_name);
|
2012-06-21 20:15:10 +00:00
|
|
|
grub_print_error ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:13 +00:00
|
|
|
if (boot_file)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2019-03-07 15:14:13 +00:00
|
|
|
grub_env_set_net_property (name, "boot_file", boot_file, boot_file_len);
|
|
|
|
if (path)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2019-03-07 15:14:13 +00:00
|
|
|
*path = grub_strndup (boot_file, boot_file_len);
|
|
|
|
grub_print_error ();
|
|
|
|
if (*path)
|
|
|
|
{
|
|
|
|
char *slash;
|
|
|
|
slash = grub_strrchr (*path, '/');
|
|
|
|
if (slash)
|
|
|
|
*slash = 0;
|
|
|
|
else
|
|
|
|
**path = 0;
|
|
|
|
}
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-07 15:14:08 +00:00
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_NETMASK, &opt_len);
|
|
|
|
if (opt && opt_len == 4)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
if (!(opt[i / 8] & (1 << (7 - (i % 8)))))
|
|
|
|
break;
|
|
|
|
mask = i;
|
|
|
|
}
|
2012-06-20 21:46:50 +00:00
|
|
|
grub_net_add_ipv4_local (inter, mask);
|
2019-03-07 15:14:08 +00:00
|
|
|
|
|
|
|
/* We do not implement dead gateway detection and the first entry SHOULD
|
|
|
|
be preferred one */
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_ROUTER, &opt_len);
|
|
|
|
if (opt && opt_len && !(opt_len & 3))
|
|
|
|
{
|
|
|
|
grub_net_network_level_netaddress_t target;
|
|
|
|
grub_net_network_level_address_t gw;
|
|
|
|
char *rname;
|
|
|
|
|
|
|
|
target.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
|
|
|
|
target.ipv4.base = 0;
|
|
|
|
target.ipv4.masksize = 0;
|
|
|
|
gw.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
|
|
|
|
gw.ipv4 = grub_get_unaligned32 (opt);
|
|
|
|
rname = grub_xasprintf ("%s:default", name);
|
|
|
|
if (rname)
|
|
|
|
grub_net_add_route_gw (rname, target, gw, 0);
|
|
|
|
grub_free (rname);
|
|
|
|
}
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_DNS, &opt_len);
|
|
|
|
if (opt && opt_len && !(opt_len & 3))
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < opt_len / 4; i++)
|
|
|
|
{
|
|
|
|
struct grub_net_network_level_address s;
|
|
|
|
|
|
|
|
s.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
|
|
|
|
s.ipv4 = grub_get_unaligned32 (opt);
|
|
|
|
s.option = DNS_OPTION_PREFER_IPV4;
|
|
|
|
grub_net_add_dns_server (&s);
|
|
|
|
opt += 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_HOSTNAME, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
grub_env_set_net_property (name, "hostname", (const char *) opt, opt_len);
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_DOMAIN, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
grub_env_set_net_property (name, "domain", (const char *) opt, opt_len);
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_ROOT_PATH, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
grub_env_set_net_property (name, "rootpath", (const char *) opt, opt_len);
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_BOOTP_EXTENSIONS_PATH, &opt_len);
|
|
|
|
if (opt && opt_len)
|
|
|
|
grub_env_set_net_property (name, "extensionspath", (const char *) opt, opt_len);
|
2012-06-20 21:46:50 +00:00
|
|
|
|
2011-07-06 13:02:19 +00:00
|
|
|
inter->dhcp_ack = grub_malloc (size);
|
|
|
|
if (inter->dhcp_ack)
|
|
|
|
{
|
|
|
|
grub_memcpy (inter->dhcp_ack, bp, size);
|
|
|
|
inter->dhcp_acklen = size;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
|
|
|
|
return inter;
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:10 +00:00
|
|
|
static grub_err_t
|
|
|
|
send_dhcp_packet (struct grub_net_network_level_interface *iface)
|
|
|
|
{
|
|
|
|
grub_err_t err;
|
|
|
|
struct grub_net_bootp_packet *pack;
|
|
|
|
struct grub_datetime date;
|
|
|
|
grub_int32_t t = 0;
|
|
|
|
struct grub_net_buff *nb;
|
|
|
|
struct udphdr *udph;
|
|
|
|
grub_net_network_level_address_t target;
|
|
|
|
grub_net_link_level_address_t ll_target;
|
|
|
|
|
2019-03-07 15:14:15 +00:00
|
|
|
static struct grub_dhcp_discover_options discover_options =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_0,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_1,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_2,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
GRUB_NET_DHCP_MESSAGE_TYPE,
|
|
|
|
sizeof (discover_options.message_type.data),
|
|
|
|
GRUB_DHCP_MESSAGE_DISCOVER,
|
|
|
|
},
|
|
|
|
GRUB_NET_BOOTP_END,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct grub_dhcp_request_options request_options =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_0,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_1,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_2,
|
|
|
|
GRUB_NET_BOOTP_RFC1048_MAGIC_3,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
GRUB_NET_DHCP_MESSAGE_TYPE,
|
|
|
|
sizeof (request_options.message_type.data),
|
|
|
|
GRUB_DHCP_MESSAGE_REQUEST,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
GRUB_NET_DHCP_SERVER_IDENTIFIER,
|
|
|
|
sizeof (request_options.server_identifier.data),
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
GRUB_NET_DHCP_REQUESTED_IP_ADDRESS,
|
|
|
|
sizeof (request_options.requested_ip.data),
|
|
|
|
0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
GRUB_NET_DHCP_PARAMETER_REQUEST_LIST,
|
|
|
|
sizeof (request_options.parameter_request.data),
|
|
|
|
{
|
|
|
|
GRUB_NET_BOOTP_NETMASK,
|
|
|
|
GRUB_NET_BOOTP_ROUTER,
|
|
|
|
GRUB_NET_BOOTP_DNS,
|
|
|
|
GRUB_NET_BOOTP_DOMAIN,
|
|
|
|
GRUB_NET_BOOTP_HOSTNAME,
|
|
|
|
GRUB_NET_BOOTP_ROOT_PATH,
|
|
|
|
GRUB_NET_BOOTP_EXTENSIONS_PATH,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
GRUB_NET_BOOTP_END,
|
|
|
|
};
|
|
|
|
|
|
|
|
COMPILE_TIME_ASSERT (sizeof (discover_options) <= GRUB_BOOTP_MAX_OPTIONS_SIZE);
|
|
|
|
COMPILE_TIME_ASSERT (sizeof (request_options) <= GRUB_BOOTP_MAX_OPTIONS_SIZE);
|
|
|
|
|
2019-03-07 15:14:10 +00:00
|
|
|
nb = grub_netbuff_alloc (sizeof (*pack) + GRUB_BOOTP_MAX_OPTIONS_SIZE + 128);
|
|
|
|
if (!nb)
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
err = grub_netbuff_reserve (nb, sizeof (*pack) + GRUB_BOOTP_MAX_OPTIONS_SIZE + 128);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = grub_netbuff_push (nb, GRUB_BOOTP_MAX_OPTIONS_SIZE);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
grub_memset (nb->data, 0, GRUB_BOOTP_MAX_OPTIONS_SIZE);
|
2019-03-07 15:14:15 +00:00
|
|
|
if (!iface->srv_id)
|
|
|
|
{
|
|
|
|
grub_memcpy (nb->data, &discover_options, sizeof (discover_options));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
struct grub_dhcp_request_options *ro = (struct grub_dhcp_request_options *) nb->data;
|
|
|
|
|
|
|
|
grub_memcpy (nb->data, &request_options, sizeof (request_options));
|
|
|
|
/* my_ip and srv_id are stored in network order so do not need conversion. */
|
|
|
|
grub_set_unaligned32 (&ro->server_identifier.data, iface->srv_id);
|
|
|
|
grub_set_unaligned32 (&ro->requested_ip.data, iface->my_ip);
|
|
|
|
}
|
2019-03-07 15:14:10 +00:00
|
|
|
|
|
|
|
err = grub_netbuff_push (nb, sizeof (*pack));
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
pack = (void *) nb->data;
|
|
|
|
grub_memset (pack, 0, sizeof (*pack));
|
|
|
|
pack->opcode = 1;
|
|
|
|
pack->hw_type = 1;
|
|
|
|
pack->hw_len = 6;
|
|
|
|
err = grub_get_datetime (&date);
|
|
|
|
if (err || !grub_datetime2unixtime (&date, &t))
|
|
|
|
{
|
|
|
|
grub_errno = GRUB_ERR_NONE;
|
|
|
|
t = 0;
|
|
|
|
}
|
|
|
|
pack->seconds = grub_cpu_to_be16 (t);
|
2019-03-07 15:14:15 +00:00
|
|
|
if (!iface->srv_id)
|
|
|
|
iface->xid = pack->ident = grub_cpu_to_be32 (t);
|
|
|
|
else
|
|
|
|
pack->ident = iface->xid;
|
2019-03-07 15:14:10 +00:00
|
|
|
|
|
|
|
grub_memcpy (&pack->mac_addr, &iface->hwaddress.mac, 6);
|
|
|
|
|
|
|
|
grub_netbuff_push (nb, sizeof (*udph));
|
|
|
|
|
|
|
|
udph = (struct udphdr *) nb->data;
|
|
|
|
udph->src = grub_cpu_to_be16_compile_time (68);
|
|
|
|
udph->dst = grub_cpu_to_be16_compile_time (67);
|
|
|
|
udph->chksum = 0;
|
|
|
|
udph->len = grub_cpu_to_be16 (nb->tail - nb->data);
|
|
|
|
target.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV4;
|
|
|
|
target.ipv4 = 0xffffffff;
|
|
|
|
err = grub_net_link_layer_resolve (iface, &target, &ll_target);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
udph->chksum = grub_net_ip_transport_checksum (nb, GRUB_NET_IP_UDP,
|
|
|
|
&iface->address,
|
|
|
|
&target);
|
|
|
|
|
|
|
|
err = grub_net_send_ip_packet (iface, &target, &ll_target, nb,
|
|
|
|
GRUB_NET_IP_UDP);
|
|
|
|
|
|
|
|
out:
|
|
|
|
grub_netbuff_free (nb);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:11 +00:00
|
|
|
/*
|
|
|
|
* This is called directly from net/ip.c:handle_dgram(), because those
|
|
|
|
* BOOTP/DHCP packets are a bit special due to their improper
|
|
|
|
* sender/receiver IP fields.
|
|
|
|
*/
|
2011-07-06 13:02:19 +00:00
|
|
|
void
|
|
|
|
grub_net_process_dhcp (struct grub_net_buff *nb,
|
2019-03-07 15:14:11 +00:00
|
|
|
struct grub_net_network_level_interface *iface)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
|
|
|
char *name;
|
2019-03-07 15:14:11 +00:00
|
|
|
struct grub_net_card *card = iface->card;
|
|
|
|
const struct grub_net_bootp_packet *bp = (const struct grub_net_bootp_packet *) nb->data;
|
|
|
|
grub_size_t size = nb->tail - nb->data;
|
2019-03-07 15:14:14 +00:00
|
|
|
const grub_uint8_t *opt;
|
|
|
|
grub_uint8_t opt_len, type;
|
|
|
|
grub_uint32_t srv_id = 0;
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_DHCP_MESSAGE_TYPE, &opt_len);
|
|
|
|
if (opt && opt_len == 1)
|
|
|
|
type = *opt;
|
|
|
|
else
|
|
|
|
type = GRUB_DHCP_MESSAGE_UNKNOWN;
|
|
|
|
|
|
|
|
opt = find_dhcp_option (bp, size, GRUB_NET_DHCP_SERVER_IDENTIFIER, &opt_len);
|
|
|
|
if (opt && opt_len == sizeof (srv_id))
|
|
|
|
srv_id = grub_get_unaligned32 (opt);
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:14 +00:00
|
|
|
/*
|
|
|
|
* If we received BOOTP reply or DHCPACK, proceed with configuration.
|
|
|
|
* Otherwise store offered address and server id for later processing
|
|
|
|
* of DHCPACK.
|
|
|
|
* xid and srv_id are stored in network order so do not need conversion.
|
|
|
|
*/
|
|
|
|
if ((!iface->srv_id && type == GRUB_DHCP_MESSAGE_UNKNOWN)
|
|
|
|
|| (iface->srv_id && type == GRUB_DHCP_MESSAGE_ACK
|
|
|
|
&& bp->ident == iface->xid
|
|
|
|
&& srv_id == iface->srv_id))
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2019-03-07 15:14:14 +00:00
|
|
|
name = grub_xasprintf ("%s:dhcp", card->name);
|
|
|
|
if (!name)
|
|
|
|
{
|
|
|
|
grub_print_error ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
grub_net_configure_by_dhcp_ack (name, card, 0, bp, size, 0, 0, 0);
|
|
|
|
grub_free (name);
|
|
|
|
if (grub_errno)
|
|
|
|
grub_print_error ();
|
|
|
|
else
|
|
|
|
grub_net_network_level_interface_unregister (iface);
|
|
|
|
}
|
|
|
|
else if (!iface->srv_id && type == GRUB_DHCP_MESSAGE_OFFER && srv_id)
|
|
|
|
{
|
|
|
|
iface->srv_id = srv_id;
|
|
|
|
iface->my_ip = bp->your_ip;
|
|
|
|
/* Reset retransmission timer */
|
|
|
|
iface->dhcp_tmo = iface->dhcp_tmo_left = 1;
|
|
|
|
}
|
|
|
|
else if (iface->srv_id && type == GRUB_DHCP_MESSAGE_NAK
|
|
|
|
&& bp->ident == iface->xid
|
|
|
|
&& srv_id == iface->srv_id)
|
|
|
|
{
|
|
|
|
iface->xid = iface->srv_id = iface->my_ip = 0;
|
|
|
|
/* Reset retransmission timer */
|
|
|
|
iface->dhcp_tmo = iface->dhcp_tmo_left = 1;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char
|
|
|
|
hexdigit (grub_uint8_t val)
|
|
|
|
{
|
|
|
|
if (val < 10)
|
|
|
|
return val + '0';
|
|
|
|
return val + 'a' - 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
static grub_err_t
|
|
|
|
grub_cmd_dhcpopt (struct grub_command *cmd __attribute__ ((unused)),
|
|
|
|
int argc, char **args)
|
|
|
|
{
|
|
|
|
struct grub_net_network_level_interface *inter;
|
2019-03-07 15:14:08 +00:00
|
|
|
unsigned num;
|
|
|
|
const grub_uint8_t *ptr;
|
2011-07-06 13:02:19 +00:00
|
|
|
grub_uint8_t taglength;
|
|
|
|
|
|
|
|
if (argc < 4)
|
2012-02-12 14:25:25 +00:00
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
|
|
|
N_("four arguments expected"));
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
FOR_NET_NETWORK_LEVEL_INTERFACES (inter)
|
|
|
|
if (grub_strcmp (inter->name, args[1]) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (!inter)
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
2012-02-08 18:26:01 +00:00
|
|
|
N_("unrecognised network interface `%s'"), args[1]);
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
if (!inter->dhcp_ack)
|
|
|
|
return grub_error (GRUB_ERR_IO, N_("no DHCP info found"));
|
|
|
|
|
|
|
|
ptr = inter->dhcp_ack->vendor;
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
/* This duplicates check in find_dhcp_option to preserve previous error return */
|
|
|
|
if (inter->dhcp_acklen < OFFSET_OF (vendor, inter->dhcp_ack) + sizeof (grub_uint32_t)
|
|
|
|
|| ptr[0] != GRUB_NET_BOOTP_RFC1048_MAGIC_0
|
2011-07-06 13:02:19 +00:00
|
|
|
|| ptr[1] != GRUB_NET_BOOTP_RFC1048_MAGIC_1
|
|
|
|
|| ptr[2] != GRUB_NET_BOOTP_RFC1048_MAGIC_2
|
|
|
|
|| ptr[3] != GRUB_NET_BOOTP_RFC1048_MAGIC_3)
|
|
|
|
return grub_error (GRUB_ERR_IO, N_("no DHCP options found"));
|
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
num = grub_strtoul (args[2], 0, 0);
|
|
|
|
if (grub_errno)
|
|
|
|
return grub_errno;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
/* Exclude PAD (0) and END (255) option codes */
|
|
|
|
if (num == 0 || num > 254)
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("invalid DHCP option code"));
|
2011-07-06 13:02:19 +00:00
|
|
|
|
2019-03-07 15:14:08 +00:00
|
|
|
ptr = find_dhcp_option (inter->dhcp_ack, inter->dhcp_acklen, num, &taglength);
|
|
|
|
if (!ptr)
|
|
|
|
return grub_error (GRUB_ERR_IO, N_("no DHCP option %u found"), num);
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
if (grub_strcmp (args[3], "string") == 0)
|
|
|
|
{
|
2016-03-19 06:39:30 +00:00
|
|
|
grub_err_t err = GRUB_ERR_NONE;
|
2011-07-06 13:02:19 +00:00
|
|
|
char *val = grub_malloc (taglength + 1);
|
|
|
|
if (!val)
|
|
|
|
return grub_errno;
|
|
|
|
grub_memcpy (val, ptr, taglength);
|
|
|
|
val[taglength] = 0;
|
|
|
|
if (args[0][0] == '-' && args[0][1] == 0)
|
|
|
|
grub_printf ("%s\n", val);
|
|
|
|
else
|
2016-03-19 06:39:30 +00:00
|
|
|
err = grub_env_set (args[0], val);
|
|
|
|
grub_free (val);
|
|
|
|
return err;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (grub_strcmp (args[3], "number") == 0)
|
|
|
|
{
|
|
|
|
grub_uint64_t val = 0;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < taglength; i++)
|
|
|
|
val = (val << 8) | ptr[i];
|
|
|
|
if (args[0][0] == '-' && args[0][1] == 0)
|
|
|
|
grub_printf ("%llu\n", (unsigned long long) val);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char valn[64];
|
2013-12-21 12:35:28 +00:00
|
|
|
grub_snprintf (valn, sizeof (valn), "%lld\n", (unsigned long long) val);
|
2011-07-06 13:02:19 +00:00
|
|
|
return grub_env_set (args[0], valn);
|
|
|
|
}
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (grub_strcmp (args[3], "hex") == 0)
|
|
|
|
{
|
2016-03-19 06:39:30 +00:00
|
|
|
grub_err_t err = GRUB_ERR_NONE;
|
2011-07-06 13:02:19 +00:00
|
|
|
char *val = grub_malloc (2 * taglength + 1);
|
|
|
|
int i;
|
|
|
|
if (!val)
|
|
|
|
return grub_errno;
|
|
|
|
for (i = 0; i < taglength; i++)
|
|
|
|
{
|
|
|
|
val[2 * i] = hexdigit (ptr[i] >> 4);
|
|
|
|
val[2 * i + 1] = hexdigit (ptr[i] & 0xf);
|
|
|
|
}
|
|
|
|
val[2 * taglength] = 0;
|
|
|
|
if (args[0][0] == '-' && args[0][1] == 0)
|
|
|
|
grub_printf ("%s\n", val);
|
|
|
|
else
|
2016-03-19 06:39:30 +00:00
|
|
|
err = grub_env_set (args[0], val);
|
|
|
|
grub_free (val);
|
|
|
|
return err;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
2012-02-12 14:25:25 +00:00
|
|
|
N_("unrecognised DHCP option format specification `%s'"),
|
|
|
|
args[3]);
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
2011-10-12 08:20:55 +00:00
|
|
|
/* FIXME: allow to specify mac address. */
|
2011-07-06 13:02:19 +00:00
|
|
|
static grub_err_t
|
|
|
|
grub_cmd_bootp (struct grub_command *cmd __attribute__ ((unused)),
|
|
|
|
int argc, char **args)
|
|
|
|
{
|
|
|
|
struct grub_net_card *card;
|
|
|
|
struct grub_net_network_level_interface *ifaces;
|
|
|
|
grub_size_t ncards = 0;
|
|
|
|
unsigned j = 0;
|
|
|
|
grub_err_t err;
|
2019-03-07 15:14:10 +00:00
|
|
|
unsigned i;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
FOR_NET_CARDS (card)
|
|
|
|
{
|
|
|
|
if (argc > 0 && grub_strcmp (card->name, args[0]) != 0)
|
|
|
|
continue;
|
|
|
|
ncards++;
|
|
|
|
}
|
|
|
|
|
2013-05-11 09:25:29 +00:00
|
|
|
if (ncards == 0)
|
|
|
|
return grub_error (GRUB_ERR_NET_NO_CARD, N_("no network card found"));
|
|
|
|
|
2011-07-06 13:02:19 +00:00
|
|
|
ifaces = grub_zalloc (ncards * sizeof (ifaces[0]));
|
|
|
|
if (!ifaces)
|
|
|
|
return grub_errno;
|
|
|
|
|
|
|
|
j = 0;
|
|
|
|
FOR_NET_CARDS (card)
|
|
|
|
{
|
|
|
|
if (argc > 0 && grub_strcmp (card->name, args[0]) != 0)
|
|
|
|
continue;
|
|
|
|
ifaces[j].card = card;
|
|
|
|
ifaces[j].next = &ifaces[j+1];
|
|
|
|
if (j)
|
|
|
|
ifaces[j].prev = &ifaces[j-1].next;
|
|
|
|
ifaces[j].name = grub_xasprintf ("%s:dhcp_tmp", card->name);
|
|
|
|
card->num_ifaces++;
|
|
|
|
if (!ifaces[j].name)
|
|
|
|
{
|
|
|
|
for (i = 0; i < j; i++)
|
|
|
|
grub_free (ifaces[i].name);
|
|
|
|
grub_free (ifaces);
|
|
|
|
return grub_errno;
|
|
|
|
}
|
|
|
|
ifaces[j].address.type = GRUB_NET_NETWORK_LEVEL_PROTOCOL_DHCP_RECV;
|
|
|
|
grub_memcpy (&ifaces[j].hwaddress, &card->default_address,
|
|
|
|
sizeof (ifaces[j].hwaddress));
|
2019-03-07 15:14:12 +00:00
|
|
|
ifaces[j].dhcp_tmo = ifaces[j].dhcp_tmo_left = 1;
|
2011-07-06 13:02:19 +00:00
|
|
|
j++;
|
|
|
|
}
|
|
|
|
ifaces[ncards - 1].next = grub_net_network_level_interfaces;
|
|
|
|
if (grub_net_network_level_interfaces)
|
|
|
|
grub_net_network_level_interfaces->prev = & ifaces[ncards - 1].next;
|
|
|
|
grub_net_network_level_interfaces = &ifaces[0];
|
|
|
|
ifaces[0].prev = &grub_net_network_level_interfaces;
|
2019-03-07 15:14:12 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Running DHCP restransmission timer is kept per interface in dhcp_tmo_left.
|
|
|
|
* When it runs off, dhcp_tmo is increased exponentionally and dhcp_tmo_left
|
|
|
|
* initialized to it. Max value is 32 which gives approximately 12s total per
|
|
|
|
* packet timeout assuming 200ms poll tick. Timeout is reset when DHCP OFFER
|
|
|
|
* is received, so total timeout is 25s in the worst case.
|
|
|
|
*
|
|
|
|
* DHCP NAK also resets timer and transaction starts again.
|
|
|
|
*
|
|
|
|
* Total wait time is limited to ~25s to prevent endless loop in case of
|
|
|
|
* permanent NAK
|
|
|
|
*/
|
|
|
|
for (i = 0; i < GRUB_DHCP_MAX_PACKET_TIMEOUT * 4; i++)
|
2011-07-06 13:02:19 +00:00
|
|
|
{
|
2019-03-07 15:14:10 +00:00
|
|
|
int need_poll = 0;
|
2011-07-06 13:02:19 +00:00
|
|
|
for (j = 0; j < ncards; j++)
|
|
|
|
{
|
2019-03-07 15:14:12 +00:00
|
|
|
if (!ifaces[j].prev ||
|
|
|
|
ifaces[j].dhcp_tmo > GRUB_DHCP_MAX_PACKET_TIMEOUT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (--ifaces[j].dhcp_tmo_left)
|
|
|
|
{
|
|
|
|
need_poll = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ifaces[j].dhcp_tmo *= 2;
|
|
|
|
if (ifaces[j].dhcp_tmo > GRUB_DHCP_MAX_PACKET_TIMEOUT)
|
2011-07-06 13:02:19 +00:00
|
|
|
continue;
|
2019-03-07 15:14:10 +00:00
|
|
|
|
|
|
|
err = send_dhcp_packet (&ifaces[j]);
|
2011-07-06 13:02:19 +00:00
|
|
|
if (err)
|
2011-07-06 15:41:49 +00:00
|
|
|
{
|
2019-03-07 15:14:10 +00:00
|
|
|
grub_print_error ();
|
2019-03-07 15:14:12 +00:00
|
|
|
/* To ignore it during next poll */
|
|
|
|
ifaces[j].dhcp_tmo = GRUB_DHCP_MAX_PACKET_TIMEOUT + 1;
|
2019-03-07 15:14:10 +00:00
|
|
|
continue;
|
2011-07-06 15:41:49 +00:00
|
|
|
}
|
2019-03-07 15:14:12 +00:00
|
|
|
ifaces[j].dhcp_tmo_left = ifaces[j].dhcp_tmo;
|
2019-03-07 15:14:10 +00:00
|
|
|
need_poll = 1;
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
2019-03-07 15:14:10 +00:00
|
|
|
if (!need_poll)
|
2011-07-06 13:02:19 +00:00
|
|
|
break;
|
2019-03-07 15:14:12 +00:00
|
|
|
grub_net_poll_cards (200, 0);
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = GRUB_ERR_NONE;
|
|
|
|
for (j = 0; j < ncards; j++)
|
|
|
|
{
|
2011-07-06 15:41:49 +00:00
|
|
|
grub_free (ifaces[j].name);
|
2011-07-06 13:02:19 +00:00
|
|
|
if (!ifaces[j].prev)
|
|
|
|
continue;
|
|
|
|
grub_error_push ();
|
|
|
|
grub_net_network_level_interface_unregister (&ifaces[j]);
|
2012-02-12 14:25:25 +00:00
|
|
|
err = grub_error (GRUB_ERR_FILE_NOT_FOUND,
|
|
|
|
N_("couldn't autoconfigure %s"),
|
2011-07-06 13:02:19 +00:00
|
|
|
ifaces[j].card->name);
|
|
|
|
}
|
|
|
|
|
2011-07-06 15:41:49 +00:00
|
|
|
grub_free (ifaces);
|
2011-07-06 13:02:19 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-03-07 15:14:16 +00:00
|
|
|
static grub_command_t cmd_getdhcp, cmd_bootp, cmd_dhcp;
|
2011-07-06 13:02:19 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
grub_bootp_init (void)
|
|
|
|
{
|
|
|
|
cmd_bootp = grub_register_command ("net_bootp", grub_cmd_bootp,
|
2011-11-11 20:44:56 +00:00
|
|
|
N_("[CARD]"),
|
2011-07-06 13:02:19 +00:00
|
|
|
N_("perform a bootp autoconfiguration"));
|
2019-03-07 15:14:16 +00:00
|
|
|
cmd_dhcp = grub_register_command ("net_dhcp", grub_cmd_bootp,
|
|
|
|
N_("[CARD]"),
|
|
|
|
N_("perform a DHCP autoconfiguration"));
|
2011-07-06 13:02:19 +00:00
|
|
|
cmd_getdhcp = grub_register_command ("net_get_dhcp_option", grub_cmd_dhcpopt,
|
|
|
|
N_("VAR INTERFACE NUMBER DESCRIPTION"),
|
|
|
|
N_("retrieve DHCP option and save it into VAR. If VAR is - then print the value."));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
grub_bootp_fini (void)
|
|
|
|
{
|
|
|
|
grub_unregister_command (cmd_getdhcp);
|
|
|
|
grub_unregister_command (cmd_bootp);
|
2019-03-07 15:14:16 +00:00
|
|
|
grub_unregister_command (cmd_dhcp);
|
2011-07-06 13:02:19 +00:00
|
|
|
}
|