iPXE
Functions | Variables
ethernet.h File Reference

Ethernet protocol. More...

#include <stdint.h>
#include <ipxe/netdevice.h>
#include <ipxe/iobuf.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static int is_zero_ether_addr (const void *addr)
 Check if Ethernet address is all zeroes. More...
 
static int is_multicast_ether_addr (const void *addr)
 Check if Ethernet address is a multicast address. More...
 
static int is_local_ether_addr (const void *addr)
 Check if Ethernet address is locally assigned. More...
 
static int is_broadcast_ether_addr (const void *addr)
 Check if Ethernet address is the broadcast address. More...
 
static int is_valid_ether_addr (const void *addr)
 Check if Ethernet address is valid. More...
 
int eth_push (struct net_device *netdev, struct io_buffer *iobuf, const void *ll_dest, const void *ll_source, uint16_t net_proto)
 
int eth_pull (struct net_device *netdev, struct io_buffer *iobuf, const void **ll_dest, const void **ll_source, uint16_t *net_proto, unsigned int *flags)
 
void eth_init_addr (const void *hw_addr, void *ll_addr)
 Initialise Ethernet address. More...
 
void eth_random_addr (void *hw_addr)
 Generate random Ethernet address. More...
 
const char * eth_ntoa (const void *ll_addr)
 Transcribe Ethernet address. More...
 
int eth_mc_hash (unsigned int af, const void *net_addr, void *ll_addr)
 Hash multicast address. More...
 
int eth_eth_addr (const void *ll_addr, void *eth_addr)
 Generate Ethernet-compatible compressed link-layer address. More...
 
int eth_eui64 (const void *ll_addr, void *eui64)
 Generate EUI-64 address. More...
 
struct net_devicealloc_etherdev (size_t priv_size)
 Allocate Ethernet device. More...
 

Variables

uint8_t eth_broadcast []
 Ethernet broadcast MAC address. More...
 
struct ll_protocol ethernet_protocol __ll_protocol
 Ethernet protocol. More...
 

Detailed Description

Ethernet protocol.

Definition in file ethernet.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ is_zero_ether_addr()

static int is_zero_ether_addr ( const void *  addr)
inlinestatic

Check if Ethernet address is all zeroes.

Parameters
addrEthernet address
Return values
is_zeroAddress is all zeroes

Definition at line 22 of file ethernet.h.

22  {
23  const uint8_t *addr_bytes = addr;
24 
25  return ( ! ( addr_bytes[0] | addr_bytes[1] | addr_bytes[2] |
26  addr_bytes[3] | addr_bytes[4] | addr_bytes[5] ) );
27 }
u32 addr
Definition: sky2.h:8
unsigned char uint8_t
Definition: stdint.h:10

References addr.

Referenced by is_valid_ether_addr().

◆ is_multicast_ether_addr()

static int is_multicast_ether_addr ( const void *  addr)
inlinestatic

Check if Ethernet address is a multicast address.

Parameters
addrEthernet address
Return values
is_mcastAddress is a multicast address

Note that the broadcast address is also a multicast address.

Definition at line 37 of file ethernet.h.

37  {
38  const uint8_t *addr_bytes = addr;
39 
40  return ( addr_bytes[0] & 0x01 );
41 }
u32 addr
Definition: sky2.h:8
unsigned char uint8_t
Definition: stdint.h:10

References addr.

Referenced by eoib_tx_av(), eth_pull(), ipoib_find_remac(), ipoib_transmit(), is_valid_ether_addr(), and net80211_ll_pull().

◆ is_local_ether_addr()

static int is_local_ether_addr ( const void *  addr)
inlinestatic

Check if Ethernet address is locally assigned.

Parameters
addrEthernet address
Return values
is_localAddress is locally assigned

Definition at line 49 of file ethernet.h.

49  {
50  const uint8_t *addr_bytes = addr;
51 
52  return ( addr_bytes[0] & 0x02 );
53 }
u32 addr
Definition: sky2.h:8
unsigned char uint8_t
Definition: stdint.h:10

References addr.

◆ is_broadcast_ether_addr()

static int is_broadcast_ether_addr ( const void *  addr)
inlinestatic

Check if Ethernet address is the broadcast address.

Parameters
addrEthernet address
Return values
is_bcastAddress is the broadcast address

Definition at line 61 of file ethernet.h.

