135 struct io_buffer *iobuf,
const void *ll_dest,
136 const void *ll_source,
uint16_t net_proto );
138 struct io_buffer *iobuf,
const void **ll_dest,
139 const void **ll_source,
uint16_t * net_proto,
140 unsigned int *
flags );
148 int len,
int txpower );
181 int fcid,
int nfrags,
int size );
210 .description =
"Wireless SSID",
211 .type = &setting_type_string,
222 .
name =
"active-scan",
223 .description =
"Actively scan for wireless networks",
224 .type = &setting_type_int8,
236 .description =
"Wireless encryption key",
237 .type = &setting_type_string,
375 dev->
op->
irq ( dev, enable );
401 if ( rate == 10 || rate == 20 || rate == 55 || rate == 110 )
444 u32 kbps = rate * 100;
448 int bits_per_symbol = ( kbps * 4 ) / 1000;
450 int symbols = (
bits + bits_per_symbol - 1 ) / bits_per_symbol;
452 return 16 + 20 + ( symbols * 4 );
455 int phy_time = 144 + 48;
457 int data_time = (
bits * 1000 + kbps - 1 ) / kbps;
462 return 10 + phy_time + data_time;
484 struct io_buffer *iobuf,
const void *ll_dest,
485 const void *ll_source,
uint16_t net_proto )
539 const void **ll_dest,
const void **ll_source,
562 DBGC (
netdev->
priv,
"802.11 %p packet not data/data (fc=%04x)\n",
577 DBGC (
netdev->
priv,
"802.11 %p LLC header is not plain EtherType " 578 "encapsulator: %02x->%02x [%02x] %02x:%02x:%02x %04x\n",
584 iob_pull ( iobuf,
sizeof ( *
hdr ) +
sizeof ( *lhdr ) );
586 *ll_dest =
hdr->addr1;
587 *ll_source =
hdr->addr3;
888 dev->state = (
dev->state & ~statmsk ) | (
status & statmsk );
918 int len,
int txpower )
923 dev->channels[i].channel_nr = chan;
924 dev->channels[i].maxpower = txpower;
925 dev->channels[i].hw_value = 0;
927 if ( chan >= 1 && chan <= 14 ) {
930 dev->channels[i].center_freq = 2484;
932 dev->channels[i].center_freq = 2407 + 5 * chan;
936 dev->channels[i].center_freq = 5000 + 5 * chan;
941 dev->nr_channels = i;
963 int delta = 0, i = 0;
964 int old_freq =
dev->channels[
dev->channel].center_freq;
993 chan[-delta] = *chan;
1017 DBGC ( dev,
"802.11 %p cannot handle IBSS network\n", dev );
1049 int have_rates = 0, i;
1060 if ( ie->
len <= 32 ) {
1068 if ( ! have_rates ) {
1073 for ( i = 0; i < ie->
len &&
1076 u16 rate = ( rid & 0x7f ) * 5;
1098 DBGC ( dev,
"802.11 %p setting country regulations " 1101 for ( i = 0; i < ( ie->
len - 3 ) / 3; i++ ) {
1104 if ( t->
first > 200 ) {
1105 DBGC ( dev,
"802.11 %p ignoring regulatory " 1106 "extension information\n", dev );
1134 for ( i = 0; i < dev->
nr_rates; i++ ) {
1147 if ( old_rate == dev->
rates[i] )
1148 dev->
rate = i - delta;
1156 for ( i = 1; i < dev->
nr_rates; i++ ) {
1160 for ( j = i - 1; j >= 0 && dev->
rates[j] >= rate; j-- )
1162 dev->
rates[j + 1] = rate;
1166 mask = ( ( 1 << i ) - 1 ) & ~( ( 1 << ( j + 1 ) ) - 1 );
1168 tmp = br & ( 1 << i );
1169 br = ( br & ~( mask |
tmp ) ) | ( ( br & mask ) << 1 );
1170 br |= (
tmp >> ( i - j - 1 ) );
1176 if ( dev->
rates[dev->
rate] != old_rate )
1180 if ( dev->
hw->
flags & NET80211_HW_NO_SHORT_PREAMBLE )
1182 if ( dev->
hw->
flags & NET80211_HW_NO_SHORT_SLOT )
1218 for ( i = 0; i < ie->
len; i++ ) {
1221 ie->
rates[i] |= 0x80;
1241 ie->
rates[i - 8] |= 0x80;
1259 #define NET80211_PROBE_GATHER 1 1266 #define NET80211_PROBE_GATHER_ALL 2 1269 #define NET80211_PROBE_TIMEOUT 6 1313 probe_req =
ctx->probe->data;
1322 ctx->ticks_beacon = 0;
1378 if ( now >=
ctx->ticks_start + start_timeout )
1381 if (
ctx->ticks_beacon > 0 && now >=
ctx->ticks_start + gather_timeout )
1385 if ( now >=
ctx->ticks_channel +
ctx->hop_time ) {
1391 ctx->ticks_channel = now;
1407 DBGC ( dev,
"802.11 %p send probe failed: " 1428 DBGC2 ( dev,
"802.11 %p probe: non-beacon\n", dev );
1432 if ( (
void * ) beacon->info_element >= iob->
tail ) {
1433 DBGC ( dev,
"802.11 %p probe: beacon with no IEs\n",
1438 ie = beacon->info_element;
1447 DBGC ( dev,
"802.11 %p probe: beacon with no SSID\n",
1456 DBGC2 ( dev,
"802.11 %p probe: beacon with wrong SSID " 1457 "(%s)\n", dev,
ssid );
1466 if ( signal < wlan->signal ) {
1467 DBGC2 ( dev,
"802.11 %p probe: beacon for %s " 1468 "(%s) with weaker signal %d\n", dev,
1477 wlan =
zalloc (
sizeof ( *wlan ) );
1504 DBG (
"802.11 %p probe: secured network %s but " 1505 "encryption support not compiled in\n",
1513 }
else if (
rc != 0 ) {
1514 DBGC ( dev,
"802.11 %p probe warning: network " 1515 "%s with unidentifiable security " 1516 "settings: %s\n", dev, wlan->
essid,
1520 ctx->ticks_beacon = now;
1522 DBGC2 ( dev,
"802.11 %p probe: good beacon for %s (%s)\n",
1552 if ( ! best || best->
signal < wlan->signal )
1559 DBGC (
ctx->dev,
"802.11 %p probe: found nothing for '%s'\n",
1636 #define ASSOC_TIMEOUT TICKS_PER_SEC 1639 #define ASSOC_RETRIES 2 1693 &net80211_active_setting );
1727 if ( ! dev->
essid[0] )
1730 DBGC ( dev,
"802.11 %p found network %s (%s)\n", dev,
1767 DBGC ( dev,
"802.11 %p authenticating with method %d\n", dev,
1788 DBGC ( dev,
"802.11 %p associating\n", dev );
1807 DBGC ( dev,
"802.11 %p security handshaking\n", dev );
1850 DBGC ( dev,
"802.11 %p associated with %s (%s)\n", dev,
1875 DBGC ( dev,
"802.11 %p association failed (state=%04x): " 1907 &net80211_ssid_setting,
ssid,
1913 DBGC ( dev,
"802.11 %p updating association: " 1932 DBGC2 ( dev,
"802.11 %p spawning association process\n", dev );
1935 DBGC2 ( dev,
"802.11 %p restarting association\n", dev );
1951 &net80211_ssid_setting, dev->
essid,
1974 for ( i = 0; i < dev->
nr_rates; i++ ) {
1980 if (
rate > rtsrate ) {
2005 DBGC2 ( dev,
"802.11 %p changing rate from %d->%d Mbps\n",
2023 int i, oldchan = dev->
channel;
2057 DBGC ( dev,
"802.11 %p cannot perform active scanning on " 2058 "5GHz band\n", dev );
2065 DBGC ( dev,
"802.11 %p asked to prepare for scanning nothing\n",
2156 if ( handshaker->protocol == wlan->
handshaking ) {
2158 handshaker->priv_len );
2163 sizeof ( *handshaker ) );
2165 sizeof ( *handshaker ) );
2172 DBGC ( dev,
"802.11 %p no support for handshaking scheme %d\n",
2208 auth =
iob_put ( iob,
sizeof ( *auth ) );
2235 DBGC ( dev,
"802.11 %p authentication received improperly " 2236 "directed frame (seq. %d)\n", dev, auth->
tx_seq );
2243 DBGC ( dev,
"802.11 %p authentication failed: status %d\n",
2251 DBGC ( dev,
"802.11 %p can't perform shared-key authentication " 2252 "without a cryptosystem\n", dev );
2300 if ( ! ( dev->
hw->
flags & NET80211_HW_NO_SHORT_PREAMBLE ) )
2302 if ( ! ( dev->
hw->
flags & NET80211_HW_NO_SHORT_SLOT ) )
2311 DBGP (
"802.11 %p about to send association request:\n", dev );
2337 DBGC ( dev,
"802.11 %p association failed: status %d\n",
2338 dev, assoc->status );
2346 dev->
aid = assoc->aid;
2372 disassoc =
iob_put ( iob,
sizeof ( *disassoc ) );
2373 disassoc->reason =
reason;
2460 DBGC ( dev,
"802.11 %p %s: reason %d\n",
2461 dev, is_deauth ?
"deauthenticated" :
"disassociated",
2490 rxinf =
zalloc (
sizeof ( *rxinf ) );
2492 DBGC ( dev,
"802.11 %p out of memory\n", dev );
2509 DBGC ( dev,
"802.11 %p received strange management request " 2510 "(%04x)\n", dev, stype );
2514 DBGC ( dev,
"802.11 %p received unimplemented management " 2515 "packet (%04x)\n", dev, stype );
2538 for ( j = 0; j < 16; j++ ) {
2539 if ( frag->
iob[j] ) {
2562 int fcid,
int nfrags,
int size )
2566 int nsize =
size - hdrsize * ( nfrags - 1 );
2576 for ( i = 0; i < nfrags; i++ ) {
2646 DBGC ( dev,
"802.11 %p dropped fragment fc=%04x " 2647 "seq=%04x\n", dev,
hdr->fc,
hdr->seq );
2656 for ( j = 0; j < fragnr; j++ ) {
2661 if ( j == fragnr ) {
2669 DBGC ( dev,
"802.11 %p dropping fragmented " 2670 "packet due to out-of-order arrival, " 2671 "fc=%04x seq=%04x\n", dev,
hdr->fc,
2690 int signal,
u16 rate )
2705 if ( dev->
hw->
flags & NET80211_HW_RX_HAS_FCS ) {
2718 DBGC ( dev,
"802.11 %p cannot decrypt packet " 2719 "without a cryptosystem\n", dev );
2723 if ( (
hdr->addr1[0] & 1 ) && dev->
gcrypto ) {
2728 niob = crypto->
decrypt ( crypto, iob );
2730 DBGC ( dev,
"802.11 %p decryption error\n", dev );
2773 DBGC2 ( dev,
"802.11 %p dropped packet fc=%04x seq=%04x\n", dev,
u32 ticks_start
Time probe was started.
#define LL_MULTICAST
Packet is a multicast (including broadcast) packet.
struct net80211_frag_cache frags[NET80211_NR_CONCURRENT_FRAGS]
Fragment reassembly state.
#define iob_pull(iobuf, len)
long fetch_intz_setting(struct settings *settings, const struct setting *setting)
Fetch value of signed integer setting, or zero.
#define EINVAL
Invalid argument.
struct arbelprm_rc_send_wqe rc
#define LQ_SMOOTH
Smoothing factor (1-7) for link quality calculation.
static void netdev_tx_complete(struct net_device *netdev, struct io_buffer *iobuf)
Complete network transmission.
Structure representing a probed network.
void net80211_free(struct net80211_device *dev)
Free 802.11 device.
struct net80211_channel channels[NET80211_MAX_CHANNELS]
List of RF channels supported by the card.
enum net80211_crypto_alg crypto
Cryptographic algorithm used on the network.
#define iob_put(iobuf, len)
#define TICKS_PER_SEC
Number of ticks per second.
void netdev_rx_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Discard received packet.
struct net80211_probe_ctx * probe
static int net80211_netdev_open(struct net_device *netdev)
Open 802.11 device and start association.
u64 last_beacon_timestamp
TSFT value for last beacon received, microseconds.
static union ieee80211_ie * ieee80211_next_ie(union ieee80211_ie *ie, void *end)
Advance to next 802.11 information element.
#define IEEE80211_STATUS_FAILURE
struct net80211_probe_ctx * net80211_probe_start(struct net80211_device *dev, const char *essid, int active)
Begin probe of 802.11 networks.
u8 channel
The channel currently in use, as an index into the channels array.
static void net80211_netdev_close(struct net_device *netdev)
Close 802.11 device.
int(* open)(struct net_device *netdev)
Open network device.
struct option_descriptor set[0]
#define IEEE80211_IE_COUNTRY
Information element ID for Country information element.
int eth_eth_addr(const void *ll_addr, void *eth_addr)
Generate Ethernet-compatible compressed link-layer address.
int(* config)(struct net80211_device *dev, int changed)
Update hardware state to match 802.11 layer state.
Context for the association task.
u8 in_use
Whether this cache entry is in use.
#define IEEE80211_CAPAB_SHORT_PMBL
Set if PHY supports short preambles on 802.11b.
Dummy value used when the cryptosystem can't be detected.
struct golan_inbox_hdr hdr
Message header.
int hop_step
Channels to hop by when changing channel.
#define NET80211_AUTO_SSID
Whether this association was performed using a broadcast SSID.
u32 basic_rates
Bitmask of basic rates.
#define iob_push(iobuf, len)
union ieee80211_ie info_element[0]
List of information elements.
char ssid[0]
SSID data, not NUL-terminated.
u8 first
Differentiator between band and ext triplets.
char essid[IEEE80211_MAX_SSID_LEN+1]
The human-readable ESSID (network name)
void net80211_rx_err(struct net80211_device *dev, struct io_buffer *iob, int rc)
Indicate an error in receiving a packet.
#define EINFO_ECONNRESET_4WAY_TIMEOUT
u16 fc
802.11 Frame Control field
#define IEEE80211_LLC_SSAP
Value for SSAP field in 802.2 LLC header for 802.11 frames: SNAP.
void free_iob(struct io_buffer *iobuf)
Free I/O buffer.
#define IEEE80211_CAPAB_PRIVACY
Set if the network is encrypted (by any method)
void(* poll)(struct net80211_device *dev)
Poll for completed and received packets.
#define IEEE80211_STYPE_ASSOC_RESP
Subtype value for association-response management frames.
#define IEEE80211_REASON_UNSPECIFIED
struct errortab common_wireless_errors [] __errortab
Common 802.11 errors.
void net80211_rx(struct net80211_device *dev, struct io_buffer *iob, int signal, u16 rate)
Handle receipt of 802.11 frame.
uint32_t type
Operating system type.
u8 rtscts_rate
The rate to use for RTS/CTS transmissions.
#define __einfo_errortab(einfo)
uint8_t size
Entry size (in 32-bit words)
void net80211_unregister(struct net80211_device *dev)
Unregister 802.11 device from network stack.
Constants and data structures defined in IEEE 802.11, subsetted according to what iPXE knows how to u...
struct list_head mgmt_info_queue
RX management packet info queue.
enum net80211_security_proto handshaking
Security handshaking method used on the network.
#define IEEE80211_AUTH_SHARED_KEY
Shared Key authentication algorithm.
uint8_t eth_broadcast[ETH_ALEN]
Ethernet broadcast MAC address.
#define ASSOC_TIMEOUT
Number of ticks to wait for replies to association management frames.
u32 ticks_beacon
Time last useful beacon was received.
An 802.11 data or management frame without QoS or WDS header fields.
char name[2]
ISO Alpha2 country code.
#define ENOENT
No such file or directory.
const uint8_t * ll_broadcast
Link-layer broadcast address.
net80211_security_proto
An 802.11 security handshaking protocol.
#define NET80211_STATUS_MASK
An error code indicating the failure mode, or 0 if successful.
static struct list_head net80211_devices
List of 802.11 devices.
#define IEEE80211_FC_FROMDS
802.11 Frame Control field: From Data System flag
#define EINVAL_ACTIVE_SCAN
#define EINVAL_PKT_TOO_SHORT
void netdev_link_down(struct net_device *netdev)
Mark network device as having link down.
u16 net80211_duration(struct net80211_device *dev, int bytes, u16 rate)
Calculate one frame's contribution to 802.11 duration field.
union ieee80211_ie * rsn_ie
RSN or WPA information element to include with association.
#define NET80211_PROBE_TIMEOUT
Seconds to allow a probe to take if no network has been found.
#define IEEE80211_FC_VERSION
802.11 Frame Control field, Version bitmask
u16 aid
Association ID given to us by the AP.
static void net80211_filter_hw_channels(struct net80211_device *dev)
Filter 802.11 device channels for hardware capabilities.
struct list_head list
List of 802.11 devices.
REQUIRING_SYMBOL(net80211_ll_protocol)
struct golan_eq_context ctx
Structure tracking received fragments for a packet.
void rc80211_update_tx(struct net80211_device *dev, int retries, int rc)
Update rate-control state for transmitted packet.
void net80211_deauthenticate(struct net80211_device *dev, int rc)
Deauthenticate from current network and try again.
struct list_head mgmt_queue
RX management packet queue.
u32 ticks_channel
Time channel was last changed.
Dummy value used when the handshaking type can't be detected.
void process_del(struct process *process)
Remove process from process list.
struct io_buffer * alloc_iob(size_t len)
Allocate I/O buffer.
void eth_init_addr(const void *hw_addr, void *ll_addr)
Initialise Ethernet address.
#define EINFO_ECONNREFUSED_ASSOC_DENIED
static int net80211_send_disassoc(struct net80211_device *dev, int reason, int deauth)
Send 802.11 disassociation frame.
#define IEEE80211_STYPE_AUTH
Subtype value for authentication management frames.
u16 tx_seq
Sequence number of this frame; first from client to AP is 1.
#define NET80211_REG_TXPOWER
Maximum TX power to allow (dBm), if we don't get a regulatory hint.
static struct settings * netdev_settings(struct net_device *netdev)
Get per-netdevice configuration settings block.
Context for a probe operation.
char essid[IEEE80211_MAX_SSID_LEN+1]
SSID of the access point we are or will be associated with.
#define NET80211_WORKING
Whether the auto-association task is running.
Address Resolution Protocol constants and types.
int eth_eui64(const void *ll_addr, void *eui64)
Generate EUI-64 address.
Definitions for general secured-network routines.
#define NET80211_PROBE_GATHER_ALL
Seconds to wait after finding a network, to possibly find other networks.
#define ENOTSUP
Operation not supported.
#define EINFO_ECONNRESET_8021X_FAILURE
const char * essid
If non-"", the ESSID to limit ourselves to.
static int net80211_netdev_transmit(struct net_device *netdev, struct io_buffer *iobuf)
Transmit packet on 802.11 device.
int(* open)(struct net80211_device *dev)
Open 802.11 device.
A doubly-linked list entry (or list head)
#define NET80211_BAND_BIT_5GHZ
Bitmask for the 5GHz band.
802.11 Country information element regulatory triplet
uint32_t start
Starting offset.
u32 tx_beacon_interval
Time between AP sending beacons, microseconds.
static struct net80211_device_operations net80211_null_ops
Set of device operations that does nothing.
#define list_empty(list)
Test whether a list is empty.
#define NET80211_BAND_2GHZ
The 2.4 GHz ISM band, unlicensed in most countries.
#define list_first_entry(list, type, member)
Get the container of the first entry in a list.
static void net80211_step_associate(struct net80211_device *dev)
Step 802.11 association process.
#define IEEE80211_MAKESEQ(seqnr, frag)
Make 802.11 Sequence Control field from sequence and fragment numbers.
static void netdev_init(struct net_device *netdev, struct net_device_operations *op)
Initialise a network device.
struct net_device * alloc_netdev(size_t priv_len)
Allocate network device.
#define NET80211_IS_REASON
Whether the error code provided is a "reason" code, not a "status" code.
const char * name
Protocol name.
u16 rates[NET80211_NR_BANDS][NET80211_MAX_RATES]
List of transmission rates supported by the card, indexed by band.
static int net80211_ll_pull(struct net_device *netdev, struct io_buffer *iobuf, const void **ll_dest, const void **ll_source, uint16_t *net_proto, unsigned int *flags)
#define list_del(list)
Delete an entry from a list.
#define IEEE80211_THIS_VERSION
Expected value of Version bits in Frame Control.
#define IEEE80211_IE_EXT_RATES
Information element ID for extended rates information element.
Operations that must be implemented by an 802.11 driver.
#define ENOMEM
Not enough space.
#define iob_disown(iobuf)
Disown an I/O buffer.
void net80211_set_rate_idx(struct net80211_device *dev, int rate)
Set data transmission rate for 802.11 device.
void * memcpy(void *dest, const void *src, size_t len) __nonnull
void * priv
Pointer to private data.
#define IEEE80211_FC_SUBTYPE
802.11 Frame Control field, Frame Subtype bitmask
static void net80211_handle_assoc_reply(struct net80211_device *dev, struct io_buffer *iob)
Handle receipt of 802.11 association reply frame.
#define IEEE80211_STYPE_DEAUTH
Subtype value for deauthentication management frames.
union ieee80211_ie_country_triplet triplet[0]
List of regulatory triplets.
struct ieee80211_ie_ds_param ds_param
DS parameter set.
static struct process_descriptor net80211_process_desc
802.11 association process descriptor
int started
Whether start has been called.
int(* init)(struct net80211_device *dev)
Initialize security handshaking protocol.
#define IEEE80211_STYPE_REASSOC_RESP
Subtype value for reassociation-response management frames.
static int netdev_is_open(struct net_device *netdev)
Check whether or not network device is open.
u16 hw_value
Hardware channel value.
struct net80211_crypto * crypto
802.11 cryptosystem for our current network
#define EINVAL_PKT_LLC_HEADER
u8 id
Information element ID.
Information on the capabilities of an 802.11 hardware device.
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
static void netdev_put(struct net_device *netdev)
Drop reference to network device.
u8 maxpower
Maximum allowable transmit power, in dBm.
struct process proc_assoc
The asynchronous association process.
u8 nr_channels
The number of channels in the channels array.
struct list_head * beacons
List of best beacons for each network found so far.
#define IEEE80211_STATUS_SUCCESS
#define IEEE80211_STYPE_DATA
Subtype value for ordinary data frames, with no QoS or CF add-ons.
#define list_for_each_entry(pos, head, member)
Iterate over entries in a list.
void * priv
Driver private data.
#define IEEE80211_TYP_FRAME_HEADER_LEN
Frame header length for frames we might work with.
struct rc80211_ctx * rctl
Rate control state.
REQUIRE_OBJECT(config_net80211)
#define __unused
Declare a variable or data structure as unused.
#define list_add_tail(new, head)
Add a new entry to the tail of a list.
u8 nr_channels
Number of contiguous channels in band.
#define EINVAL_PKT_NOT_DATA
Information associated with a received management packet.
struct io_buffer * net80211_mgmt_dequeue(struct net80211_device *dev, int *signal)
Get 802.11 management frame.
static void netdev_link_up(struct net_device *netdev)
Mark network device as having link up.
int nr_rates[NET80211_NR_BANDS]
Number of supported rates, indexed by band.
u16 algorithm
Authentication algorithm (Open System or Shared Key)
void(* stop)(struct net80211_device *dev)
Stop security handshaking handlers.
static union ieee80211_ie * net80211_marshal_request_info(struct net80211_device *dev, union ieee80211_ie *ie)
Create information elements for outgoing probe or association packet.
void udelay(unsigned long usecs)
Delay for a fixed number of microseconds.
#define SETTING_NETDEV_EXTRA
Network device additional settings.
int last_signal
Signal strength of last received packet.
struct net80211_crypto * gcrypto
802.11 cryptosystem for multicast and broadcast frames
int keep_mgmt
Whether to store management packets.
static void net80211_rx_frag(struct net80211_device *dev, struct io_buffer *iob, int signal)
Handle receipt of 802.11 fragment.
static struct net_device * netdev
void(* irq)(struct net80211_device *dev, int enable)
Enable or disable interrupts.
static int net80211_check_settings_update(void)
Check for 802.11 SSID or key updates.
struct io_buffer * probe
If scanning actively, pointer to probe packet to send.
int eth_mc_hash(unsigned int af, const void *net_addr, void *ll_addr)
Hash multicast address.
static int is_multicast_ether_addr(const void *addr)
Check if Ethernet address is a multicast address.
int fetch_string_setting(struct settings *settings, const struct setting *setting, char *data, size_t len)
Fetch value of string setting.
char * strcpy(char *dest, const char *src)
Copy string.
#define NET80211_MAX_CHANNELS
The maximum number of channels we allow to be configured simultaneously.
uint32_t channel
RNDIS channel.
__weak int sec80211_detect(struct io_buffer *iob __unused, enum net80211_security_proto *secprot __unused, enum net80211_crypto_alg *crypt __unused)
Detect secure 802.11 network when security support is not available.
int(* change_key)(struct net80211_device *dev)
Change cryptographic key based on setting.
#define EFAULT
Bad address.
int net80211_prepare_assoc(struct net80211_device *dev, struct net80211_wlan *wlan)
Prepare 802.11 device channel and rate set for communication.
struct net80211_device * dev
802.11 device to probe on
#define IEEE80211_STATUS_AUTH_ALGO_UNSUPP
static void net80211_handle_auth(struct net80211_device *dev, struct io_buffer *iob)
Handle receipt of 802.11 authentication frame.
int(* transmit)(struct net80211_device *dev, struct io_buffer *iobuf)
Transmit packet on 802.11 network device.
Probe request frame data.
void unregister_netdev(struct net_device *netdev)
Unregister network device.
static int net80211_rate_is_erp(u16 rate)
Determine whether a transmission rate uses ERP/OFDM.
int net80211_keep_mgmt(struct net80211_device *dev, int enable)
Set state of 802.11 device keeping management frames.
#define NET80211_BAND_5GHZ
The band from 4.9 GHz to 5.7 GHz, which tends to be more restricted.
#define list_for_each_entry_safe(pos, tmp, head, member)
Iterate over entries in a list, safe against deletion of the current entry.
struct list_head * net80211_probe_finish_all(struct net80211_probe_ctx *ctx)
Finish probe of 802.11 networks, returning all networks found.
#define NET80211_PHY_USE_SHORT_PREAMBLE
Whether to use 802.11b short preamble operation.
#define NET80211_WAITING
Whether the auto-association task is waiting for a reply from the AP.
static int net80211_ll_push(struct net_device *netdev, struct io_buffer *iobuf, const void *ll_dest, const void *ll_source, uint16_t net_proto)
Add 802.11 link-layer header.
u32 hop_time
Time to stay on each channel.
#define IEEE80211_IE_SSID
Information element ID for SSID information element.
void process_add(struct process *process)
Add process to process list.
u8 nr_rates
The number of transmission rates in the rates array.
#define NET80211_FRAG_TIMEOUT
Seconds we'll wait to get all fragments of a packet.
#define IEEE80211_FC_PROTECTED
802.11 Frame Control field: Protected flag
#define iob_unput(iobuf, len)
#define NET80211_PHY_USE_PROTECTION
Whether to use RTS/CTS or CTS-to-self protection for transmissions.
#define NET80211_PROBE_GATHER
Seconds to wait after finding a network, to possibly find better APs for it.
#define IEEE80211_IE_VENDOR
Information element ID for Vendor Specific information element.
struct io_buffer *(* decrypt)(struct net80211_crypto *crypto, struct io_buffer *iob)
Decrypt a frame using the cryptosystem.
struct net80211_device * net80211_alloc(size_t priv_size)
Allocate 802.11 device.
char * strerror(int errno)
Retrieve string representation of error number.
int assoc_rc
Return status code associated with state.
struct refcnt refcnt
Reference counter.
static void(* free)(struct refcnt *refcnt))
static struct net_device_operations net80211_netdev_ops
Network device operations for a wrapped 802.11 device.
void * zalloc(size_t size)
Allocate cleared memory.
#define NET80211_HANDSHAKERS
u16 center_freq
The center frequency for this channel.
The iPXE 802.11 MAC layer.
struct io_buffer * iob[16]
Buffers for each fragment.
#define IEEE80211_FC_TYPE
802.11 Frame Control field, Frame Type bitmask
struct net80211_assoc_ctx * assoc
u8 band
The band with which this channel is associated.
#define NET80211_CFG_PHY_PARAMS
Low-level link parameters (short preamble, protection, etc) have changed.
#define E80211_STATUS(stat)
Make return status code from 802.11 status code.
u32 start_ticks
Timestamp from point at which first fragment was collected.
int register_netdev(struct net_device *netdev)
Register network device.
static size_t iob_len(struct io_buffer *iobuf)
Calculate length of data in an I/O buffer.
const char * eth_ntoa(const void *ll_addr)
Transcribe Ethernet address.
#define NET80211_ASSOCIATED
Whether we have successfully associated with the network.
#define IEEE80211_IE_ERP_INFO
Information element ID for ERP Information information element.
static void net80211_set_rtscts_rate(struct net80211_device *dev)
Pick TX rate for RTS/CTS packets based on data rate.
Structure encapsulating the complete state of an 802.11 device.
static int net80211_process_capab(struct net80211_device *dev, u16 capab)
Update 802.11 device state to reflect received capabilities field.
#define IEEE80211_IE_RSN
Information element ID for Robust Security Network information element.
#define IEEE80211_LLC_DSAP
Value for DSAP field in 802.2 LLC header for 802.11 frames: SNAP.
No security, an "Open" network.
#define IEEE80211_MAX_DATA_LEN
Maximum length of frame payload.
#define for_each_table_entry(pointer, table)
Iterate through all entries within a linker table.
int net80211_probe_step(struct net80211_probe_ctx *ctx)
Continue probe of 802.11 networks.
void netdev_link_err(struct net_device *netdev, int rc)
Mark network device as having a specific link state.
void net80211_free_wlanlist(struct list_head *list)
Free list of WLAN structures.
int old_keep_mgmt
Value of keep_mgmt before probe was started.
#define EINFO_ECONNREFUSED_AUTH_ALGO_UNSUPP
void net80211_autoassociate(struct net80211_device *dev)
Start 802.11 association process.
size_t strlen(const char *src)
Get length of string.
static void netdev_nullify(struct net_device *netdev)
Stop using a network device.
int netdev_tx(struct net_device *netdev, struct io_buffer *iobuf)
Transmit raw packet via network device.
int method
Next authentication method to try using.
static int ieee80211_ie_bound(union ieee80211_ie *ie, void *end)
Check that 802.11 information element is bounded by buffer.
#define IEEE80211_TYPE_CTRL
Type value for control (layer-1, hardware-managed) frames.
u8 first_channel
Channel number for first channel in band.
struct net80211_handshaker * handshaker
Security handshaker being used.
#define IEEE80211_REASON_LEAVING
const struct setting net80211_ssid_setting __setting(SETTING_NETDEV_EXTRA, ssid)
The network name to associate with.
void net80211_free_wlan(struct net80211_wlan *wlan)
Free WLAN structure.
int last_packet
Time (in ticks) of the last sent association-related packet.
#define IEEE80211_STATUS_AUTH_CHALL_INVALID
#define NET80211_NO_ASSOC
Whether the auto-association task should be suppressed.
u16 capability
Capability flags.
struct net80211_hw_info * hw
Information about the hardware, provided to net80211_register()
#define EINVAL_PKT_VERSION
#define IEEE80211_STYPE_ASSOC_REQ
Subtype value for association-request management frames.
static void process_init_stopped(struct process *process, struct process_descriptor *desc, struct refcnt *refcnt)
Initialise process without adding to process list.
void net80211_tx_complete(struct net80211_device *dev, struct io_buffer *iob, int retries, int rc)
Indicate the completed transmission of a packet.
struct settings_applicator net80211_applicator __settings_applicator
802.11 settings applicator
Any 802.11 information element.
int net80211_send_assoc(struct net80211_device *dev, struct net80211_wlan *wlan)
Send 802.11 association frame.
void * malloc(size_t size)
Allocate memory.
u16 rates[NET80211_MAX_RATES]
A list of all possible TX rates we might use.
struct net80211_device * net80211_get(struct net_device *netdev)
Get 802.11 device from wrapping network device.
struct net80211_wlan * net80211_probe_finish_best(struct net80211_probe_ctx *ctx)
Finish probe of 802.11 networks, returning best-signal network found.
u8 len
Information element data length.
struct net80211_wlan * associating
Network with which we are associating.
int phy_flags
Physical layer options.
#define IEEE80211_STYPE_PROBE_RESP
Subtype value for probe-response management frames.
Interface to an 802.11 security handshaking protocol.
static struct ll_protocol net80211_ll_protocol __ll_protocol
802.11 link-layer protocol
struct ieee80211_ie_country country
Country information.
struct rc80211_ctx * rc80211_init(struct net80211_device *dev __unused)
Initialize rate-control algorithm.
Network device operations.
void netdev_rx(struct net_device *netdev, struct io_buffer *iobuf)
Add packet to receive queue.
struct device * dev
Underlying hardware device.
#define IEEE80211_FC_TODS
802.11 Frame Control field: To Data System flag
struct list_head list
Link to allow chaining multiple structures into a list to be returned from net80211_probe_finish_all(...
void rc80211_free(struct rc80211_ctx *ctx)
Free rate-control context.
#define LL_BROADCAST
Packet is a broadcast packet.
Network device management.
int(* start)(struct net80211_device *dev)
Start handshaking.
struct ieee80211_ie_channels_channel_band channels[0]
List of (start, length) channel bands we can use.
#define IEEE80211_ERP_USE_PROTECTION
ERP information element: Flag set if CTS protection must be used.
struct net_device * netdev
The net_device that wraps us.
FILE_LICENCE(GPL2_OR_LATER)
static void net80211_free_frags(struct net80211_device *dev, int fcid)
Free buffers used by 802.11 fragment cache entry.
union net80211_device::@631 ctx
Context for the association process.
#define NET80211_AUTHENTICATED
Whether we have successfully authenticated with the network.
#define IEEE80211_CAPAB_SHORT_SLOT
Set if PHY supports short slot time on 802.11g.
#define IEEE80211_STYPE_DISASSOC
Subtype value for disassociation management frames.
#define IEEE80211_AUTH_OPEN_SYSTEM
Open System authentication algorithm.
int channel
The channel on which that access point communicates.
#define iob_reserve(iobuf, len)
#define INIT_LIST_HEAD(list)
Initialise a list head.
#define EINVAL_CRYPTO_REQUEST
static size_t iob_headroom(struct io_buffer *iobuf)
Calculate available space at start of an I/O buffer.
#define ieee80211_assoc_resp
void netdev_tx_complete_err(struct net_device *netdev, struct io_buffer *iobuf, int rc)
Complete network transmission.
#define IEEE80211_ERP_BARKER_LONG
ERP information element: Flag set if long preambles must be used.
struct option_descriptor clear[0]
#define IEEE80211_STYPE_REASSOC_REQ
Subtype value for reassociation-request management frames.
Authentication frame data.
#define IEEE80211_FC_MORE_FRAG
802.11 Frame Control field: More Fragments flag
#define NET80211_MAX_RATES
The maximum number of TX rates we allow to be configured simultaneously.
struct list_head list
List of which this buffer is a member.
#define IEEE80211_FRAG(seq)
Extract fragment number from 802.11 Sequence Control field.
static volatile void * bits
#define EINVAL_PKT_NOT_FROMDS
int net80211_tx_mgmt(struct net80211_device *dev, u16 fc, u8 dest[6], struct io_buffer *iob)
Transmit 802.11 management frame.
#define IEEE80211_IE_DS_PARAM
Information element ID for Direct Spectrum parameter information element.
#define IEEE80211_SEQNR(seq)
Extract sequence number from 802.11 Sequence Control field.
int strcmp(const char *first, const char *second)
Compare strings.
void * head
Start of the buffer.
struct net80211_device_operations * op
802.11 device operations
#define EINFO_ECONNREFUSED_FAILURE
static void net80211_set_state(struct net80211_device *dev, short clear, short set, u16 status)
Set state of 802.11 device.
static struct io_buffer * net80211_accum_frags(struct net80211_device *dev, int fcid, int nfrags, int size)
Accumulate 802.11 fragments into one I/O buffer.
net80211_crypto_alg
An 802.11 data encryption algorithm.
#define NET80211_BAND_BIT_2GHZ
Bitmask for the 2GHz band.
void(* close)(struct net80211_device *dev)
Close 802.11 network device.
#define IEEE80211_CAPAB_MANAGED
Set if using an Access Point (managed mode)
int signal
Signal strength of beacon frame from that access point.
u8 erp_info
ERP information flags.
#define E80211_REASON(reas)
Make return status code from 802.11 reason code.
void * data
Start of data.
#define NET80211_PROBED
Whether we have found the network we will be associating with.
#define PROC_DESC(object_type, process, _step)
Define a process descriptor.
int nr_channels
Number of supported channels.
static int is_broadcast_ether_addr(const void *addr)
Check if Ethernet address is the broadcast address.
struct net80211_channel channels[NET80211_MAX_CHANNELS]
A list of all possible channels we might use.
enum net80211_hw_info::@629 flags
A set of flags indicating peculiarities of this device.
u16 last_rx_seq
Packet duplication elimination state.
#define IEEE80211_STYPE_ACTION
Subtype value for action management frames.
#define ieee80211_disassoc
struct ieee80211_ie_country_band_triplet band
Information about a band of channels.
Association request frame data.
#define EINFO_ECONNRESET_INACTIVITY
if(len >=6 *4) __asm__ __volatile__("movsl" if(len >=5 *4) __asm__ __volatile__("movsl" if(len >=4 *4) __asm__ __volatile__("movsl" if(len >=3 *4) __asm__ __volatile__("movsl" if(len >=2 *4) __asm__ __volatile__("movsl" if(len >=1 *4) __asm__ __volatile__("movsl" if((len % 4) >=2) __asm__ __volatile__("movsw" if((len % 2) >=1) __asm__ __volatile__("movsb" return dest
uint16_t reason
Rejection reason.
int(* step)(struct net80211_device *dev)
Process handshaking state.
#define __weak
Declare a function as weak (use before the definition)
#define EINFO_ECONNRESET_UNSPECIFIED
#define ENOSYS
Function not implemented.
static void net80211_netdev_irq(struct net_device *netdev, int enable)
Enable or disable interrupts for 802.11 device.
#define NET80211_CFG_RATE
Requested transmission rate (dev->rate) has changed.
#define IEEE80211_LLC_HEADER_LEN
Length of LLC/SNAP headers on data frames.
static void net80211_handle_mgmt(struct net80211_device *dev, struct io_buffer *iob, int signal)
Handle receipt of 802.11 management frame.
struct io_buffer *(* encrypt)(struct net80211_crypto *crypto, struct io_buffer *iob)
Encrypt a frame using the cryptosystem.
u8 bssid[ETH_ALEN]
MAC address of the strongest-signal access point for this ESSID.
int(* apply)(void)
Apply updated settings.
#define IEEE80211_LLC_CTRL
Value for control field in 802.2 LLC header for 802.11 frames.
The iPXE 802.11 MAC layer errors.
static void net80211_add_channels(struct net80211_device *dev, int start, int len, int txpower)
Add channels to 802.11 device.
int net80211_send_auth(struct net80211_device *dev, struct net80211_wlan *wlan, int method)
Send 802.11 initial authentication frame.
#define NET80211_CFG_CHANNEL
Channel choice (dev->channel) or regulatory parameters have changed.
int bands
A bitwise OR of the bands on which this device can communicate.
u8 bssid[ETH_ALEN]
MAC address of the access point most recently associated.
u16 state
State of our association to the network.
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
u16 seqnr
Sequence number of this MSDU (packet)
size_t max_pkt_len
Maximum packet length.
#define IEEE80211_STYPE_BEACON
Subtype value for beacon management frames.
unsigned long currticks(void)
Get current system time in ticks.
#define DBG(...)
Print a debugging message.
#define LIST_HEAD_INIT(list)
Initialise a static list head.
#define ASSOC_RETRIES
Number of times to try sending a particular association management frame.
#define ARPHRD_ETHER
Ethernet 10Mbps.
#define IEEE80211_IE_RATES
Information element ID for rates information element.
union ieee80211_ie info_element[0]
List of information elements.
Interface to an 802.11 cryptosystem.
struct io_buffer * beacon
The complete beacon or probe-response frame received.
int times_tried
Number of times we have tried sending it.
#define NETDEV_IRQ_UNSUPPORTED
Network device interrupts are unsupported.
u8 channel_nr
A channel number interpreted according to the band.
#define NET80211_PHY_USE_SHORT_SLOT
Whether to use 802.11g short slot operation.
#define ENETUNREACH
Network unreachable.
u32 rx_beacon_interval
Smoothed average time between beacons, microseconds.
int net80211_change_channel(struct net80211_device *dev, int channel)
Configure 802.11 device to transmit on a certain channel.
int net80211_prepare_probe(struct net80211_device *dev, int band, int active)
Prepare 802.11 device channel and rate set for scanning.
static int net80211_process_ie(struct net80211_device *dev, union ieee80211_ie *ie, void *ie_end)
Update 802.11 device state to reflect received information elements.
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
#define NULL
NULL pointer (VOID *)
unsigned channel_change_time
Estimate of the time required to change channels, in microseconds.
#define ETIMEDOUT
Connection timed out.
#define NET80211_CFG_ASSOC
Association has been established with a new BSS (dev->bssid)
#define IEEE80211_MAX_SSID_LEN
Maximum length of an ESSID.
#define NET80211_NR_CONCURRENT_FRAGS
The number of fragments we can receive at once.
u8 rate
The rate currently in use, as an index into the rates array.
static void net80211_update_link_quality(struct net80211_device *dev, struct io_buffer *iob)
Update link quality information based on received beacon.
u16 listen_interval
Interval at which we wake up, in units of the beacon interval.
#define IEEE80211_STYPE_PROBE_REQ
Subtype value for probe-request management frames.
#define NET80211_CRYPTO_SYNCED
Whether we have completed security handshaking with the network.
u8 current_channel
Current channel number, 1-14.
struct ll_protocol * ll_protocol
Link-layer protocol.
#define IEEE80211_TYPE_DATA
Type value for data frames.
#define EINFO_EINVAL_CRYPTO_REQUEST
int net80211_register(struct net80211_device *dev, struct net80211_device_operations *ops, struct net80211_hw_info *hw)
Register 802.11 device with network stack.
#define IEEE80211_FC_RETRY
802.11 Frame Control field: Retransmission flag
static void net80211_netdev_poll(struct net_device *netdev)
Poll 802.11 device for received packets and completed transmissions.
#define IEEE80211_TYPE_MGMT
Type value for management (layer-2) frames.
if(natsemi->flags &NATSEMI_64BIT) return 1
void * memset(void *dest, int character, size_t len) __nonnull
u8 max_txpower
Maximum TX power in dBm.
#define IEEE80211_CAPAB_ADHOC
Set if operating in IBSS (no-AP, "Ad-Hoc") mode.
u16 last_tx_seqnr
The sequence number of the last packet we sent.
void rc80211_update_rx(struct net80211_device *dev, int retry, u16 rate)
Update rate-control state for received packet.