Use safe SIGINT handler
[oweals/nmrpflash.git] / nmrp.c
1 /**
2  * nmrpflash - Netgear Unbrick Utility
3  * Copyright (C) 2016 Joseph Lehner <joseph.c.lehner@gmail.com>
4  *
5  * nmrpflash is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * nmrpflash is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with nmrpflash.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19
20 #include <signal.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <unistd.h>
24 #include <errno.h>
25 #include <stdio.h>
26 #include <time.h>
27 #include "nmrpd.h"
28
29 #define NMRP_HDR_LEN 6
30 #define NMRP_OPT_HDR_LEN 4
31 #define NMRP_MIN_PKT_LEN (sizeof(struct eth_hdr) +  NMRP_HDR_LEN)
32
33 #define NMRP_MAX_OPT_SIZE 12
34 #define NMRP_MAX_OPT_NUM 3
35
36 #define NMRP_OPT_NEXT(x) ((struct nmrp_opt*)(((char*)x) + x->len))
37
38 #define ETH_P_NMRP 0x0912
39 #define IP_LEN 4
40 #define MAX_LOOP_RECV 1024
41
42 #ifndef PACKED
43 #define PACKED __attribute__((__packed__))
44 #endif
45
46 #ifdef NMRPFLASH_WINDOWS
47 #define setenv(name, value, overwrite) SetEnvironmentVariable(name, value)
48 #endif
49
50 enum nmrp_code {
51         NMRP_C_NONE = 0,
52         NMRP_C_ADVERTISE = 1,
53         NMRP_C_CONF_REQ = 2,
54         NMRP_C_CONF_ACK = 3,
55         NMRP_C_CLOSE_REQ = 4,
56         NMRP_C_CLOSE_ACK = 5,
57         NMRP_C_KEEP_ALIVE_REQ = 6,
58         NMRP_C_KEEP_ALIVE_ACK = 7,
59         NMRP_C_TFTP_UL_REQ = 16
60 };
61
62 enum nmrp_opt_type {
63         NMRP_O_MAGIC_NO = 0x0001,
64         NMRP_O_DEV_IP = 0x0002,
65         NMRP_O_DEV_REGION = 0x0004,
66         NMRP_O_FW_UP = 0x0101,
67         NMRP_O_ST_UP = 0x0102,
68         NMRP_O_FILE_NAME = 0x0181
69 };
70
71 struct nmrp_opt {
72         uint16_t type;
73         uint16_t len;
74         union {
75                 uint8_t magic[4];
76                 uint16_t region;
77                 struct {
78                         uint8_t addr[4];
79                         uint8_t mask[4];
80                 } ip;
81         } val;
82 } PACKED;
83
84 struct nmrp_msg {
85         uint16_t reserved;
86         uint8_t code;
87         uint8_t id;
88         uint16_t len;
89         /* only opts[0] is valid! think of this as a char* */
90         struct nmrp_opt opts[NMRP_MAX_OPT_NUM];
91         /* this is NOT part of the transmitted packet */
92         uint32_t num_opts;
93 } PACKED;
94
95 struct nmrp_pkt {
96         struct eth_hdr eh;
97         struct nmrp_msg msg;
98 } PACKED;
99
100 static const char *msg_code_str(uint16_t code)
101 {
102 #define CASE_CODE(x) case NMRP_C_ ## x: return #x
103         static char buf[16];
104
105         switch (code) {
106                 CASE_CODE(ADVERTISE);
107                 CASE_CODE(CONF_REQ);
108                 CASE_CODE(CONF_ACK);
109                 CASE_CODE(CLOSE_REQ);
110                 CASE_CODE(CLOSE_ACK);
111                 CASE_CODE(KEEP_ALIVE_REQ);
112                 CASE_CODE(KEEP_ALIVE_ACK);
113                 CASE_CODE(TFTP_UL_REQ);
114                 default:
115                         snprintf(buf, sizeof(buf), "%04x", code);
116                         return buf;
117         }
118 #undef CASE_CODE
119 }
120
121 static uint16_t to_region_code(const char *region)
122 {
123 #define REGION_CODE(r, c) if (!strcasecmp(region, r)) return c
124         REGION_CODE("NA", 0x0001);
125         REGION_CODE("WW", 0x0002);
126         REGION_CODE("GR", 0x0003);
127         REGION_CODE("PR", 0x0004);
128         REGION_CODE("RU", 0x0005);
129         REGION_CODE("BZ", 0x0006);
130         REGION_CODE("IN", 0x0007);
131         REGION_CODE("KO", 0x0008);
132         REGION_CODE("JP", 0x0009);
133 #undef REGION_CODE
134         return 0;
135 }
136
137 static void msg_dump(struct nmrp_msg *msg)
138 {
139         int remain_len;
140
141         fprintf(stderr, "res=0x%04x, code=0x%02x, id=0x%02x, len=%u",
142                         msg->reserved, msg->code, msg->id, msg->len);
143
144         remain_len = msg->len - NMRP_HDR_LEN;
145         fprintf(stderr, "%s\n", remain_len ? "" : " (no opts)");
146 }
147
148 static void msg_hton(struct nmrp_msg *msg)
149 {
150         uint32_t i = 0;
151         struct nmrp_opt *opt = msg->opts, *next;
152
153         msg->reserved = htons(msg->reserved);
154         msg->len = htons(msg->len);
155
156         for (; i != msg->num_opts; ++i) {
157                 next = NMRP_OPT_NEXT(opt);
158                 opt->len = htons(opt->len);
159                 opt->type = htons(opt->type);
160                 opt = next;
161         }
162 }
163
164 static void msg_hdr_ntoh(struct nmrp_msg *msg)
165 {
166         msg->reserved = ntohs(msg->reserved);
167         msg->len = ntohs(msg->len);
168 }
169
170 static int msg_ntoh(struct nmrp_msg *msg)
171 {
172         struct nmrp_opt *opt = msg->opts;
173         int remaining;
174
175         remaining = msg->len - NMRP_HDR_LEN;
176
177         // FIXME maximum of two options supported, maximum option
178         // size is 12
179         if (remaining < NMRP_MAX_OPT_NUM * NMRP_MAX_OPT_SIZE) {
180                 while (remaining > 0) {
181                         if (remaining < NMRP_OPT_HDR_LEN) {
182                                 break;
183                         }
184
185                         opt->type = ntohs(opt->type);
186                         opt->len = ntohs(opt->len);
187
188                         if (!opt->len || opt->len > NMRP_MAX_OPT_SIZE) {
189                                 break;
190                         }
191
192                         remaining -= opt->len;
193                         opt = NMRP_OPT_NEXT(opt);
194                 }
195
196                 if (!remaining) {
197                         return 0;
198                 }
199         }
200
201         fprintf(stderr, "Unexpected message format.\n");
202         msg_dump(msg);
203         return 1;
204 }
205
206 static void *msg_opt_data(struct nmrp_msg *msg, uint16_t type, uint16_t *len)
207 {
208         static char buf[128];
209         struct nmrp_opt *opt = msg->opts;
210         int remaining = msg->len - NMRP_HDR_LEN;
211
212         memset(buf, 0, sizeof(buf));
213
214         while (remaining > 0) {
215                 if (opt->type == type) {
216                         if (opt->len == NMRP_OPT_HDR_LEN) {
217                                 return NULL;
218                         }
219                         *len = opt->len - NMRP_OPT_HDR_LEN;
220                         memcpy(buf, &opt->val, MIN(*len, sizeof(buf)-1));
221                         return buf;
222                 }
223
224                 if (!opt->len) {
225                         break;
226                 }
227
228                 remaining -= opt->len;
229                 opt = NMRP_OPT_NEXT(opt);
230         }
231
232         return NULL;
233 }
234
235 static void msg_opt_add(struct nmrp_msg *msg, uint16_t type, void *data,
236                 uint16_t len)
237 {
238         uint32_t i = 0;
239         struct nmrp_opt *opt = msg->opts;
240
241         if (len + NMRP_OPT_HDR_LEN > NMRP_MAX_OPT_SIZE
242                         || msg->num_opts == NMRP_MAX_OPT_NUM) {
243                 fprintf(stderr, "Invalid option - this is a bug.\n");
244         }
245
246         for (; i <= msg->num_opts; ++i) {
247                 opt = NMRP_OPT_NEXT(opt);
248         }
249
250         opt->len = NMRP_OPT_HDR_LEN + len;
251         opt->type = type;
252
253         if (len) {
254                 memcpy(&opt->val, data, len);
255         }
256
257         msg->len += opt->len;
258         ++msg->num_opts;
259 }
260
261 static inline void msg_init(struct nmrp_msg *msg, uint16_t code)
262 {
263         memset(msg, 0, sizeof(*msg));
264         msg->len = NMRP_HDR_LEN;
265         msg->code = code;
266 }
267
268 #ifdef NMRPFLASH_FUZZ
269 #define ethsock_create(a, b) ethsock_create_fake(a, b)
270 #define ethsock_get_hwaddr(a) ethsock_get_hwaddr_fake(a)
271 #define ethsock_recv(a, b, c) ethsock_recv_fake(a, b, c)
272 #define ethsock_send(a, b, c) (0)
273 #define ethsock_set_timeout(a, b) (0)
274 #define ethsock_ip_add(a, b, c, d) (0)
275 #define ethsock_ip_del(a, b) (0)
276 #define ethsock_close(a) (0)
277 #define tftp_put(a) (0)
278
279 static struct ethsock* ethsock_create_fake(const char *intf, uint16_t protocol)
280 {
281         return (struct ethsock*)1;
282 }
283
284 static uint8_t *ethsock_get_hwaddr_fake(struct ethsock* sock)
285 {
286         static uint8_t hwaddr[6];
287         memset(hwaddr, 0xfa, 6);
288         return hwaddr;
289 }
290
291 static ssize_t ethsock_recv_fake(struct ethsock *sock, void *buf, size_t len)
292 {
293         return read(STDIN_FILENO, buf, len);
294 }
295 #endif
296
297 static int pkt_send(struct ethsock *sock, struct nmrp_pkt *pkt)
298 {
299         size_t len = ntohs(pkt->msg.len) + sizeof(pkt->eh);
300         return ethsock_send(sock, pkt, len);
301 }
302
303 static int pkt_recv(struct ethsock *sock, struct nmrp_pkt *pkt)
304 {
305         ssize_t bytes, len;
306
307         memset(pkt, 0, sizeof(*pkt));
308         bytes = ethsock_recv(sock, pkt, sizeof(*pkt));
309         if (bytes < 0) {
310                 return 1;
311         } else if (!bytes) {
312                 return 2;
313         } else if (bytes < NMRP_MIN_PKT_LEN) {
314                 fprintf(stderr, "Short packet (%d bytes)\n", (int)bytes);
315                 return 1;
316         }
317
318         msg_hdr_ntoh(&pkt->msg);
319         len = pkt->msg.len + sizeof(pkt->eh);
320
321         if (bytes < len) {
322                 fprintf(stderr, "Short packet (expected %d, got %d).\n",
323                                 (int)len, (int)bytes);
324                 return 1;
325         }
326
327         return msg_ntoh(&pkt->msg);
328 }
329
330 static int mac_parse(const char *str, uint8_t *hwaddr)
331 {
332         int i;
333         unsigned data[6];
334
335         sscanf(str, "%02x:%02x:%02x:%02x:%02x:%02x%n",
336                         data, data + 1, data + 2, data + 3, data + 4, data + 5, &i);
337
338         if (i == strlen(str)) {
339                 for (i = 0; i != 6; ++i) {
340                         if (data[i] > 255) {
341                                 break;
342                         }
343
344                         hwaddr[i] = data[i] & 0xff;
345                 }
346
347                 if (i == 6) {
348                         return 1;
349                 }
350         }
351         return 0;
352 }
353
354 struct is_valid_ip_arg
355 {
356         struct in_addr *ipaddr;
357         struct in_addr *ipmask;
358         int result;
359 };
360
361 static int is_valid_ip_cb(struct ethsock_ip_callback_args *args)
362 {
363 #define SUBNET(x) ((x)->ipaddr->s_addr & (x)->ipmask->s_addr)
364         struct is_valid_ip_arg *arg = args->arg;
365         if (SUBNET(args) == SUBNET(arg)) {
366                 arg->result = args->ipaddr->s_addr != arg->ipaddr->s_addr;
367                 return 0;
368         }
369
370         return 1;
371 #undef SUBNET
372 }
373
374 static int is_valid_ip(struct ethsock *sock, struct in_addr *ipaddr,
375                 struct in_addr *ipmask)
376 {
377         int status;
378         struct is_valid_ip_arg arg = {
379                 .ipaddr = ipaddr,
380                 .ipmask = ipmask,
381                 .result = 0
382         };
383
384         status = ethsock_for_each_ip(sock, is_valid_ip_cb, &arg);
385         return status < 0 ? status : arg.result;
386 }
387
388 static void sigh(int sig)
389 {
390         g_interrupted = 1;
391 }
392
393 static const char *spinner = "\\|/-";
394
395 int nmrp_do(struct nmrpd_args *args)
396 {
397         struct nmrp_pkt tx, rx;
398         uint8_t *src, dest[6];
399         uint16_t len, region;
400         char *filename;
401         time_t beg;
402         int i, status, ulreqs, expect, upload_ok, autoip;
403         struct ethsock *sock;
404         struct ethsock_ip_undo *ip_undo = NULL;
405         struct ethsock_arp_undo *arp_undo = NULL;
406         uint32_t intf_addr;
407         void (*sigh_orig)(int);
408         struct {
409                 struct in_addr addr;
410                 struct in_addr mask;
411         } PACKED ipconf;
412
413         if (args->op != NMRP_UPLOAD_FW) {
414                 fprintf(stderr, "Operation not implemented.\n");
415                 return 1;
416         }
417
418         if (!mac_parse(args->mac, dest)) {
419                 fprintf(stderr, "Invalid MAC address '%s'.\n", args->mac);
420                 return 1;
421         }
422
423         ipconf.mask.s_addr = inet_addr(args->ipmask);
424         if (ipconf.mask.s_addr == INADDR_NONE
425                         || netmask(bitcount(ipconf.mask.s_addr)) != ipconf.mask.s_addr) {
426                 fprintf(stderr, "Invalid subnet mask '%s'.\n", args->ipmask);
427                 return 1;
428         }
429
430         if (!args->ipaddr) {
431                 autoip = true;
432                 /* The MAC of the device that was used to test this utility starts
433                  * with a4:2b:8c, hence 164 (0xa4) and 183 (0x2b + 0x8c)
434                  */
435                 args->ipaddr = "10.164.183.252";
436
437                 if (!args->ipaddr_intf) {
438                         args->ipaddr_intf = "10.164.183.253";
439                 }
440         } else if (args->ipaddr_intf) {
441                 autoip = true;
442         } else {
443                 autoip = false;
444         }
445
446         if ((ipconf.addr.s_addr = inet_addr(args->ipaddr)) == INADDR_NONE) {
447                 fprintf(stderr, "Invalid IP address '%s'.\n", args->ipaddr);
448                 return 1;
449         }
450
451         if (args->ipaddr_intf && (intf_addr = inet_addr(args->ipaddr_intf)) == INADDR_NONE) {
452                 fprintf(stderr, "Invalid IP address '%s'.\n", args->ipaddr_intf);
453                 return 1;
454         }
455
456         if (args->file_local && strcmp(args->file_local, "-") && access(args->file_local, R_OK) == -1) {
457                 fprintf(stderr, "Error accessing file '%s'.\n", args->file_local);
458                 return 1;
459         }
460
461         if (args->file_remote) {
462                 if (!tftp_is_valid_filename(args->file_remote)) {
463                         fprintf(stderr, "Invalid remote filename '%s'.\n",
464                                         args->file_remote);
465                         return 1;
466                 }
467         }
468
469         if (args->region) {
470                 region = htons(to_region_code(args->region));
471                 if (!region) {
472                         fprintf(stderr, "Invalid region code '%s'.\n", args->region);
473                         return 1;
474                 }
475         } else {
476                 region = 0;
477         }
478
479         status = 1;
480
481         sock = ethsock_create(args->intf, ETH_P_NMRP);
482         if (!sock) {
483                 return 1;
484         }
485
486         sigh_orig = signal(SIGINT, sigh);
487
488         if (!autoip) {
489                 status = is_valid_ip(sock, &ipconf.addr, &ipconf.mask);
490                 if (status <= 0) {
491                         if (!status) {
492                                 fprintf(stderr, "Address %s/%s cannot be used on interface %s.\n",
493                                                 args->ipaddr, args->ipmask, args->intf);
494                         }
495                         goto out;
496                 }
497         } else {
498                 if (verbosity) {
499                         printf("Adding %s to interface %s.\n", args->ipaddr_intf, args->intf);
500                 }
501
502                 if (ethsock_ip_add(sock, intf_addr, ipconf.mask.s_addr, &ip_undo) != 0) {
503                         goto out;
504                 }
505         }
506
507         if (ethsock_set_timeout(sock, args->rx_timeout)) {
508                 goto out;
509         }
510
511         src = ethsock_get_hwaddr(sock);
512         if (!src) {
513                 goto out;
514         }
515
516         memcpy(tx.eh.ether_shost, src, 6);
517         memcpy(tx.eh.ether_dhost, dest, 6);
518         tx.eh.ether_type = htons(ETH_P_NMRP);
519
520         msg_init(&tx.msg, NMRP_C_ADVERTISE);
521         msg_opt_add(&tx.msg, NMRP_O_MAGIC_NO, "NTGR", 4);
522         msg_hton(&tx.msg);
523
524         i = 0;
525         upload_ok = 0;
526         beg = time_monotonic();
527
528         while (!g_interrupted) {
529                 printf("\rAdvertising NMRP server on %s ... %c",
530                                 args->intf, spinner[i]);
531                 fflush(stdout);
532                 i = (i + 1) & 3;
533
534                 if (pkt_send(sock, &tx) < 0) {
535                         xperror("sendto");
536                         goto out;
537                 }
538
539                 status = pkt_recv(sock, &rx);
540                 if (status == 0 && memcmp(rx.eh.ether_dhost, src, 6) == 0) {
541                         break;
542                 } else if (status == 1) {
543                         goto out;
544                 } else {
545                         if ((time_monotonic() - beg) >= 60) {
546                                 printf("\nNo response after 60 seconds. Bailing out.\n");
547                                 goto out;
548                         }
549 #ifdef NMRPFLASH_FUZZ
550                         goto out;
551 #endif
552                 }
553         }
554
555         printf("\n");
556
557         expect = NMRP_C_CONF_REQ;
558         ulreqs = 0;
559
560         while (!g_interrupted) {
561                 if (expect != NMRP_C_NONE && rx.msg.code != expect) {
562                         fprintf(stderr, "Received %s while waiting for %s!\n",
563                                         msg_code_str(rx.msg.code), msg_code_str(expect));
564                 }
565
566                 msg_init(&tx.msg, NMRP_C_NONE);
567
568                 status = 1;
569
570                 switch (rx.msg.code) {
571                         case NMRP_C_ADVERTISE:
572                                 printf("Received NMRP advertisement from %s.\n",
573                                                 mac_to_str(rx.eh.ether_shost));
574                                 status = 1;
575                                 goto out;
576                         case NMRP_C_CONF_REQ:
577                                 tx.msg.code = NMRP_C_CONF_ACK;
578
579                                 msg_opt_add(&tx.msg, NMRP_O_DEV_IP, &ipconf, 8);
580                                 msg_opt_add(&tx.msg, NMRP_O_FW_UP, NULL, 0);
581
582 #ifdef NMRPFLASH_SET_REGION
583                                 if (region) {
584                                         msg_opt_add(&tx.msg, NMRP_O_DEV_REGION, &region, 2);
585                                 }
586 #endif
587
588                                 expect = NMRP_C_TFTP_UL_REQ;
589
590                                 printf("Received configuration request from %s.\n",
591                                                 mac_to_str(rx.eh.ether_shost));
592
593                                 memcpy(tx.eh.ether_dhost, rx.eh.ether_shost, 6);
594
595                                 printf("Sending configuration: %s, netmask %s.\n",
596                                                 args->ipaddr, args->ipmask);
597
598                                 if (ethsock_arp_add(sock, rx.eh.ether_shost, ipconf.addr.s_addr, &arp_undo) != 0) {
599                                         goto out;
600                                 }
601
602                                 break;
603                         case NMRP_C_TFTP_UL_REQ:
604                                 if (!upload_ok) {
605                                         if (++ulreqs > 5) {
606                                                 printf("Bailing out after %d upload requests.\n",
607                                                                 ulreqs);
608                                                 tx.msg.code = NMRP_C_CLOSE_REQ;
609                                                 break;
610                                         }
611                                 } else {
612                                         if (verbosity) {
613                                                 printf("Ignoring extra upload request.\n");
614                                         }
615                                         ethsock_set_timeout(sock, args->ul_timeout);
616                                         tx.msg.code = NMRP_C_KEEP_ALIVE_REQ;
617                                         break;
618                                 }
619
620                                 len = 0;
621                                 filename = msg_opt_data(&rx.msg, NMRP_O_FILE_NAME, &len);
622                                 if (filename) {
623                                         if (!args->file_remote) {
624                                                 args->file_remote = filename;
625                                         }
626                                         printf("Received upload request: filename '%.*s'.\n",
627                                                         len, filename);
628                                 } else if (!args->file_remote) {
629                                         args->file_remote = args->file_local;
630                                         printf("Received upload request with empty filename.\n");
631                                 }
632
633                                 status = 0;
634
635                                 if (args->tftpcmd) {
636                                         printf("Executing '%s' ... \n", args->tftpcmd);
637                                         setenv("IP", inet_ntoa(ipconf.addr), 1);
638                                         setenv("PORT", lltostr(args->port, 10), 1);
639                                         setenv("MAC", mac_to_str(rx.eh.ether_shost), 1);
640                                         setenv("NETMASK", inet_ntoa(ipconf.mask), 1);
641                                         //setenv("FILENAME", args->file_remote ? args->file_remote : "", 1);
642                                         status = system(args->tftpcmd);
643                                 }
644
645                                 if (!status && args->file_local) {
646                                         if (!autoip) {
647                                                 status = is_valid_ip(sock, &ipconf.addr, &ipconf.mask);
648                                                 if (status < 0) {
649                                                         goto out;
650                                                 } else if (!status) {
651                                                         printf("IP address of %s has changed. Please assign a "
652                                                                         "static ip to the interface.\n", args->intf);
653                                                         tx.msg.code = NMRP_C_CLOSE_REQ;
654                                                         break;
655                                                 }
656                                         }
657
658                                         if (verbosity) {
659                                                 printf("Using remote filename '%s'.\n",
660                                                                 args->file_remote);
661                                         }
662
663                                         if (!strcmp(args->file_local, "-")) {
664                                                 printf("Uploading from stdin ... ");
665                                         } else {
666                                                 printf("Uploading %s ... ", leafname(args->file_local));
667                                         }
668                                         fflush(stdout);
669                                         status = tftp_put(args);
670                                 }
671
672                                 if (!status) {
673                                         printf("OK\nWaiting for remote to respond.\n");
674                                         upload_ok = 1;
675                                         ethsock_set_timeout(sock, args->ul_timeout);
676                                         tx.msg.code = NMRP_C_KEEP_ALIVE_REQ;
677                                         expect = NMRP_C_NONE;
678                                 } else if (status == -2) {
679                                         expect = NMRP_C_TFTP_UL_REQ;
680                                 } else {
681                                         goto out;
682                                 }
683
684                                 break;
685                         case NMRP_C_KEEP_ALIVE_REQ:
686                                 tx.msg.code = NMRP_C_KEEP_ALIVE_ACK;
687                                 ethsock_set_timeout(sock, args->ul_timeout);
688                                 printf("Received keep-alive request.\n");
689                                 break;
690                         case NMRP_C_CLOSE_REQ:
691                                 tx.msg.code = NMRP_C_CLOSE_ACK;
692                                 break;
693                         case NMRP_C_CLOSE_ACK:
694                                 status = 0;
695                                 goto out;
696                         default:
697                                 fprintf(stderr, "Unknown message code 0x%02x!\n",
698                                                 rx.msg.code);
699                                 msg_dump(&rx.msg);
700                 }
701
702                 if (tx.msg.code != NMRP_C_NONE) {
703                         msg_hton(&tx.msg);
704
705                         if (pkt_send(sock, &tx) < 0) {
706                                 xperror("sendto");
707                                 goto out;
708                         }
709
710                         if (tx.msg.code == NMRP_C_CLOSE_REQ) {
711                                 goto out;
712                         }
713                 }
714
715                 if (rx.msg.code == NMRP_C_CLOSE_REQ) {
716                         printf("Remote finished. Closing connection.\n");
717                         break;
718                 }
719
720                 status = pkt_recv(sock, &rx);
721                 if (status) {
722                         if (status == 2) {
723                                 fprintf(stderr, "Timeout while waiting for %s.\n",
724                                                 msg_code_str(expect));
725                         }
726                         goto out;
727                 }
728
729                 ethsock_set_timeout(sock, args->rx_timeout);
730
731         }
732
733         if (!g_interrupted) {
734                 status = 0;
735                 if (ulreqs) {
736                         printf("Reboot your device now.\n");
737                 } else {
738                         printf("No upload request received.\n");
739                 }
740         }
741
742 out:
743         signal(SIGINT, sigh_orig);
744         ethsock_arp_del(sock, &arp_undo);
745         ethsock_ip_del(sock, &ip_undo);
746         ethsock_close(sock);
747         return status;
748 }