blob: 79643458c60aa5c057d5eed9df75babf5f9bf0f1 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Rob Landleyad8071f2005-04-30 03:49:37 +00002/*
3 * RFC3927 ZeroConf IPv4 Link-Local addressing
4 * (see <http://www.zeroconf.org/>)
5 *
6 * Copyright (C) 2003 by Arthur van Hoff (avh@strangeberry.com)
7 * Copyright (C) 2004 by David Brownell
8 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02009 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Rob Landleyad8071f2005-04-30 03:49:37 +000010 */
11
12/*
Rob Landleyad8071f2005-04-30 03:49:37 +000013 * ZCIP just manages the 169.254.*.* addresses. That network is not
14 * routed at the IP level, though various proxies or bridges can
15 * certainly be used. Its naming is built over multicast DNS.
16 */
17
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000018//#define DEBUG
Rob Landleye3752e52005-05-03 03:28:55 +000019
20// TODO:
21// - more real-world usage/testing, especially daemon mode
22// - kernel packet filters to reduce scheduling noise
23// - avoid silent script failures, especially under load...
24// - link status monitoring (restart on link-up; stop on link-down)
25
Pere Orga5bc8c002011-04-11 03:29:49 +020026//usage:#define zcip_trivial_usage
27//usage: "[OPTIONS] IFACE SCRIPT"
28//usage:#define zcip_full_usage "\n\n"
29//usage: "Manage a ZeroConf IPv4 link-local address\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020030//usage: "\n -f Run in foreground"
31//usage: "\n -q Quit after obtaining address"
32//usage: "\n -r 169.254.x.x Request this address first"
Michel Stamfdd957b2014-10-30 13:43:09 +010033//usage: "\n -l x.x.0.0 Use this range instead of 169.254"
Pere Orga5bc8c002011-04-11 03:29:49 +020034//usage: "\n -v Verbose"
35//usage: "\n"
Michel Stamd3fabf82014-11-04 12:19:04 +010036//usage: "\n$LOGGING=none Suppress logging"
37//usage: "\n$LOGGING=syslog Log to syslog"
38//usage: "\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020039//usage: "\nWith no -q, runs continuously monitoring for ARP conflicts,"
40//usage: "\nexits only on I/O errors (link down etc)"
41
Dan Fandrichf533ec82011-06-10 05:17:59 +020042#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020043#include "common_bufsiz.h"
Rob Landleyad8071f2005-04-30 03:49:37 +000044#include <netinet/ether.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000045#include <net/if.h>
46#include <net/if_arp.h>
Rob Landleyad8071f2005-04-30 03:49:37 +000047#include <linux/sockios.h>
Rob Landleye3752e52005-05-03 03:28:55 +000048
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000049#include <syslog.h>
Denis Vlasenkobd7bb292007-06-17 23:40:26 +000050
51/* We don't need more than 32 bits of the counter */
52#define MONOTONIC_US() ((unsigned)monotonic_us())
Rob Landleyad8071f2005-04-30 03:49:37 +000053
Bernhard Reutner-Fischerec351c32005-12-13 10:28:25 +000054struct arp_packet {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +000055 struct ether_header eth;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000056 struct ether_arp arp;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000057} PACKED;
Rob Landleyad8071f2005-04-30 03:49:37 +000058
Rob Landleybc68cd12006-03-10 19:22:06 +000059enum {
Denys Vlasenko16aa7a72015-08-04 03:27:56 +020060 /* 0-1 seconds before sending 1st probe */
Rob Landleybc68cd12006-03-10 19:22:06 +000061 PROBE_WAIT = 1,
Denys Vlasenko16aa7a72015-08-04 03:27:56 +020062 /* 1-2 seconds between probes */
Rob Landleybc68cd12006-03-10 19:22:06 +000063 PROBE_MIN = 1,
64 PROBE_MAX = 2,
Denys Vlasenko16aa7a72015-08-04 03:27:56 +020065 PROBE_NUM = 3, /* total probes to send */
66 ANNOUNCE_INTERVAL = 2, /* 2 seconds between announces */
67 ANNOUNCE_NUM = 3, /* announces to send */
68 /* if probe/announce sees a conflict, multiply RANDOM(NUM_CONFLICT) by... */
69 CONFLICT_MULTIPLIER = 2,
70 /* if we monitor and see a conflict, how long is defend state? */
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +020071 DEFEND_INTERVAL = 10,
Rob Landleybc68cd12006-03-10 19:22:06 +000072};
Rob Landleyad8071f2005-04-30 03:49:37 +000073
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000074/* States during the configuration process. */
75enum {
76 PROBE = 0,
Denis Vlasenko87d80dc2006-09-03 12:20:36 +000077 ANNOUNCE,
78 MONITOR,
79 DEFEND
80};
Rob Landleyad8071f2005-04-30 03:49:37 +000081
Denis Vlasenkoa09300a2007-11-25 12:40:56 +000082#define VDBG(...) do { } while (0)
83
84
85enum {
86 sock_fd = 3
87};
88
89struct globals {
Denys Vlasenko16aa7a72015-08-04 03:27:56 +020090 struct sockaddr iface_sockaddr;
Denys Vlasenkoe3475832015-08-04 14:30:31 +020091 struct ether_addr our_ethaddr;
Michel Stamfdd957b2014-10-30 13:43:09 +010092 uint32_t localnet_ip;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010093} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020094#define G (*(struct globals*)bb_common_bufsiz1)
Denys Vlasenko16714242011-09-21 01:59:15 +020095#define INIT_G() do { } while (0)
Denis Vlasenkoa09300a2007-11-25 12:40:56 +000096
Rob Landleye3752e52005-05-03 03:28:55 +000097
98/**
Rob Landleyad8071f2005-04-30 03:49:37 +000099 * Pick a random link local IP address on 169.254/16, except that
100 * the first and last 256 addresses are reserved.
101 */
Michel Stamfdd957b2014-10-30 13:43:09 +0100102static uint32_t pick_nip(void)
Rob Landleyad8071f2005-04-30 03:49:37 +0000103{
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000104 unsigned tmp;
Rob Landleyad8071f2005-04-30 03:49:37 +0000105
Rob Landleyad8071f2005-04-30 03:49:37 +0000106 do {
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000107 tmp = rand() & IN_CLASSB_HOST;
Rob Landleyad8071f2005-04-30 03:49:37 +0000108 } while (tmp > (IN_CLASSB_HOST - 0x0200));
Michel Stamfdd957b2014-10-30 13:43:09 +0100109 return htonl((G.localnet_ip + 0x0100) + tmp);
Rob Landleyad8071f2005-04-30 03:49:37 +0000110}
111
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200112static const char *nip_to_a(uint32_t nip)
113{
114 struct in_addr in;
115 in.s_addr = nip;
116 return inet_ntoa(in);
117}
118
Rob Landleye3752e52005-05-03 03:28:55 +0000119/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000120 * Broadcast an ARP packet.
121 */
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200122static void send_arp_request(
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000123 /* int op, - always ARPOP_REQUEST */
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200124 /* const struct ether_addr *source_eth, - always &G.our_ethaddr */
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200125 uint32_t source_nip,
126 const struct ether_addr *target_eth, uint32_t target_nip)
Rob Landleyad8071f2005-04-30 03:49:37 +0000127{
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000128 enum { op = ARPOP_REQUEST };
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200129#define source_eth (&G.our_ethaddr)
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000130
Rob Landleyad8071f2005-04-30 03:49:37 +0000131 struct arp_packet p;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000132 memset(&p, 0, sizeof(p));
Rob Landleyad8071f2005-04-30 03:49:37 +0000133
Rob Landleye3752e52005-05-03 03:28:55 +0000134 // ether header
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000135 p.eth.ether_type = htons(ETHERTYPE_ARP);
136 memcpy(p.eth.ether_shost, source_eth, ETH_ALEN);
137 memset(p.eth.ether_dhost, 0xff, ETH_ALEN);
Rob Landleyad8071f2005-04-30 03:49:37 +0000138
Rob Landleye3752e52005-05-03 03:28:55 +0000139 // arp request
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000140 p.arp.arp_hrd = htons(ARPHRD_ETHER);
141 p.arp.arp_pro = htons(ETHERTYPE_IP);
142 p.arp.arp_hln = ETH_ALEN;
143 p.arp.arp_pln = 4;
144 p.arp.arp_op = htons(op);
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000145 memcpy(&p.arp.arp_sha, source_eth, ETH_ALEN);
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200146 memcpy(&p.arp.arp_spa, &source_nip, 4);
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000147 memcpy(&p.arp.arp_tha, target_eth, ETH_ALEN);
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200148 memcpy(&p.arp.arp_tpa, &target_nip, 4);
Rob Landleyad8071f2005-04-30 03:49:37 +0000149
Rob Landleye3752e52005-05-03 03:28:55 +0000150 // send it
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200151 // Even though sock_fd is already bound to G.iface_sockaddr, just send()
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000152 // won't work, because "socket is not connected"
153 // (and connect() won't fix that, "operation not supported").
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200154 // Thus we sendto() to G.iface_sockaddr. I wonder which sockaddr
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000155 // (from bind() or from sendto()?) kernel actually uses
156 // to determine iface to emit the packet from...
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200157 xsendto(sock_fd, &p, sizeof(p), &G.iface_sockaddr, sizeof(G.iface_sockaddr));
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000158#undef source_eth
Rob Landleyad8071f2005-04-30 03:49:37 +0000159}
160
Rob Landleye3752e52005-05-03 03:28:55 +0000161/**
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000162 * Run a script.
163 * argv[0]:intf argv[1]:script_name argv[2]:junk argv[3]:NULL
Rob Landleyad8071f2005-04-30 03:49:37 +0000164 */
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200165static int run(char *argv[3], const char *param, uint32_t nip)
Rob Landleyad8071f2005-04-30 03:49:37 +0000166{
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000167 int status;
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200168 const char *addr = addr; /* for gcc */
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000169 const char *fmt = "%s %s %s" + 3;
Rob Landleyad8071f2005-04-30 03:49:37 +0000170
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000171 argv[2] = (char*)param;
172
173 VDBG("%s run %s %s\n", argv[0], argv[1], argv[2]);
Rob Landleyad8071f2005-04-30 03:49:37 +0000174
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200175 if (nip != 0) {
176 addr = nip_to_a(nip);
Denis Vlasenkob8d1a4c2008-09-20 16:28:59 +0000177 xsetenv("ip", addr);
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000178 fmt -= 3;
Rob Landleyad8071f2005-04-30 03:49:37 +0000179 }
Denys Vlasenkocde11992016-03-30 16:22:13 +0200180 bb_error_msg(fmt, argv[2], argv[0], addr);
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000181
Denys Vlasenko8531d762010-03-18 22:44:00 +0100182 status = spawn_and_wait(argv + 1);
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000183 if (status < 0) {
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000184 bb_perror_msg("%s %s %s" + 3, argv[2], argv[0]);
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000185 return -errno;
186 }
187 if (status != 0)
Denys Vlasenko8531d762010-03-18 22:44:00 +0100188 bb_error_msg("script %s %s failed, exitcode=%d", argv[1], argv[2], status & 0xff);
Rob Landleyad8071f2005-04-30 03:49:37 +0000189 return status;
190}
191
Rob Landleye3752e52005-05-03 03:28:55 +0000192/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000193 * Return milliseconds of random delay, up to "secs" seconds.
194 */
Denis Vlasenko6b06cb82008-05-15 21:30:45 +0000195static ALWAYS_INLINE unsigned random_delay_ms(unsigned secs)
Rob Landleyad8071f2005-04-30 03:49:37 +0000196{
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +0200197 return (unsigned)rand() % (secs * 1000);
Rob Landleyad8071f2005-04-30 03:49:37 +0000198}
199
Rob Landleye3752e52005-05-03 03:28:55 +0000200/**
Rob Landleyad8071f2005-04-30 03:49:37 +0000201 * main program
202 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000203int zcip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100204int zcip_main(int argc UNUSED_PARAM, char **argv)
Rob Landleyad8071f2005-04-30 03:49:37 +0000205{
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000206 char *r_opt;
Michel Stamfdd957b2014-10-30 13:43:09 +0100207 const char *l_opt = "169.254.0.0";
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200208 int state;
209 int nsent;
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000210 unsigned opts;
211
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200212 // Ugly trick, but I want these zeroed in one go
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000213 struct {
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200214 const struct ether_addr null_ethaddr;
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000215 struct ifreq ifr;
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200216 uint32_t chosen_nip;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200217 int conflicts;
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200218 int timeout_ms; // must be signed
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000219 int verbose;
220 } L;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200221#define null_ethaddr (L.null_ethaddr)
222#define ifr (L.ifr )
223#define chosen_nip (L.chosen_nip )
224#define conflicts (L.conflicts )
225#define timeout_ms (L.timeout_ms )
226#define verbose (L.verbose )
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000227
228 memset(&L, 0, sizeof(L));
Denys Vlasenko16714242011-09-21 01:59:15 +0200229 INIT_G();
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000230
231#define FOREGROUND (opts & 1)
232#define QUIT (opts & 2)
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200233 // Parse commandline: prog [options] ifname script
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000234 // exactly 2 args; -v accumulates and implies -f
235 opt_complementary = "=2:vv:vf";
Michel Stamfdd957b2014-10-30 13:43:09 +0100236 opts = getopt32(argv, "fqr:l:v", &r_opt, &l_opt, &verbose);
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000237#if !BB_MMU
238 // on NOMMU reexec early (or else we will rerun things twice)
239 if (!FOREGROUND)
Denis Vlasenkob29028e2008-02-28 18:02:23 +0000240 bb_daemonize_or_rexec(0 /*was: DAEMON_CHDIR_ROOT*/, argv);
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000241#endif
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200242 // Open an ARP socket
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000243 // (need to do it before openlog to prevent openlog from taking
244 // fd 3 (sock_fd==3))
245 xmove_fd(xsocket(AF_PACKET, SOCK_PACKET, htons(ETH_P_ARP)), sock_fd);
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000246 if (!FOREGROUND) {
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000247 // do it before all bb_xx_msg calls
Denis Vlasenko8f8f2682006-10-03 21:00:43 +0000248 openlog(applet_name, 0, LOG_DAEMON);
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000249 logmode |= LOGMODE_SYSLOG;
Denis Vlasenko3538b9a2006-09-06 18:36:50 +0000250 }
Michel Stamd3fabf82014-11-04 12:19:04 +0100251 bb_logenv_override();
252
Michel Stamfdd957b2014-10-30 13:43:09 +0100253 { // -l n.n.n.n
254 struct in_addr net;
255 if (inet_aton(l_opt, &net) == 0
256 || (net.s_addr & htonl(IN_CLASSB_NET)) != net.s_addr
257 ) {
258 bb_error_msg_and_die("invalid network address");
259 }
260 G.localnet_ip = ntohl(net.s_addr);
261 }
Denis Vlasenkoaf906a32006-09-03 12:29:53 +0000262 if (opts & 4) { // -r n.n.n.n
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200263 struct in_addr ip;
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000264 if (inet_aton(r_opt, &ip) == 0
Michel Stamfdd957b2014-10-30 13:43:09 +0100265 || (ntohl(ip.s_addr) & IN_CLASSB_NET) != G.localnet_ip
Denis Vlasenko9af7c9d2007-01-19 21:19:35 +0000266 ) {
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000267 bb_error_msg_and_die("invalid link address");
Rob Landleye3752e52005-05-03 03:28:55 +0000268 }
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200269 chosen_nip = ip.s_addr;
Rob Landleyad8071f2005-04-30 03:49:37 +0000270 }
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000271 argv += optind - 1;
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000272
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000273 /* Now: argv[0]:junk argv[1]:intf argv[2]:script argv[3]:NULL */
274 /* We need to make space for script argument: */
275 argv[0] = argv[1];
276 argv[1] = argv[2];
277 /* Now: argv[0]:intf argv[1]:script argv[2]:junk argv[3]:NULL */
278#define argv_intf (argv[0])
279
280 xsetenv("interface", argv_intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000281
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200282 // Initialize the interface (modprobe, ifup, etc)
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200283 if (run(argv, "init", 0))
Rob Landleyad8071f2005-04-30 03:49:37 +0000284 return EXIT_FAILURE;
285
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200286 // Initialize G.iface_sockaddr
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200287 // G.iface_sockaddr is: { u16 sa_family; u8 sa_data[14]; }
288 //memset(&G.iface_sockaddr, 0, sizeof(G.iface_sockaddr));
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000289 //TODO: are we leaving sa_family == 0 (AF_UNSPEC)?!
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200290 safe_strncpy(G.iface_sockaddr.sa_data, argv_intf, sizeof(G.iface_sockaddr.sa_data));
Rob Landleyad8071f2005-04-30 03:49:37 +0000291
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200292 // Bind to the interface's ARP socket
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200293 xbind(sock_fd, &G.iface_sockaddr, sizeof(G.iface_sockaddr));
Denis Vlasenko035aae52006-09-03 12:23:56 +0000294
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200295 // Get the interface's ethernet address
Denis Vlasenko9ab26582007-02-14 20:50:22 +0000296 //memset(&ifr, 0, sizeof(ifr));
Denis Vlasenko360d9662008-12-02 18:18:50 +0000297 strncpy_IFNAMSIZ(ifr.ifr_name, argv_intf);
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000298 xioctl(sock_fd, SIOCGIFHWADDR, &ifr);
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200299 memcpy(&G.our_ethaddr, &ifr.ifr_hwaddr.sa_data, ETH_ALEN);
Rob Landleyad8071f2005-04-30 03:49:37 +0000300
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200301 // Start with some stable ip address, either a function of
Denis Vlasenko035aae52006-09-03 12:23:56 +0000302 // the hardware address or else the last address we used.
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000303 // we are taking low-order four bytes, as top-order ones
304 // aren't random enough.
Denis Vlasenko035aae52006-09-03 12:23:56 +0000305 // NOTE: the sequence of addresses we try changes only
306 // depending on when we detect conflicts.
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000307 {
Denis Vlasenkoefb545b2008-12-08 22:56:18 +0000308 uint32_t t;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200309 move_from_unaligned32(t, ((char *)&G.our_ethaddr + 2));
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000310 srand(t);
311 }
Rob Landleye3752e52005-05-03 03:28:55 +0000312 // FIXME cases to handle:
313 // - zcip already running!
314 // - link already has local address... just defend/update
Rob Landleyad8071f2005-04-30 03:49:37 +0000315
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200316 // Daemonize now; don't delay system startup
Denis Vlasenko65dbd872006-09-03 12:27:25 +0000317 if (!FOREGROUND) {
Denis Vlasenko473dae02007-04-11 07:04:23 +0000318#if BB_MMU
Denis Vlasenkob29028e2008-02-28 18:02:23 +0000319 bb_daemonize(0 /*was: DAEMON_CHDIR_ROOT*/);
Denis Vlasenkoafa70232007-03-26 17:25:33 +0000320#endif
Denys Vlasenkocde11992016-03-30 16:22:13 +0200321 bb_error_msg("start, interface %s", argv_intf);
Rob Landleyad8071f2005-04-30 03:49:37 +0000322 }
323
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200324 // Run the dynamic address negotiation protocol,
Rob Landleye3752e52005-05-03 03:28:55 +0000325 // restarting after address conflicts:
326 // - start with some address we want to try
327 // - short random delay
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000328 // - arp probes to see if another host uses it
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +0200329 // 00:04:e2:64:23:c2 > ff:ff:ff:ff:ff:ff arp who-has 169.254.194.171 tell 0.0.0.0
Rob Landleye3752e52005-05-03 03:28:55 +0000330 // - arp announcements that we're claiming it
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +0200331 // 00:04:e2:64:23:c2 > ff:ff:ff:ff:ff:ff arp who-has 169.254.194.171 (00:04:e2:64:23:c2) tell 169.254.194.171
Rob Landleye3752e52005-05-03 03:28:55 +0000332 // - use it
333 // - defend it, within limits
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000334 // exit if:
335 // - address is successfully obtained and -q was given:
336 // run "<script> config", then exit with exitcode 0
337 // - poll error (when does this happen?)
338 // - read error (when does this happen?)
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200339 // - sendto error (in send_arp_request()) (when does this happen?)
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000340 // - revents & POLLERR (link down). run "<script> deconfig" first
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200341 if (chosen_nip == 0) {
342 new_nip_and_PROBE:
343 chosen_nip = pick_nip();
344 }
345 nsent = 0;
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000346 state = PROBE;
Rob Landleyad8071f2005-04-30 03:49:37 +0000347 while (1) {
348 struct pollfd fds[1];
Denys Vlasenko334e12a2015-10-24 19:15:44 +0200349 unsigned deadline_us = deadline_us;
Rob Landleyad8071f2005-04-30 03:49:37 +0000350 struct arp_packet p;
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200351 int ip_conflict;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200352 int n;
Rob Landleyad8071f2005-04-30 03:49:37 +0000353
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000354 fds[0].fd = sock_fd;
Rob Landleyad8071f2005-04-30 03:49:37 +0000355 fds[0].events = POLLIN;
356 fds[0].revents = 0;
357
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200358 // Poll, being ready to adjust current timeout
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000359 if (!timeout_ms) {
Denis Vlasenkoa09300a2007-11-25 12:40:56 +0000360 timeout_ms = random_delay_ms(PROBE_WAIT);
361 // FIXME setsockopt(sock_fd, SO_ATTACH_FILTER, ...) to
Rob Landleye3752e52005-05-03 03:28:55 +0000362 // make the kernel filter out all packets except
363 // ones we'd care about.
Rob Landleyad8071f2005-04-30 03:49:37 +0000364 }
Denys Vlasenko49d51592015-10-24 19:14:04 +0200365 if (timeout_ms >= 0) {
366 // Set deadline_us to the point in time when we timeout
367 deadline_us = MONOTONIC_US() + timeout_ms * 1000;
368 }
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000369
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200370 VDBG("...wait %d %s nsent=%u\n",
371 timeout_ms, argv_intf, nsent);
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000372
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200373 n = safe_poll(fds, 1, timeout_ms);
374 if (n < 0) {
Denis Vlasenkof3f33eb2008-02-04 09:42:05 +0000375 //bb_perror_msg("poll"); - done in safe_poll
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000376 return EXIT_FAILURE;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200377 }
378 if (n == 0) { // timed out?
379 VDBG("state:%d\n", state);
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000380 switch (state) {
381 case PROBE:
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200382 // No conflicting ARP packets were seen:
383 // we can progress through the states
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200384 if (nsent < PROBE_NUM) {
385 nsent++;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000386 VDBG("probe/%u %s@%s\n",
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200387 nsent, argv_intf, nip_to_a(chosen_nip));
Ken Sharpa4d564a2014-07-20 14:01:49 +0200388 timeout_ms = PROBE_MIN * 1000;
389 timeout_ms += random_delay_ms(PROBE_MAX - PROBE_MIN);
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200390 send_arp_request(0, &null_ethaddr, chosen_nip);
391 continue;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000392 }
Denys Vlasenko6390a3a2015-10-13 01:51:37 +0200393 // Switch to announce state
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200394 nsent = 0;
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200395 state = ANNOUNCE;
396 goto send_announce;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000397 case ANNOUNCE:
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200398 // No conflicting ARP packets were seen:
399 // we can progress through the states
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200400 if (nsent < ANNOUNCE_NUM) {
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200401 send_announce:
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200402 nsent++;
Denis Vlasenkobd7bb292007-06-17 23:40:26 +0000403 VDBG("announce/%u %s@%s\n",
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200404 nsent, argv_intf, nip_to_a(chosen_nip));
Ken Sharpa4d564a2014-07-20 14:01:49 +0200405 timeout_ms = ANNOUNCE_INTERVAL * 1000;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200406 send_arp_request(chosen_nip, &G.our_ethaddr, chosen_nip);
407 continue;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000408 }
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200409 // Switch to monitor state
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200410 // FIXME update filters
411 run(argv, "config", chosen_nip);
412 // NOTE: all other exit paths should deconfig...
413 if (QUIT)
414 return EXIT_SUCCESS;
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +0200415 // fall through: switch to MONITOR
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200416 default:
417 // case DEFEND:
418 // case MONITOR: (shouldn't happen, MONITOR timeout is infinite)
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200419 // Defend period ended with no ARP replies - we won
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200420 timeout_ms = -1; // never timeout in monitor state
Denys Vlasenko16aa7a72015-08-04 03:27:56 +0200421 state = MONITOR;
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200422 continue;
423 }
424 }
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000425
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200426 // Packet arrived, or link went down.
427 // We need to adjust the timeout in case we didn't receive
428 // a conflicting packet.
429 if (timeout_ms > 0) {
430 unsigned diff = deadline_us - MONOTONIC_US();
431 if ((int)(diff) < 0) {
432 // Current time is greater than the expected timeout time.
433 diff = 0;
434 }
435 VDBG("adjusting timeout\n");
436 timeout_ms = (diff / 1000) | 1; // never 0
437 }
438
439 if ((fds[0].revents & POLLIN) == 0) {
440 if (fds[0].revents & POLLERR) {
441 // FIXME: links routinely go down;
442 // this shouldn't necessarily exit.
443 bb_error_msg("iface %s is down", argv_intf);
444 if (state >= MONITOR) {
445 // Only if we are in MONITOR or DEFEND
446 run(argv, "deconfig", chosen_nip);
Rob Landleyad8071f2005-04-30 03:49:37 +0000447 }
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200448 return EXIT_FAILURE;
Rob Landleyad8071f2005-04-30 03:49:37 +0000449 }
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200450 continue;
451 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000452
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200453 // Read ARP packet
454 if (safe_read(sock_fd, &p, sizeof(p)) < 0) {
455 bb_perror_msg_and_die(bb_msg_read_error);
456 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000457
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200458 if (p.eth.ether_type != htons(ETHERTYPE_ARP))
459 continue;
460 if (p.arp.arp_op != htons(ARPOP_REQUEST)
461 && p.arp.arp_op != htons(ARPOP_REPLY)
462 ) {
463 continue;
464 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000465#ifdef DEBUG
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200466 {
467 struct ether_addr *sha = (struct ether_addr *) p.arp.arp_sha;
468 struct ether_addr *tha = (struct ether_addr *) p.arp.arp_tha;
469 struct in_addr *spa = (struct in_addr *) p.arp.arp_spa;
470 struct in_addr *tpa = (struct in_addr *) p.arp.arp_tpa;
471 VDBG("source=%s %s\n", ether_ntoa(sha), inet_ntoa(*spa));
472 VDBG("target=%s %s\n", ether_ntoa(tha), inet_ntoa(*tpa));
473 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000474#endif
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200475 ip_conflict = 0;
476 if (memcmp(&p.arp.arp_sha, &G.our_ethaddr, ETH_ALEN) != 0) {
477 if (memcmp(p.arp.arp_spa, &chosen_nip, 4) == 0) {
478 // A probe or reply with source_ip == chosen ip
479 ip_conflict = 1;
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000480 }
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200481 if (p.arp.arp_op == htons(ARPOP_REQUEST)
482 && memcmp(p.arp.arp_spa, &const_int_0, 4) == 0
483 && memcmp(p.arp.arp_tpa, &chosen_nip, 4) == 0
484 ) {
485 // A probe with source_ip == 0.0.0.0, target_ip == chosen ip:
486 // another host trying to claim this ip!
487 ip_conflict |= 2;
488 }
489 }
490 VDBG("state:%d ip_conflict:%d\n", state, ip_conflict);
491 if (!ip_conflict)
492 continue;
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200493
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200494 // Either src or target IP conflict exists
495 if (state <= ANNOUNCE) {
496 // PROBE or ANNOUNCE
497 conflicts++;
498 timeout_ms = PROBE_MIN * 1000
499 + CONFLICT_MULTIPLIER * random_delay_ms(conflicts);
500 goto new_nip_and_PROBE;
501 }
Denis Vlasenko87d80dc2006-09-03 12:20:36 +0000502
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200503 // MONITOR or DEFEND: only src IP conflict is a problem
504 if (ip_conflict & 1) {
505 if (state == MONITOR) {
506 // Src IP conflict, defend with a single ARP probe
507 VDBG("monitor conflict - defending\n");
508 timeout_ms = DEFEND_INTERVAL * 1000;
509 state = DEFEND;
510 send_arp_request(chosen_nip, &G.our_ethaddr, chosen_nip);
511 continue;
Denys Vlasenko99e30be2015-08-04 12:28:21 +0200512 }
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200513 // state == DEFEND
514 // Another src IP conflict, start over
515 VDBG("defend conflict - starting over\n");
516 run(argv, "deconfig", chosen_nip);
517 conflicts = 0;
518 timeout_ms = 0;
519 goto new_nip_and_PROBE;
520 }
521 // Note: if we only have a target IP conflict here (ip_conflict & 2),
522 // IOW: if we just saw this sort of ARP packet:
Denys Vlasenkoa83e3ae2015-08-04 15:06:38 +0200523 // aa:bb:cc:dd:ee:ff > xx:xx:xx:xx:xx:xx arp who-has <chosen_nip> tell 0.0.0.0
Denys Vlasenkoe3475832015-08-04 14:30:31 +0200524 // we expect _kernel_ to respond to that, because <chosen_nip>
525 // is (expected to be) configured on this iface.
Denis Vlasenko5d61e712007-09-27 10:09:59 +0000526 } // while (1)
Denis Vlasenkocdd1f732008-10-10 11:28:39 +0000527#undef argv_intf
Rob Landleyad8071f2005-04-30 03:49:37 +0000528}