61  {
62  const uint8_t *addr_bytes = addr;
63 
64  return ( ( addr_bytes[0] & addr_bytes[1] & addr_bytes[2] &
65  addr_bytes[3] & addr_bytes[4] & addr_bytes[5] ) == 0xff );
66 }
u32 addr
Definition: sky2.h:8
unsigned char uint8_t
Definition: stdint.h:10

References addr.

Referenced by eth_pull(), and net80211_ll_pull().

◆ is_valid_ether_addr()

static int is_valid_ether_addr ( const void *  addr)
inlinestatic

Check if Ethernet address is valid.

Parameters
addrEthernet address
Return values
is_validAddress is valid

Check that the Ethernet address (MAC) is not 00:00:00:00:00:00, is not a multicast address, and is not ff:ff:ff:ff:ff:ff.

Definition at line 77 of file ethernet.h.

77  {
78  return ( ( ! is_multicast_ether_addr ( addr ) ) &&
79  ( ! is_zero_ether_addr ( addr ) ) );
80 }
static int is_zero_ether_addr(const void *addr)
Check if Ethernet address is all zeroes.
Definition: ethernet.h:22
static int is_multicast_ether_addr(const void *addr)
Check if Ethernet address is a multicast address.
Definition: ethernet.h:37
u32 addr
Definition: sky2.h:8

References addr, is_multicast_ether_addr(), and is_zero_ether_addr().

Referenced by __vxge_hw_vpath_addr_get(), acpimac_extract(), bnxt_get_device_address(), ice_admin_mac_read(), igbvf_probe(), igbvf_reset(), intel_fetch_mac(), intelx_try_fetch_mac(), intelxl_admin_mac_read(), nv_setup_mac_addr(), pcnet32_setup_mac_addr(), smscusb_eeprom_fetch_mac(), smscusb_otp_fetch_mac(), tg3_get_device_address(), and virtnet_probe_modern().

◆ eth_push()

int eth_push ( struct net_device netdev,
struct io_buffer iobuf,
const void *  ll_dest,
const void *  ll_source,
uint16_t  net_proto 
)

◆ eth_pull()

int eth_pull ( struct net_device netdev,
struct io_buffer iobuf,
const void **  ll_dest,
const void **  ll_source,
uint16_t net_proto,
unsigned int *  flags 
)

◆ eth_init_addr()

void eth_init_addr ( const void *  hw_addr,
void *  ll_addr 
)

Initialise Ethernet address.

Parameters
hw_addrHardware address
ll_addrLink-layer address

Definition at line 150 of file ethernet.c.

150  {
152 }
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ETH_ALEN
Definition: if_ether.h:8
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387
uint8_t hw_addr[MAX_HW_ADDR_LEN]
Hardware address.
Definition: netdevice.h:381

References ETH_ALEN, and memcpy().

◆ eth_random_addr()

void eth_random_addr ( void *  hw_addr)

Generate random Ethernet address.

Parameters
hw_addrGenerated hardware address

Definition at line 159 of file ethernet.c.

159  {
160  uint8_t *addr = hw_addr;
161  unsigned int i;
162 
163  for ( i = 0 ; i < ETH_ALEN ; i++ )
164  addr[i] = random();
165  addr[0] &= ~0x01; /* Clear multicast bit */
166  addr[0] |= 0x02; /* Set locally-assigned bit */
167 }
long int random(void)
Generate a pseudo-random number between 0 and 2147483647L or 2147483562?
Definition: random.c:31
u32 addr
Definition: sky2.h:8
unsigned char uint8_t
Definition: stdint.h:10
#define ETH_ALEN
Definition: if_ether.h:8
uint8_t hw_addr[MAX_HW_ADDR_LEN]
Hardware address.
Definition: netdevice.h:381

References addr, ETH_ALEN, and random().

Referenced by igbvf_probe(), intelvf_mbox_reset(), lan78xx_fetch_mac(), smsc95xx_fetch_mac(), and txnic_bgx_mac().

◆ eth_ntoa()

const char* eth_ntoa ( const void *  ll_addr)

Transcribe Ethernet address.

Parameters
ll_addrLink-layer address
Return values
stringLink-layer address in human-readable format

Definition at line 175 of file ethernet.c.

