2011-07-06 10:53:37 +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/>.
|
|
|
|
*/
|
|
|
|
|
2010-09-16 19:57:31 +00:00
|
|
|
#include <grub/misc.h>
|
|
|
|
#include <grub/mm.h>
|
|
|
|
#include <grub/net/ethernet.h>
|
|
|
|
#include <grub/net/ip.h>
|
|
|
|
#include <grub/net/arp.h>
|
|
|
|
#include <grub/net/netbuff.h>
|
|
|
|
#include <grub/net.h>
|
|
|
|
#include <grub/time.h>
|
|
|
|
#include <grub/net/arp.h>
|
|
|
|
|
2011-07-06 10:53:37 +00:00
|
|
|
#define LLCADDRMASK 0x7f
|
|
|
|
|
|
|
|
struct etherhdr
|
|
|
|
{
|
|
|
|
grub_uint8_t dst[6];
|
|
|
|
grub_uint8_t src[6];
|
|
|
|
grub_uint16_t type;
|
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
|
|
|
struct llchdr
|
|
|
|
{
|
|
|
|
grub_uint8_t dsap;
|
|
|
|
grub_uint8_t ssap;
|
|
|
|
grub_uint8_t ctrl;
|
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
|
|
|
struct snaphdr
|
|
|
|
{
|
|
|
|
grub_uint8_t oui[3];
|
|
|
|
grub_uint16_t type;
|
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2011-06-08 00:59:53 +00:00
|
|
|
grub_err_t
|
2010-09-16 19:57:31 +00:00
|
|
|
send_ethernet_packet (struct grub_net_network_level_interface *inf,
|
|
|
|
struct grub_net_buff *nb,
|
|
|
|
grub_net_link_level_address_t target_addr,
|
|
|
|
grub_uint16_t ethertype)
|
|
|
|
{
|
2011-06-08 00:59:53 +00:00
|
|
|
struct etherhdr *eth;
|
2011-06-18 23:20:53 +00:00
|
|
|
grub_err_t err;
|
2010-09-16 19:57:31 +00:00
|
|
|
|
2011-06-24 19:51:57 +00:00
|
|
|
err = grub_netbuff_push (nb, sizeof (*eth));
|
|
|
|
if (err)
|
2011-06-18 23:20:53 +00:00
|
|
|
return err;
|
2011-06-08 00:59:53 +00:00
|
|
|
eth = (struct etherhdr *) nb->data;
|
|
|
|
grub_memcpy (eth->dst, target_addr.mac, 6);
|
|
|
|
grub_memcpy (eth->src, inf->hwaddress.mac, 6);
|
2010-09-16 19:57:31 +00:00
|
|
|
|
|
|
|
eth->type = grub_cpu_to_be16 (ethertype);
|
2011-07-05 14:37:14 +00:00
|
|
|
if (!inf->card->opened)
|
|
|
|
{
|
|
|
|
err = GRUB_ERR_NONE;
|
|
|
|
if (inf->card->driver->open)
|
|
|
|
err = inf->card->driver->open (inf->card);
|
|
|
|
if (err)
|
|
|
|
return err;
|
|
|
|
inf->card->opened = 1;
|
|
|
|
}
|
2011-04-01 08:42:34 +00:00
|
|
|
return inf->card->driver->send (inf->card, nb);
|
2010-09-16 19:57:31 +00:00
|
|
|
}
|
|
|
|
|
2011-06-08 00:59:53 +00:00
|
|
|
grub_err_t
|
2011-06-24 18:35:25 +00:00
|
|
|
grub_net_recv_ethernet_packet (struct grub_net_buff * nb,
|
|
|
|
const struct grub_net_card * card)
|
2010-09-16 19:57:31 +00:00
|
|
|
{
|
|
|
|
struct etherhdr *eth;
|
|
|
|
struct llchdr *llch;
|
|
|
|
struct snaphdr *snaph;
|
|
|
|
grub_uint16_t type;
|
2011-06-24 18:35:25 +00:00
|
|
|
grub_net_link_level_address_t hwaddress;
|
2011-06-18 23:20:53 +00:00
|
|
|
grub_err_t err;
|
2010-09-16 19:57:31 +00:00
|
|
|
|
2011-06-08 00:59:53 +00:00
|
|
|
eth = (struct etherhdr *) nb->data;
|
2010-09-22 22:45:39 +00:00
|
|
|
type = grub_be_to_cpu16 (eth->type);
|
2011-06-24 19:51:57 +00:00
|
|
|
err = grub_netbuff_pull (nb, sizeof (*eth));
|
|
|
|
if (err)
|
2011-06-18 23:20:53 +00:00
|
|
|
return err;
|
2011-06-08 00:59:53 +00:00
|
|
|
|
2010-09-22 22:45:39 +00:00
|
|
|
if (type <= 1500)
|
2010-09-16 19:57:31 +00:00
|
|
|
{
|
|
|
|
llch = (struct llchdr *) nb->data;
|
|
|
|
type = llch->dsap & LLCADDRMASK;
|
|
|
|
|
|
|
|
if (llch->dsap == 0xaa && llch->ssap == 0xaa && llch->ctrl == 0x3)
|
2011-06-08 00:59:53 +00:00
|
|
|
{
|
2011-06-24 19:51:57 +00:00
|
|
|
err = grub_netbuff_pull (nb, sizeof (*llch));
|
|
|
|
if (err)
|
2011-06-18 23:20:53 +00:00
|
|
|
return err;
|
2010-09-16 19:57:31 +00:00
|
|
|
snaph = (struct snaphdr *) nb->data;
|
|
|
|
type = snaph->type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-24 18:35:25 +00:00
|
|
|
hwaddress.type = GRUB_NET_LINK_LEVEL_PROTOCOL_ETHERNET;
|
|
|
|
grub_memcpy (hwaddress.mac, eth->dst, sizeof (hwaddress.mac));
|
|
|
|
|
|
|
|
/* ARP packet. */
|
2010-09-22 22:45:39 +00:00
|
|
|
if (type == GRUB_NET_ETHERTYPE_ARP)
|
2011-04-01 08:42:34 +00:00
|
|
|
{
|
|
|
|
grub_net_arp_receive (nb);
|
|
|
|
grub_netbuff_free (nb);
|
2011-06-26 02:18:45 +00:00
|
|
|
return GRUB_ERR_NONE;
|
2011-04-01 08:42:34 +00:00
|
|
|
}
|
2011-06-08 00:59:53 +00:00
|
|
|
/* IP packet. */
|
2011-04-01 08:42:34 +00:00
|
|
|
if (type == GRUB_NET_ETHERTYPE_IP)
|
2011-06-26 02:18:45 +00:00
|
|
|
{
|
|
|
|
grub_net_recv_ip_packets (nb, card, &hwaddress);
|
|
|
|
return GRUB_ERR_NONE;
|
|
|
|
}
|
|
|
|
grub_netbuff_free (nb);
|
2011-06-08 00:59:53 +00:00
|
|
|
return GRUB_ERR_NONE;
|
2010-09-16 19:57:31 +00:00
|
|
|
}
|