commit
d4c7a9348f
@ -0,0 +1,33 @@ |
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* (C) Copyright 2018 |
||||||
|
* Lothar Felte, lothar.felten@gmail.com |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
* Wake-on-LAN support |
||||||
|
*/ |
||||||
|
#include <common.h> |
||||||
|
#include <command.h> |
||||||
|
#include <net.h> |
||||||
|
|
||||||
|
#if defined(CONFIG_CMD_WOL) |
||||||
|
void wol_set_timeout(ulong); |
||||||
|
|
||||||
|
int do_wol(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
||||||
|
{ |
||||||
|
/* Validate arguments */ |
||||||
|
if (argc < 2) |
||||||
|
return CMD_RET_USAGE; |
||||||
|
wol_set_timeout(simple_strtol(argv[1], NULL, 10) * 1000); |
||||||
|
if (net_loop(WOL) < 0) |
||||||
|
return CMD_RET_FAILURE; |
||||||
|
return CMD_RET_SUCCESS; |
||||||
|
} |
||||||
|
|
||||||
|
U_BOOT_CMD( |
||||||
|
wol, 2, 1, do_wol, |
||||||
|
"wait for an incoming wake-on-lan packet", |
||||||
|
"Timeout" |
||||||
|
); |
||||||
|
#endif |
@ -0,0 +1,96 @@ |
|||||||
|
// SPDX-License-Identifier: GPL-2.0+
|
||||||
|
/*
|
||||||
|
* Copyright 2018 Lothar Felten, lothar.felten@gmail.com |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <common.h> |
||||||
|
#include <command.h> |
||||||
|
#include <net.h> |
||||||
|
#include <environment.h> |
||||||
|
#include "wol.h" |
||||||
|
|
||||||
|
static ulong wol_timeout = WOL_DEFAULT_TIMEOUT; |
||||||
|
|
||||||
|
/*
|
||||||
|
* Check incoming Wake-on-LAN packet for: |
||||||
|
* - sync bytes |
||||||
|
* - sixteen copies of the target MAC address |
||||||
|
* |
||||||
|
* @param wol Wake-on-LAN packet |
||||||
|
* @param len Packet length |
||||||
|
*/ |
||||||
|
static int wol_check_magic(struct wol_hdr *wol, unsigned int len) |
||||||
|
{ |
||||||
|
int i; |
||||||
|
|
||||||
|
if (len < sizeof(struct wol_hdr)) |
||||||
|
return 0; |
||||||
|
|
||||||
|
for (i = 0; i < WOL_SYNC_COUNT; i++) |
||||||
|
if (wol->wol_sync[i] != WOL_SYNC_BYTE) |
||||||
|
return 0; |
||||||
|
|
||||||
|
for (i = 0; i < WOL_MAC_REPETITIONS; i++) |
||||||
|
if (memcmp(&wol->wol_dest[i * ARP_HLEN], |
||||||
|
net_ethaddr, ARP_HLEN) != 0) |
||||||
|
return 0; |
||||||
|
|
||||||
|
return 1; |
||||||
|
} |
||||||
|
|
||||||
|
void wol_receive(struct ip_udp_hdr *ip, unsigned int len) |
||||||
|
{ |
||||||
|
struct wol_hdr *wol; |
||||||
|
|
||||||
|
wol = (struct wol_hdr *)ip; |
||||||
|
|
||||||
|
if (!wol_check_magic(wol, len)) |
||||||
|
return; |
||||||
|
|
||||||
|
/* save the optional password using the ether-wake formats */ |
||||||
|
/* don't check for exact length, the packet might have padding */ |
||||||
|
if (len >= (sizeof(struct wol_hdr) + WOL_PASSWORD_6B)) { |
||||||
|
eth_env_set_enetaddr("wolpassword", wol->wol_passwd); |
||||||
|
} else if (len >= (sizeof(struct wol_hdr) + WOL_PASSWORD_4B)) { |
||||||
|
char buffer[16]; |
||||||
|
struct in_addr *ip = (struct in_addr *)(wol->wol_passwd); |
||||||
|
|
||||||
|
ip_to_string(*ip, buffer); |
||||||
|
env_set("wolpassword", buffer); |
||||||
|
} |
||||||
|
net_set_state(NETLOOP_SUCCESS); |
||||||
|
} |
||||||
|
|
||||||
|
static void wol_udp_handler(uchar *pkt, unsigned int dest, struct in_addr sip, |
||||||
|
unsigned int src, unsigned int len) |
||||||
|
{ |
||||||
|
struct wol_hdr *wol; |
||||||
|
|
||||||
|
wol = (struct wol_hdr *)pkt; |
||||||
|
|
||||||
|
/* UDP destination port must be 0, 7 or 9 */ |
||||||
|
if (dest != 0 && dest != 7 && dest != 9) |
||||||
|
return; |
||||||
|
|
||||||
|
if (!wol_check_magic(wol, len)) |
||||||
|
return; |
||||||
|
|
||||||
|
net_set_state(NETLOOP_SUCCESS); |
||||||
|
} |
||||||
|
|
||||||
|
void wol_set_timeout(ulong timeout) |
||||||
|
{ |
||||||
|
wol_timeout = timeout; |
||||||
|
} |
||||||
|
|
||||||
|
static void wol_timeout_handler(void) |
||||||
|
{ |
||||||
|
eth_halt(); |
||||||
|
net_set_state(NETLOOP_FAIL); |
||||||
|
} |
||||||
|
|
||||||
|
void wol_start(void) |
||||||
|
{ |
||||||
|
net_set_timeout_handler(wol_timeout, wol_timeout_handler); |
||||||
|
net_set_udp_handler(wol_udp_handler); |
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
/* SPDX-License-Identifier: GPL-2.0+ */ |
||||||
|
/*
|
||||||
|
* wol - Wake-on-LAN |
||||||
|
* |
||||||
|
* Supports both Wake-on-LAN packet types: |
||||||
|
* - EtherType 0x0842 packets |
||||||
|
* - UDP packets on ports 0, 7 and 9. |
||||||
|
* |
||||||
|
* Copyright 2018 Lothar Felten, lothar.felten@gmail.com |
||||||
|
*/ |
||||||
|
|
||||||
|
#if defined(CONFIG_CMD_WOL) |
||||||
|
|
||||||
|
#ifndef __WOL_H__ |
||||||
|
#define __WOL_H__ |
||||||
|
|
||||||
|
#include <net.h> |
||||||
|
|
||||||
|
/**********************************************************************/ |
||||||
|
|
||||||
|
#define WOL_SYNC_BYTE 0xFF |
||||||
|
#define WOL_SYNC_COUNT 6 |
||||||
|
#define WOL_MAC_REPETITIONS 16 |
||||||
|
#define WOL_DEFAULT_TIMEOUT 5000 |
||||||
|
#define WOL_PASSWORD_4B 4 |
||||||
|
#define WOL_PASSWORD_6B 6 |
||||||
|
|
||||||
|
/*
|
||||||
|
* Wake-on-LAN header |
||||||
|
*/ |
||||||
|
struct wol_hdr { |
||||||
|
u8 wol_sync[WOL_SYNC_COUNT]; /* sync bytes */ |
||||||
|
u8 wol_dest[WOL_MAC_REPETITIONS * ARP_HLEN]; /* 16x MAC */ |
||||||
|
u8 wol_passwd[0]; /* optional */ |
||||||
|
}; |
||||||
|
|
||||||
|
/*
|
||||||
|
* Initialize wol (beginning of netloop) |
||||||
|
*/ |
||||||
|
void wol_start(void); |
||||||
|
|
||||||
|
/*
|
||||||
|
* Check incoming Wake-on-LAN packet for: |
||||||
|
* - sync bytes |
||||||
|
* - sixteen copies of the target MAC address |
||||||
|
* |
||||||
|
* Optionally store the four or six byte password in the environment |
||||||
|
* variable "wolpassword" |
||||||
|
* |
||||||
|
* @param ip IP header in the packet |
||||||
|
* @param len Packet length |
||||||
|
*/ |
||||||
|
void wol_receive(struct ip_udp_hdr *ip, unsigned int len); |
||||||
|
|
||||||
|
/*
|
||||||
|
* Set the timeout for the reception of a Wake-on-LAN packet |
||||||
|
* |
||||||
|
* @param timeout in milliseconds |
||||||
|
*/ |
||||||
|
void wol_set_timeout(ulong timeout); |
||||||
|
|
||||||
|
/**********************************************************************/ |
||||||
|
|
||||||
|
#endif /* __WOL_H__ */ |
||||||
|
#endif |
Loading…
Reference in new issue