175  {
176  static char buf[18]; /* "00:00:00:00:00:00" */
177  const uint8_t *eth_addr = ll_addr;
178 
179  sprintf ( buf, "%02x:%02x:%02x:%02x:%02x:%02x",
180  eth_addr[0], eth_addr[1], eth_addr[2],
181  eth_addr[3], eth_addr[4], eth_addr[5] );
182  return buf;
183 }
#define sprintf(buf, fmt,...)
Write a formatted string to a buffer.
Definition: stdio.h:36
unsigned char uint8_t
Definition: stdint.h:10
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387

References sprintf.

Referenced by acpimac_extract(), amd8111e_get_mac_address(), b44_probe(), bnx2_probe(), bofm_en(), bofm_test(), corkscrew_probe1(), cs89x0_probe(), davicom_probe(), dmfe_probe(), ecm_fetch_mac(), eepro_probe(), ena_get_device_attributes(), eoib_create(), eoib_rx_av(), eoib_tx_av(), epic100_probe(), eth_probe(), eth_slow_lacp_dump(), eth_slow_marker_dump(), exanic_probe(), fcoe_expired(), fcoe_fip_rx(), fcoe_fip_rx_advertisement(), fcoe_fip_rx_els_response(), fcoe_fip_rx_vlan(), fcoe_rx(), hermon_bofm_harvest(), hermon_bofm_update(), ibft_fill_nic(), ice_admin_mac_read(), intel_fetch_mac(), intel_fetch_mac_eeprom(), intelvf_mbox_reset(), intelx_try_fetch_mac(), intelxl_admin_mac_read(), ipoib_find_remac(), ipoib_translate_tx_arp(), ipoib_transmit(), iwlist(), lan78xx_fetch_mac(), ne_probe(), net80211_probe_step(), net80211_step_associate(), nv_setup_mac_addr(), pcnet32_probe(), phantom_add_macaddr(), phantom_del_macaddr(), phantom_get_macaddr(), prism2_probe(), smc9000_probe(), smsc95xx_fetch_mac(), smsc95xx_vm3_fetch_mac(), smscusb_eeprom_fetch_mac(), smscusb_fdt_fetch_mac(), smscusb_otp_fetch_mac(), stp_rx(), t595_probe(), t5x9_probe(), tlan_probe(), tulip_probe(), txnic_lmac_probe(), undinet_probe(), virtnet_probe_legacy(), virtnet_probe_modern(), vxge_probe(), w89c840_probe(), wpa_derive_ptk(), xsmp_rx_xve_install(), and xve_create().

◆ eth_mc_hash()

int eth_mc_hash ( unsigned int  af,
const void *  net_addr,
void *  ll_addr 
)

Hash multicast address.

Parameters
afAddress family
net_addrNetwork-layer address
ll_addrLink-layer address to fill in
Return values
rcReturn status code

Definition at line 193 of file ethernet.c.

193  {
194  const uint8_t *net_addr_bytes = net_addr;
195  uint8_t *ll_addr_bytes = ll_addr;
196 
197  switch ( af ) {
198  case AF_INET:
199  ll_addr_bytes[0] = 0x01;
200  ll_addr_bytes[1] = 0x00;
201  ll_addr_bytes[2] = 0x5e;
202  ll_addr_bytes[3] = net_addr_bytes[1] & 0x7f;
203  ll_addr_bytes[4] = net_addr_bytes[2];
204  ll_addr_bytes[5] = net_addr_bytes[3];
205  return 0;
206  case AF_INET6:
207  ll_addr_bytes[0] = 0x33;
208  ll_addr_bytes[1] = 0x33;
209  memcpy ( &ll_addr_bytes[2], &net_addr_bytes[12], 4 );
210  return 0;
211  default:
212  return -ENOTSUP;
213  }
214 }
#define AF_INET6
IPv6 Internet addresses.
Definition: socket.h:64
#define ENOTSUP
Operation not supported.
Definition: errno.h:589
void * memcpy(void *dest, const void *src, size_t len) __nonnull
unsigned char uint8_t
Definition: stdint.h:10
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387
#define AF_INET
IPv4 Internet addresses.
Definition: socket.h:63

References AF_INET, AF_INET6, ENOTSUP, and memcpy().

◆ eth_eth_addr()

int eth_eth_addr ( const void *  ll_addr,
void *  eth_addr 
)

Generate Ethernet-compatible compressed link-layer address.

Parameters
ll_addrLink-layer address
eth_addrEthernet-compatible address to fill in

Definition at line 222 of file ethernet.c.

222  {
223  memcpy ( eth_addr, ll_addr, ETH_ALEN );
224  return 0;
225 }
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ETH_ALEN
Definition: if_ether.h:8
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387

