blob: d71ac49301d58cb4881c4cdb28b6a31a2bb2c910 [file] [log] [blame]
Bernhard Reutner-Fischerdac7ff12006-04-12 17:55:51 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9e598412003-01-09 10:06:01 +00002/*
3 * arping.c - Ping hosts by ARP requests/replies
4 *
Rob Landley8ea52052006-03-30 21:50:57 +00005 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath9e598412003-01-09 10:06:01 +00006 *
7 * Author: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8 * Busybox port: Nick Fedchik <nick@fedchik.org.ua>
9 */
10
11#include <sys/ioctl.h>
Mike Frysinger06adf5f2006-03-22 00:25:07 +000012#include <signal.h>
Glenn L McGrath9e598412003-01-09 10:06:01 +000013
Glenn L McGrath9e598412003-01-09 10:06:01 +000014#include <arpa/inet.h>
15#include <net/if.h>
16#include <netinet/ether.h>
17#include <netpacket/packet.h>
18
19#include "busybox.h"
20
Glenn L McGrath6b0658f2003-09-26 00:33:18 +000021static struct in_addr src;
22static struct in_addr dst;
23static struct sockaddr_ll me;
24static struct sockaddr_ll he;
25static struct timeval last;
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +000026
27enum cfg_e {
28 dad = 1,
29 unsolicited = 2,
30 advert = 4,
31 quiet = 8,
32 quit_on_reply = 16,
Bernhard Reutner-Fischer61536292006-04-03 09:46:29 +000033 broadcast_only = 32,
34 unicasting = 64
Rob Landley8ea52052006-03-30 21:50:57 +000035};
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +000036static int cfg;
Rob Landley8ea52052006-03-30 21:50:57 +000037
38static int s;
Denis Vlasenko13858992006-10-08 12:49:22 +000039static unsigned count = UINT_MAX;
40static unsigned timeout;
Glenn L McGrath6b0658f2003-09-26 00:33:18 +000041static int sent;
42static int brd_sent;
43static int received;
44static int brd_recv;
45static int req_recv;
Glenn L McGrath9e598412003-01-09 10:06:01 +000046
47#define MS_TDIFF(tv1,tv2) ( ((tv1).tv_sec-(tv2).tv_sec)*1000 + \
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000048 ((tv1).tv_usec-(tv2).tv_usec)/1000 )
49
Glenn L McGrathe6ae6e32003-01-19 13:31:41 +000050static int send_pack(int sock, struct in_addr *src_addr,
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000051 struct in_addr *dst_addr, struct sockaddr_ll *ME,
52 struct sockaddr_ll *HE)
Glenn L McGrath9e598412003-01-09 10:06:01 +000053{
54 int err;
55 struct timeval now;
Bernhard Reutner-Fischer2766eed2006-03-31 18:13:42 +000056 RESERVE_CONFIG_UBUFFER(buf, 256);
Glenn L McGrath9e598412003-01-09 10:06:01 +000057 struct arphdr *ah = (struct arphdr *) buf;
58 unsigned char *p = (unsigned char *) (ah + 1);
59
60 ah->ar_hrd = htons(ME->sll_hatype);
61 ah->ar_hrd = htons(ARPHRD_ETHER);
62 ah->ar_pro = htons(ETH_P_IP);
63 ah->ar_hln = ME->sll_halen;
64 ah->ar_pln = 4;
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000065 ah->ar_op = cfg & advert ? htons(ARPOP_REPLY) : htons(ARPOP_REQUEST);
Glenn L McGrath9e598412003-01-09 10:06:01 +000066
67 memcpy(p, &ME->sll_addr, ah->ar_hln);
68 p += ME->sll_halen;
69
70 memcpy(p, src_addr, 4);
71 p += 4;
72
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000073 if (cfg & advert)
Glenn L McGrath9e598412003-01-09 10:06:01 +000074 memcpy(p, &ME->sll_addr, ah->ar_hln);
75 else
76 memcpy(p, &HE->sll_addr, ah->ar_hln);
77 p += ah->ar_hln;
78
79 memcpy(p, dst_addr, 4);
80 p += 4;
81
82 gettimeofday(&now, NULL);
83 err = sendto(sock, buf, p - buf, 0, (struct sockaddr *) HE, sizeof(*HE));
84 if (err == p - buf) {
85 last = now;
86 sent++;
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000087 if (!(cfg & unicasting))
Glenn L McGrath9e598412003-01-09 10:06:01 +000088 brd_sent++;
89 }
Bernhard Reutner-Fischer2766eed2006-03-31 18:13:42 +000090 RELEASE_CONFIG_BUFFER(buf);
Glenn L McGrath9e598412003-01-09 10:06:01 +000091 return err;
92}
93
Eric Andersen14f5c8d2005-04-16 19:39:00 +000094static void finish(void)
Glenn L McGrath9e598412003-01-09 10:06:01 +000095{
Denis Vlasenko1dc1b372006-12-23 02:48:44 +000096 if (!(cfg & quiet)) {
97 printf("Sent %d probe(s) (%d broadcast(s))\n"
98 "Received %d repl%s"
99 " (%d request(s), %d broadcast(s))\n",
Bernhard Reutner-Fischerebd13552006-04-03 12:29:12 +0000100 sent, brd_sent,
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000101 received, (received == 1) ? "ies" : "y",
102 req_recv, brd_recv);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000103 }
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000104 if (cfg & dad)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000105 exit(!!received);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000106 if (cfg & unsolicited)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000107 exit(0);
108 exit(!received);
109}
110
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000111static void catcher(void)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000112{
113 struct timeval tv;
Glenn L McGrath8b96b712003-08-28 19:54:16 +0000114 static struct timeval start;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000115
116 gettimeofday(&tv, NULL);
117
118 if (start.tv_sec == 0)
119 start = tv;
120
121 if (count-- == 0
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000122 || (timeout && MS_TDIFF(tv, start) > timeout * 1000 + 500))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000123 finish();
124
125 if (last.tv_sec == 0 || MS_TDIFF(tv, last) > 500) {
126 send_pack(s, &src, &dst, &me, &he);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000127 if (count == 0 && (cfg & unsolicited))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000128 finish();
129 }
130 alarm(1);
131}
132
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000133static int recv_pack(unsigned char *buf, int len, struct sockaddr_ll *FROM)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000134{
Glenn L McGrath9e598412003-01-09 10:06:01 +0000135 struct arphdr *ah = (struct arphdr *) buf;
136 unsigned char *p = (unsigned char *) (ah + 1);
137 struct in_addr src_ip, dst_ip;
138
Glenn L McGrath9e598412003-01-09 10:06:01 +0000139 /* Filter out wild packets */
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000140 if (FROM->sll_pkttype != PACKET_HOST
141 && FROM->sll_pkttype != PACKET_BROADCAST
142 && FROM->sll_pkttype != PACKET_MULTICAST)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000143 return 0;
144
145 /* Only these types are recognised */
146 if (ah->ar_op != htons(ARPOP_REQUEST) && ah->ar_op != htons(ARPOP_REPLY))
147 return 0;
148
149 /* ARPHRD check and this darned FDDI hack here :-( */
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000150 if (ah->ar_hrd != htons(FROM->sll_hatype)
151 && (FROM->sll_hatype != ARPHRD_FDDI || ah->ar_hrd != htons(ARPHRD_ETHER)))
Glenn L McGrath9e598412003-01-09 10:06:01 +0000152 return 0;
153
154 /* Protocol must be IP. */
155 if (ah->ar_pro != htons(ETH_P_IP))
156 return 0;
157 if (ah->ar_pln != 4)
158 return 0;
159 if (ah->ar_hln != me.sll_halen)
160 return 0;
161 if (len < sizeof(*ah) + 2 * (4 + ah->ar_hln))
162 return 0;
163 memcpy(&src_ip, p + ah->ar_hln, 4);
164 memcpy(&dst_ip, p + ah->ar_hln + 4 + ah->ar_hln, 4);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000165 if (!(cfg & dad)) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000166 if (src_ip.s_addr != dst.s_addr)
167 return 0;
168 if (src.s_addr != dst_ip.s_addr)
169 return 0;
170 if (memcmp(p + ah->ar_hln + 4, &me.sll_addr, ah->ar_hln))
171 return 0;
172 } else {
173 /* DAD packet was:
174 src_ip = 0 (or some src)
175 src_hw = ME
176 dst_ip = tested address
177 dst_hw = <unspec>
178
179 We fail, if receive request/reply with:
180 src_ip = tested_address
181 src_hw != ME
182 if src_ip in request was not zero, check
183 also that it matches to dst_ip, otherwise
184 dst_ip/dst_hw do not matter.
185 */
186 if (src_ip.s_addr != dst.s_addr)
187 return 0;
188 if (memcmp(p, &me.sll_addr, me.sll_halen) == 0)
189 return 0;
190 if (src.s_addr && src.s_addr != dst_ip.s_addr)
191 return 0;
192 }
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000193 if (!(cfg & quiet)) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000194 int s_printed = 0;
Rob Landley8ea52052006-03-30 21:50:57 +0000195 struct timeval tv;
196
197 gettimeofday(&tv, NULL);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000198
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000199 printf("%scast re%s from %s [%s]",
200 FROM->sll_pkttype == PACKET_HOST ? "Uni" : "Broad",
201 ah->ar_op == htons(ARPOP_REPLY) ? "ply" : "quest",
Bernhard Reutner-Fischerebd13552006-04-03 12:29:12 +0000202 inet_ntoa(src_ip),
203 ether_ntoa((struct ether_addr *) p));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000204 if (dst_ip.s_addr != src.s_addr) {
205 printf("for %s ", inet_ntoa(dst_ip));
206 s_printed = 1;
207 }
208 if (memcmp(p + ah->ar_hln + 4, me.sll_addr, ah->ar_hln)) {
209 if (!s_printed)
210 printf("for ");
211 printf("[%s]",
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000212 ether_ntoa((struct ether_addr *) p + ah->ar_hln + 4));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000213 }
Rob Landley8ea52052006-03-30 21:50:57 +0000214
Glenn L McGrath9e598412003-01-09 10:06:01 +0000215 if (last.tv_sec) {
216 long usecs = (tv.tv_sec - last.tv_sec) * 1000000 +
217 tv.tv_usec - last.tv_usec;
218 long msecs = (usecs + 500) / 1000;
219
220 usecs -= msecs * 1000 - 500;
221 printf(" %ld.%03ldms\n", msecs, usecs);
222 } else {
223 printf(" UNSOLICITED?\n");
224 }
225 fflush(stdout);
226 }
227 received++;
228 if (FROM->sll_pkttype != PACKET_HOST)
229 brd_recv++;
230 if (ah->ar_op == htons(ARPOP_REQUEST))
231 req_recv++;
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000232 if (cfg & quit_on_reply)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000233 finish();
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000234 if (!(cfg & broadcast_only)) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000235 memcpy(he.sll_addr, p, me.sll_halen);
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000236 cfg |= unicasting;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000237 }
238 return 1;
239}
240
Denis Vlasenko06af2162007-02-03 17:28:39 +0000241int arping_main(int argc, char **argv);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000242int arping_main(int argc, char **argv)
243{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000244 const char *device = "eth0";
Rob Landley8ea52052006-03-30 21:50:57 +0000245 int ifindex;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000246 char *source = NULL;
247 char *target;
248
Denis Vlasenko27af5a02006-09-03 12:21:59 +0000249 s = xsocket(PF_PACKET, SOCK_DGRAM, 0);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000250
Rob Landleyafb94ec2006-07-16 08:06:34 +0000251 // Drop suid root privileges
252 xsetuid(getuid());
Glenn L McGrath9e598412003-01-09 10:06:01 +0000253
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000254 {
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000255 unsigned opt;
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000256 char *_count, *_timeout;
Bernhard Reutner-Fischera0f75e22006-04-03 11:52:01 +0000257
258 /* Dad also sets quit_on_reply.
259 * Advert also sets unsolicited.
260 */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000261 opt_complementary = "Df:AU";
262 opt = getopt32(argc, argv, "DUAqfbc:w:i:s:",
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000263 &_count, &_timeout, &device, &source);
264 cfg |= opt & 0x3f; /* set respective flags */
265 if (opt & 0x40) /* -c: count */
Denis Vlasenko13858992006-10-08 12:49:22 +0000266 count = xatou(_count);
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000267 if (opt & 0x80) /* -w: timeout */
Denis Vlasenko13858992006-10-08 12:49:22 +0000268 timeout = xatoul_range(_timeout, 0, INT_MAX/2000);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000269 //if (opt & 0x100) /* -i: interface */
270 if (strlen(device) > IF_NAMESIZE) {
271 bb_error_msg_and_die("interface name '%s' is too long",
272 device);
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000273 }
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000274 //if (opt & 0x200) /* -s: source */
Glenn L McGrath9e598412003-01-09 10:06:01 +0000275 }
276 argc -= optind;
277 argv += optind;
278
279 if (argc != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 bb_show_usage();
Glenn L McGrath9e598412003-01-09 10:06:01 +0000281
282 target = *argv;
Bernhard Reutner-Fischer13766942006-03-31 18:02:46 +0000283
Denis Vlasenko40920822006-10-03 20:28:06 +0000284 xfunc_error_retval = 2;
Glenn L McGrath9e598412003-01-09 10:06:01 +0000285
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000286 {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000287 struct ifreq ifr;
288
289 memset(&ifr, 0, sizeof(ifr));
290 strncpy(ifr.ifr_name, device, IFNAMSIZ - 1);
291 if (ioctl(s, SIOCGIFINDEX, &ifr) < 0) {
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000292 bb_error_msg_and_die("interface %s not found", device);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000293 }
294 ifindex = ifr.ifr_ifindex;
295
296 if (ioctl(s, SIOCGIFFLAGS, (char *) &ifr)) {
Rob Landley8ea52052006-03-30 21:50:57 +0000297 bb_error_msg_and_die("SIOCGIFFLAGS");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000298 }
299 if (!(ifr.ifr_flags & IFF_UP)) {
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000300 bb_error_msg_and_die("interface %s is down", device);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000301 }
302 if (ifr.ifr_flags & (IFF_NOARP | IFF_LOOPBACK)) {
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000303 bb_error_msg("interface %s is not ARPable", device);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000304 return (cfg & dad ? 0 : 2);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000305 }
306 }
307
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000308 if (!inet_aton(target, &dst)) {
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000309 len_and_sockaddr *lsa;
Denis Vlasenko42823d52007-02-04 02:39:08 +0000310 lsa = xhost_and_af2sockaddr(target, 0, AF_INET);
Denis Vlasenko90ec4dc2007-01-25 19:44:38 +0000311 memcpy(&dst, &lsa->sin.sin_addr.s_addr, 4);
312 if (ENABLE_FEATURE_CLEAN_UP)
313 free(lsa);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000314 }
315
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000316 if (source && !inet_aton(source, &src)) {
Rob Landley8ea52052006-03-30 21:50:57 +0000317 bb_error_msg_and_die("invalid source address %s", source);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000318 }
319
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000320 if (!(cfg & dad) && (cfg & unsolicited) && src.s_addr == 0)
Glenn L McGrath9e598412003-01-09 10:06:01 +0000321 src = dst;
322
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000323 if (!(cfg & dad) || src.s_addr) {
Glenn L McGrath9e598412003-01-09 10:06:01 +0000324 struct sockaddr_in saddr;
Denis Vlasenko27af5a02006-09-03 12:21:59 +0000325 int probe_fd = xsocket(AF_INET, SOCK_DGRAM, 0);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000326
Glenn L McGrath9e598412003-01-09 10:06:01 +0000327 if (device) {
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000328 if (setsockopt(probe_fd, SOL_SOCKET, SO_BINDTODEVICE, device, strlen(device) + 1) == -1)
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000329 bb_error_msg("warning: interface %s is ignored", device);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000330 }
331 memset(&saddr, 0, sizeof(saddr));
332 saddr.sin_family = AF_INET;
333 if (src.s_addr) {
334 saddr.sin_addr = src;
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000335 xbind(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
336 } else if (!(cfg & dad)) {
Eric Andersen0cb6f352006-01-30 22:30:41 +0000337 socklen_t alen = sizeof(saddr);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000338
339 saddr.sin_port = htons(1025);
340 saddr.sin_addr = dst;
341
Denis Vlasenko703e2022007-01-22 14:12:08 +0000342 if (setsockopt(probe_fd, SOL_SOCKET, SO_DONTROUTE, &const_int_1, sizeof(const_int_1)) == -1)
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000343 bb_perror_msg("warning: setsockopt(SO_DONTROUTE)");
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000344 xconnect(probe_fd, (struct sockaddr *) &saddr, sizeof(saddr));
345 if (getsockname(probe_fd, (struct sockaddr *) &saddr, &alen) == -1) {
Rob Landley8ea52052006-03-30 21:50:57 +0000346 bb_error_msg_and_die("getsockname");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000347 }
348 src = saddr.sin_addr;
349 }
350 close(probe_fd);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000351 }
Glenn L McGrath9e598412003-01-09 10:06:01 +0000352
353 me.sll_family = AF_PACKET;
354 me.sll_ifindex = ifindex;
355 me.sll_protocol = htons(ETH_P_ARP);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000356 xbind(s, (struct sockaddr *) &me, sizeof(me));
Glenn L McGrath9e598412003-01-09 10:06:01 +0000357
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000358 {
Eric Andersen0cb6f352006-01-30 22:30:41 +0000359 socklen_t alen = sizeof(me);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000360
361 if (getsockname(s, (struct sockaddr *) &me, &alen) == -1) {
Rob Landley8ea52052006-03-30 21:50:57 +0000362 bb_error_msg_and_die("getsockname");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000363 }
364 }
365 if (me.sll_halen == 0) {
Denis Vlasenkoe1a0d482006-10-20 13:28:22 +0000366 bb_error_msg("interface \"%s\" is not ARPable (no ll address)", device);
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000367 return (cfg & dad ? 0 : 2);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000368 }
369 he = me;
370 memset(he.sll_addr, -1, he.sll_halen);
371
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000372 if (!(cfg & quiet)) {
Bernhard Reutner-Fischerebd13552006-04-03 12:29:12 +0000373 printf("ARPING to %s from %s via %s\n",
374 inet_ntoa(dst), inet_ntoa(src),
375 device ? device : "unknown");
Glenn L McGratha837e2d2003-02-09 07:01:33 +0000376 }
Glenn L McGrath9e598412003-01-09 10:06:01 +0000377
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000378 if (!src.s_addr && !(cfg & dad)) {
Rob Landley8ea52052006-03-30 21:50:57 +0000379 bb_error_msg_and_die("no src address in the non-DAD mode");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000380 }
381
382 {
383 struct sigaction sa;
Glenn L McGrathe6ae6e32003-01-19 13:31:41 +0000384
Glenn L McGrath9e598412003-01-09 10:06:01 +0000385 memset(&sa, 0, sizeof(sa));
386 sa.sa_flags = SA_RESTART;
387
388 sa.sa_handler = (void (*)(int)) finish;
389 sigaction(SIGINT, &sa, NULL);
390
391 sa.sa_handler = (void (*)(int)) catcher;
392 sigaction(SIGALRM, &sa, NULL);
393 }
394
395 catcher();
396
397 while (1) {
398 sigset_t sset, osset;
Bernhard Reutner-Fischer2766eed2006-03-31 18:13:42 +0000399 RESERVE_CONFIG_UBUFFER(packet, 4096);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000400 struct sockaddr_ll from;
Eric Andersen0cb6f352006-01-30 22:30:41 +0000401 socklen_t alen = sizeof(from);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000402 int cc;
403
Denis Vlasenko1dc1b372006-12-23 02:48:44 +0000404 cc = recvfrom(s, packet, 4096, 0, (struct sockaddr *) &from, &alen);
405 if (cc < 0) {
Denis Vlasenkoa65a1772006-09-23 12:46:30 +0000406 bb_perror_msg("recvfrom");
Glenn L McGrath9e598412003-01-09 10:06:01 +0000407 continue;
408 }
409 sigemptyset(&sset);
410 sigaddset(&sset, SIGALRM);
411 sigaddset(&sset, SIGINT);
412 sigprocmask(SIG_BLOCK, &sset, &osset);
413 recv_pack(packet, cc, &from);
414 sigprocmask(SIG_SETMASK, &osset, NULL);
Bernhard Reutner-Fischer2766eed2006-03-31 18:13:42 +0000415 RELEASE_CONFIG_BUFFER(packet);
Glenn L McGrath9e598412003-01-09 10:06:01 +0000416 }
417}