blob: 260ba24639013b4dab21620bbb26baef0d22242b [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Mike Frysingerb662f0d2005-05-11 03:59:53 +00002/*
3 * ether-wake.c - Send a magic packet to wake up sleeping machines.
4 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02005 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Mike Frysingerb662f0d2005-05-11 03:59:53 +00006 *
7 * Author: Donald Becker, http://www.scyld.com/"; http://www.scyld.com/wakeonlan.html
8 * Busybox port: Christian Volkmann <haveaniceday@online.de>
9 * Used version of ether-wake.c: v1.09 11/12/2003 Donald Becker, http://www.scyld.com/";
10 */
11
12/* full usage according Donald Becker
13 * usage: ether-wake [-i <ifname>] [-p aa:bb:cc:dd[:ee:ff]] 00:11:22:33:44:55\n"
14 *
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000015 * This program generates and transmits a Wake-On-LAN (WOL)\n"
16 * \"Magic Packet\", used for restarting machines that have been\n"
17 * soft-powered-down (ACPI D3-warm state).\n"
18 * It currently generates the standard AMD Magic Packet format, with\n"
19 * an optional password appended.\n"
Mike Frysingerb662f0d2005-05-11 03:59:53 +000020 *
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000021 * The single required parameter is the Ethernet MAC (station) address\n"
22 * of the machine to wake or a host ID with known NSS 'ethers' entry.\n"
23 * The MAC address may be found with the 'arp' program while the target\n"
24 * machine is awake.\n"
Mike Frysingerb662f0d2005-05-11 03:59:53 +000025 *
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000026 * Options:\n"
27 * -b Send wake-up packet to the broadcast address.\n"
28 * -D Increase the debug level.\n"
29 * -i ifname Use interface IFNAME instead of the default 'eth0'.\n"
30 * -p <pw> Append the four or six byte password PW to the packet.\n"
31 * A password is only required for a few adapter types.\n"
32 * The password may be specified in ethernet hex format\n"
33 * or dotted decimal (Internet address)\n"
34 * -p 00:22:44:66:88:aa\n"
35 * -p 192.168.1.1\n";
Mike Frysingerb662f0d2005-05-11 03:59:53 +000036 *
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000037 *
38 * This program generates and transmits a Wake-On-LAN (WOL) "Magic Packet",
39 * used for restarting machines that have been soft-powered-down
40 * (ACPI D3-warm state). It currently generates the standard AMD Magic Packet
41 * format, with an optional password appended.
42 *
43 * This software may be used and distributed according to the terms
44 * of the GNU Public License, incorporated herein by reference.
45 * Contact the author for use under other terms.
46 *
47 * This source file was originally part of the network tricks package, and
48 * is now distributed to support the Scyld Beowulf system.
49 * Copyright 1999-2003 Donald Becker and Scyld Computing Corporation.
50 *
51 * The author may be reached as becker@scyld, or C/O
52 * Scyld Computing Corporation
53 * 914 Bay Ridge Road, Suite 220
54 * Annapolis MD 21403
55 *
Mike Frysingerb662f0d2005-05-11 03:59:53 +000056 * Notes:
57 * On some systems dropping root capability allows the process to be
58 * dumped, traced or debugged.
59 * If someone traces this program, they get control of a raw socket.
60 * Linux handles this safely, but beware when porting this program.
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000061 *
Mike Frysingerb662f0d2005-05-11 03:59:53 +000062 * An alternative to needing 'root' is using a UDP broadcast socket, however
63 * doing so only works with adapters configured for unicast+broadcast Rx
64 * filter. That configuration consumes more power.
65*/
66
Pere Orga5bc8c002011-04-11 03:29:49 +020067//usage:#define ether_wake_trivial_usage
68//usage: "[-b] [-i iface] [-p aa:bb:cc:dd[:ee:ff]] MAC"
69//usage:#define ether_wake_full_usage "\n\n"
70//usage: "Send a magic packet to wake up sleeping machines.\n"
71//usage: "MAC must be a station address (00:11:22:33:44:55) or\n"
72//usage: "a hostname with a known 'ethers' entry.\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020073//usage: "\n -b Send wake-up packet to the broadcast address"
74//usage: "\n -i iface Interface to use (default eth0)"
75//usage: "\n -p pass Append four or six byte password PW to the packet"
Mike Frysingerb662f0d2005-05-11 03:59:53 +000076
Mike Frysingerb662f0d2005-05-11 03:59:53 +000077#include <netpacket/packet.h>
78#include <net/ethernet.h>
Mike Frysingerb662f0d2005-05-11 03:59:53 +000079#include <netinet/ether.h>
Mike Frysingerb662f0d2005-05-11 03:59:53 +000080#include <linux/if.h>
Mike Frysingerb662f0d2005-05-11 03:59:53 +000081
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000082#include "libbb.h"
Mike Frysingerb662f0d2005-05-11 03:59:53 +000083
84/* Note: PF_INET, SOCK_DGRAM, IPPROTO_UDP would allow SIOCGIFHWADDR to
85 * work as non-root, but we need SOCK_PACKET to specify the Ethernet
86 * destination address.
87 */
88#ifdef PF_PACKET
89# define whereto_t sockaddr_ll
Rob Landleyd921b2e2006-08-03 15:41:12 +000090# define make_socket() xsocket(PF_PACKET, SOCK_RAW, 0)
Mike Frysingerb662f0d2005-05-11 03:59:53 +000091#else
92# define whereto_t sockaddr
Rob Landleyd921b2e2006-08-03 15:41:12 +000093# define make_socket() xsocket(AF_INET, SOCK_PACKET, SOCK_PACKET)
Mike Frysingerb662f0d2005-05-11 03:59:53 +000094#endif
95
96#ifdef DEBUG
97# define bb_debug_msg(fmt, args...) fprintf(stderr, fmt, ## args)
98void bb_debug_dump_packet(unsigned char *outpack, int pktsize)
99{
100 int i;
101 printf("packet dump:\n");
102 for (i = 0; i < pktsize; ++i) {
103 printf("%2.2x ", outpack[i]);
Denis Vlasenko4daad902007-09-27 10:20:47 +0000104 if (i % 20 == 19) bb_putchar('\n');
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000105 }
106 printf("\n\n");
107}
108#else
Denis Vlasenko198714c2007-04-16 23:16:37 +0000109# define bb_debug_msg(fmt, args...) ((void)0)
110# define bb_debug_dump_packet(outpack, pktsize) ((void)0)
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000111#endif
112
Denis Vlasenko198714c2007-04-16 23:16:37 +0000113/* Convert the host ID string to a MAC address.
114 * The string may be a:
115 * Host name
116 * IP address string
117 * MAC address string
118*/
119static void get_dest_addr(const char *hostid, struct ether_addr *eaddr)
120{
121 struct ether_addr *eap;
122
Denys Vlasenko37a658c2010-03-23 15:43:08 +0100123 eap = ether_aton_r(hostid, eaddr);
Denis Vlasenko198714c2007-04-16 23:16:37 +0000124 if (eap) {
Denys Vlasenko37a658c2010-03-23 15:43:08 +0100125 bb_debug_msg("The target station address is %s\n\n", ether_ntoa(eap));
Denys Vlasenko22cbfbd2009-08-30 16:23:29 +0200126#if !defined(__UCLIBC_MAJOR__) \
127 || __UCLIBC_MAJOR__ > 0 \
128 || __UCLIBC_MINOR__ > 9 \
129 || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ >= 30)
Denis Vlasenko198714c2007-04-16 23:16:37 +0000130 } else if (ether_hostton(hostid, eaddr) == 0) {
131 bb_debug_msg("Station address for hostname %s is %s\n\n", hostid, ether_ntoa(eaddr));
132#endif
Denys Vlasenko37a658c2010-03-23 15:43:08 +0100133 } else {
Denis Vlasenko198714c2007-04-16 23:16:37 +0000134 bb_show_usage();
Denys Vlasenko37a658c2010-03-23 15:43:08 +0100135 }
Denis Vlasenko198714c2007-04-16 23:16:37 +0000136}
137
138static int get_fill(unsigned char *pkt, struct ether_addr *eaddr, int broadcast)
139{
140 int i;
141 unsigned char *station_addr = eaddr->ether_addr_octet;
142
143 memset(pkt, 0xff, 6);
144 if (!broadcast)
145 memcpy(pkt, station_addr, 6);
146 pkt += 6;
147
148 memcpy(pkt, station_addr, 6); /* 6 */
149 pkt += 6;
150
151 *pkt++ = 0x08; /* 12 */ /* Or 0x0806 for ARP, 0x8035 for RARP */
152 *pkt++ = 0x42; /* 13 */
153
154 memset(pkt, 0xff, 6); /* 14 */
155
156 for (i = 0; i < 16; ++i) {
157 pkt += 6;
158 memcpy(pkt, station_addr, 6); /* 20,26,32,... */
159 }
160
161 return 20 + 16*6; /* length of packet */
162}
163
164static int get_wol_pw(const char *ethoptarg, unsigned char *wol_passwd)
165{
166 unsigned passwd[6];
167 int byte_cnt, i;
168
169 /* handle MAC format */
170 byte_cnt = sscanf(ethoptarg, "%2x:%2x:%2x:%2x:%2x:%2x",
171 &passwd[0], &passwd[1], &passwd[2],
172 &passwd[3], &passwd[4], &passwd[5]);
173 /* handle IP format */
174// FIXME: why < 4?? should it be < 6?
175 if (byte_cnt < 4)
176 byte_cnt = sscanf(ethoptarg, "%u.%u.%u.%u",
177 &passwd[0], &passwd[1], &passwd[2], &passwd[3]);
178 if (byte_cnt < 4) {
Denys Vlasenko6331cf02009-11-13 09:08:27 +0100179 bb_error_msg("can't read Wake-On-LAN pass");
Denis Vlasenko198714c2007-04-16 23:16:37 +0000180 return 0;
181 }
182// TODO: check invalid numbers >255??
183 for (i = 0; i < byte_cnt; ++i)
184 wol_passwd[i] = passwd[i];
185
186 bb_debug_msg("password: %2.2x %2.2x %2.2x %2.2x (%d)\n\n",
187 wol_passwd[0], wol_passwd[1], wol_passwd[2], wol_passwd[3],
188 byte_cnt);
189
190 return byte_cnt;
191}
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000192
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000193int ether_wake_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000194int ether_wake_main(int argc UNUSED_PARAM, char **argv)
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000195{
Denis Vlasenko4c978632007-02-03 03:31:13 +0000196 const char *ifname = "eth0";
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000197 char *pass;
Denis Vlasenko198714c2007-04-16 23:16:37 +0000198 unsigned flags;
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000199 unsigned char wol_passwd[6];
200 int wol_passwd_sz = 0;
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200201 int s; /* Raw socket */
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000202 int pktsize;
203 unsigned char outpack[1000];
204
205 struct ether_addr eaddr;
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200206 struct whereto_t whereto; /* who to wake up */
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000207
208 /* handle misc user options */
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000209 opt_complementary = "=1";
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000210 flags = getopt32(argv, "bi:p:", &ifname, &pass);
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000211 if (flags & 4) /* -p */
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000212 wol_passwd_sz = get_wol_pw(pass, wol_passwd);
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000213 flags &= 1; /* we further interested only in -b [bcast] flag */
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000214
215 /* create the raw socket */
216 s = make_socket();
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000217
218 /* now that we have a raw socket we can drop root */
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000219 /* xsetuid(getuid()); - but save on code size... */
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000220
221 /* look up the dest mac address */
222 get_dest_addr(argv[optind], &eaddr);
223
224 /* fill out the header of the packet */
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000225 pktsize = get_fill(outpack, &eaddr, flags /* & 1 OPT_BROADCAST */);
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000226
227 bb_debug_dump_packet(outpack, pktsize);
228
229 /* Fill in the source address, if possible. */
230#ifdef __linux__
231 {
232 struct ifreq if_hwaddr;
233
Denis Vlasenko360d9662008-12-02 18:18:50 +0000234 strncpy_IFNAMSIZ(if_hwaddr.ifr_name, ifname);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000235 ioctl_or_perror_and_die(s, SIOCGIFHWADDR, &if_hwaddr, "SIOCGIFHWADDR on %s failed", ifname);
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000236
237 memcpy(outpack+6, if_hwaddr.ifr_hwaddr.sa_data, 6);
238
239# ifdef DEBUG
240 {
241 unsigned char *hwaddr = if_hwaddr.ifr_hwaddr.sa_data;
242 printf("The hardware address (SIOCGIFHWADDR) of %s is type %d "
243 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x\n\n", ifname,
244 if_hwaddr.ifr_hwaddr.sa_family, hwaddr[0], hwaddr[1],
245 hwaddr[2], hwaddr[3], hwaddr[4], hwaddr[5]);
246 }
247# endif
248 }
249#endif /* __linux__ */
250
251 bb_debug_dump_packet(outpack, pktsize);
252
253 /* append the password if specified */
254 if (wol_passwd_sz > 0) {
255 memcpy(outpack+pktsize, wol_passwd, wol_passwd_sz);
256 pktsize += wol_passwd_sz;
257 }
258
259 bb_debug_dump_packet(outpack, pktsize);
260
261 /* This is necessary for broadcasts to work */
Denis Vlasenko517d1aa2007-04-16 23:23:33 +0000262 if (flags /* & 1 OPT_BROADCAST */) {
Denis Vlasenko198714c2007-04-16 23:16:37 +0000263 if (setsockopt_broadcast(s) != 0)
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000264 bb_perror_msg("SO_BROADCAST");
265 }
266
267#if defined(PF_PACKET)
268 {
269 struct ifreq ifr;
Denis Vlasenko360d9662008-12-02 18:18:50 +0000270 strncpy_IFNAMSIZ(ifr.ifr_name, ifname);
Denis Vlasenkofb79a2e2007-07-14 22:07:14 +0000271 xioctl(s, SIOCGIFINDEX, &ifr);
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000272 memset(&whereto, 0, sizeof(whereto));
273 whereto.sll_family = AF_PACKET;
274 whereto.sll_ifindex = ifr.ifr_ifindex;
275 /* The manual page incorrectly claims the address must be filled.
276 We do so because the code may change to match the docs. */
277 whereto.sll_halen = ETH_ALEN;
278 memcpy(whereto.sll_addr, outpack, ETH_ALEN);
279 }
280#else
281 whereto.sa_family = 0;
282 strcpy(whereto.sa_data, ifname);
283#endif
Bernhard Reutner-Fischerb2908892007-04-12 11:34:39 +0000284 xsendto(s, outpack, pktsize, (struct sockaddr *)&whereto, sizeof(whereto));
Denis Vlasenko198714c2007-04-16 23:16:37 +0000285 if (ENABLE_FEATURE_CLEAN_UP)
286 close(s);
Mike Frysingerb662f0d2005-05-11 03:59:53 +0000287 return EXIT_SUCCESS;
288}