References ETH_ALEN, and memcpy().

◆ eth_eui64()

int eth_eui64 ( const void *  ll_addr,
void *  eui64 
)

Generate EUI-64 address.

Parameters
ll_addrLink-layer address
eui64EUI-64 address to fill in
Return values
rcReturn status code

Definition at line 234 of file ethernet.c.

234  {
235 
236  memcpy ( ( eui64 + 0 ), ( ll_addr + 0 ), 3 );
237  memcpy ( ( eui64 + 5 ), ( ll_addr + 3 ), 3 );
238  *( ( uint16_t * ) ( eui64 + 3 ) ) = htons ( 0xfffe );
239  return 0;
240 }
unsigned short uint16_t
Definition: stdint.h:11
void * memcpy(void *dest, const void *src, size_t len) __nonnull
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387
#define htons(value)
Definition: byteswap.h:135

References htons, and memcpy().

◆ alloc_etherdev()

struct net_device* alloc_etherdev ( size_t  priv_size)

Allocate Ethernet device.

Parameters
priv_sizeSize of driver private data
Return values
netdevNetwork device, or NULL

Definition at line 264 of file ethernet.c.

264  {
265  struct net_device *netdev;
266 
267  netdev = alloc_netdev ( priv_size );
268  if ( netdev ) {
269  netdev->ll_protocol = &ethernet_protocol;
273  }
274  return netdev;
275 }
size_t mtu
Maximum transmission unit length.
Definition: netdevice.h:415
uint8_t eth_broadcast[ETH_ALEN]
Ethernet broadcast MAC address.
Definition: ethernet.c:47
const uint8_t * ll_broadcast
Link-layer broadcast address.
Definition: netdevice.h:389
#define ETH_MAX_MTU
Definition: if_ether.h:14
struct net_device * alloc_netdev(size_t priv_len)
Allocate network device.
Definition: netdevice.c:721
#define ETH_FRAME_LEN
Definition: if_ether.h:11
static struct net_device * netdev
Definition: gdbudp.c:52
A network device.
Definition: netdevice.h:352
size_t max_pkt_len
Maximum packet length.
Definition: netdevice.h:409
struct ll_protocol * ll_protocol
Link-layer protocol.
Definition: netdevice.h:372

References alloc_netdev(), eth_broadcast, ETH_FRAME_LEN, ETH_MAX_MTU, net_device::ll_broadcast, net_device::ll_protocol, net_device::max_pkt_len, net_device::mtu, and netdev.

Referenced by a3c90x_probe(), alloc_rndis(), atl1e_probe(), axge_probe(), b44_probe(), bnxt_init_one(), dm96xx_probe(), ecm_probe(), efab_probe(), ena_probe(), eoib_create(), exanic_probe_port(), flexboot_nodnic_register_netdev(), forcedeth_probe(), hermon_probe(), hunt_probe(), ice_probe(), icplus_probe(), ifec_pci_probe(), igbvf_probe(), intel_probe(), intelx_probe(), intelxl_probe(), intelxlvf_probe(), intelxvf_probe(), iphone_probe(), jme_probe(), lan78xx_probe(), legacy_probe(), mnpnet_start(), myri10ge_pci_probe(), myson_probe(), natsemi_probe(), ncm_probe(), netfront_probe(), pcnet32_probe(), phantom_probe(), pnic_probe(), rdc_probe(), realtek_probe(), rhine_probe(), sis190_init_board(), skeleton_probe(), skge_devinit(), sky2_init_netdev(), smsc75xx_probe(), smsc95xx_probe(), snpnet_start(), tg3_init_one(), txnic_alloc(), undinet_probe(), velocity_probe(), virtnet_probe_legacy(), virtnet_probe_modern(), vlan_create(), vmxnet3_probe(), and vxge_device_register().

Variable Documentation

◆ eth_broadcast

uint8_t eth_broadcast[]

Ethernet broadcast MAC address.

Definition at line 47 of file ethernet.c.

Referenced by alloc_etherdev(), alloc_ipoibdev(), ath9k_init_misc(), ice_probe(), ipoib_complete_recv(), net80211_alloc(), and net80211_probe_step().

◆ __ll_protocol

struct ll_protocol ethernet_protocol __ll_protocol

Ethernet protocol.

Ethernet protocol.

Definition at line 243 of file ethernet.c.