Bump version
[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 struct ethsock *gsock = NULL;
389 static struct ethsock_ip_undo *g_ip_undo = NULL;
390 static struct ethsock_arp_undo *g_arp_undo = NULL;
391
392 static void sigh(int sig)
393 {
394         printf("\n");
395         if (gsock) {
396                 ethsock_arp_del(gsock, &g_arp_undo);
397                 ethsock_ip_del(gsock, &g_ip_undo);
398                 ethsock_close(gsock);
399                 gsock = NULL;
400         }
401
402         exit(1);
403 }
404
405 static const char *spinner = "\\|/-";
406
407 int nmrp_do(struct nmrpd_args *args)
408 {
409         struct nmrp_pkt tx, rx;
410         uint8_t *src, dest[6];
411         uint16_t len, region;
412         char *filename;
413         time_t beg;
414         int i, status, ulreqs, expect, upload_ok, autoip;
415         struct ethsock *sock;
416         uint32_t intf_addr;
417         void (*sigh_orig)(int);
418         struct {
419                 struct in_addr addr;
420                 struct in_addr mask;
421         } PACKED ipconf;
422
423         if (args->op != NMRP_UPLOAD_FW) {
424                 fprintf(stderr, "Operation not implemented.\n");
425                 return 1;
426         }
427
428         if (!mac_parse(args->mac, dest)) {
429                 fprintf(stderr, "Invalid MAC address '%s'.\n", args->mac);
430                 return 1;
431         }
432
433         ipconf.mask.s_addr = inet_addr(args->ipmask);
434         if (ipconf.mask.s_addr == INADDR_NONE
435                         || netmask(bitcount(ipconf.mask.s_addr)) != ipconf.mask.s_addr) {
436                 fprintf(stderr, "Invalid subnet mask '%s'.\n", args->ipmask);
437                 return 1;
438         }
439
440         if (!args->ipaddr) {
441                 autoip = true;
442                 /* The MAC of the device that was used to test this utility starts
443                  * with a4:2b:8c, hence 164 (0xa4) and 183 (0x2b + 0x8c)
444                  */
445                 args->ipaddr = "10.164.183.252";
446
447                 if (!args->ipaddr_intf) {
448                         args->ipaddr_intf = "10.164.183.253";
449                 }
450         } else if (args->ipaddr_intf) {
451                 autoip = true;
452         } else {
453                 autoip = false;
454         }
455
456         if ((ipconf.addr.s_addr = inet_addr(args->ipaddr)) == INADDR_NONE) {
457                 fprintf(stderr, "Invalid IP address '%s'.\n", args->ipaddr);
458                 return 1;
459         }
460
461         if (args->ipaddr_intf && (intf_addr = inet_addr(args->ipaddr_intf)) == INADDR_NONE) {
462                 fprintf(stderr, "Invalid IP address '%s'.\n", args->ipaddr_intf);
463                 return 1;
464         }
465
466         if (args->file_local && strcmp(args->file_local, "-") && access(args->file_local, R_OK) == -1) {
467                 fprintf(stderr, "Error accessing file '%s'.\n", args->file_local);
468                 return 1;
469         }
470
471         if (args->file_remote) {
472                 if (!tftp_is_valid_filename(args->file_remote)) {
473                         fprintf(stderr, "Invalid remote filename '%s'.\n",
474                                         args->file_remote);
475                         return 1;
476                 }
477         }
478
479         if (args->region) {
480                 region = htons(to_region_code(args->region));
481                 if (!region) {
482                         fprintf(stderr, "Invalid region code '%s'.\n", args->region);
483                         return 1;
484                 }
485         } else {
486                 region = 0;
487         }
488
489         status = 1;
490
491         sock = ethsock_create(args->intf, ETH_P_NMRP);
492         if (!sock) {
493                 return 1;
494         }
495
496         gsock = sock;
497         sigh_orig = signal(SIGINT, sigh);
498
499         if (!autoip) {
500                 status = is_valid_ip(sock, &ipconf.addr, &ipconf.mask);
501                 if (status <= 0) {
502                         if (!status) {
503                                 fprintf(stderr, "Address %s/%s cannot be used on interface %s.\n",
504                                                 args->ipaddr, args->ipmask, args->intf);
505                         }
506                         goto out;
507                 }
508         } else {
509                 if (verbosity) {
510                         printf("Adding %s to interface %s.\n", args->ipaddr_intf, args->intf);
511                 }
512
513                 if (ethsock_ip_add(sock, intf_addr, ipconf.mask.s_addr, &g_ip_undo) != 0) {
514                         goto out;
515                 }
516         }
517
518         if (ethsock_set_timeout(sock, args->rx_timeout)) {
519                 goto out;
520         }
521
522         src = ethsock_get_hwaddr(sock);
523         if (!src) {
524                 goto out;
525         }
526
527         memcpy(tx.eh.ether_shost, src, 6);
528         memcpy(tx.eh.ether_dhost, dest, 6);
529         tx.eh.ether_type = htons(ETH_P_NMRP);
530
531         msg_init(&tx.msg, NMRP_C_ADVERTISE);
532         msg_opt_add(&tx.msg, NMRP_O_MAGIC_NO, "NTGR", 4);
533         msg_hton(&tx.msg);
534
535         i = 0;
536         upload_ok = 0;
537         beg = time_monotonic();
538
539         while (1) {
540                 printf("\rAdvertising NMRP server on %s ... %c",
541                                 args->intf, spinner[i]);
542                 fflush(stdout);
543                 i = (i + 1) & 3;
544
545                 if (pkt_send(sock, &tx) < 0) {
546                         perror("sendto");
547                         goto out;
548                 }
549
550                 status = pkt_recv(sock, &rx);
551                 if (status == 0 && memcmp(rx.eh.ether_dhost, src, 6) == 0) {
552                         break;
553                 } else if (status == 1) {
554                         goto out;
555                 } else {
556                         if ((time_monotonic() - beg) >= 60) {
557                                 printf("\nNo response after 60 seconds. Bailing out.\n");
558                                 goto out;
559                         }
560 #ifdef NMRPFLASH_FUZZ
561                         goto out;
562 #endif
563                 }
564         }
565
566         printf("\n");
567
568         expect = NMRP_C_CONF_REQ;
569         ulreqs = 0;
570
571         do {
572                 if (expect != NMRP_C_NONE && rx.msg.code != expect) {
573                         fprintf(stderr, "Received %s while waiting for %s!\n",
574                                         msg_code_str(rx.msg.code), msg_code_str(expect));
575                 }
576
577                 msg_init(&tx.msg, NMRP_C_NONE);
578
579                 status = 1;
580
581                 switch (rx.msg.code) {
582                         case NMRP_C_ADVERTISE:
583                                 printf("Received NMRP advertisement from %s.\n",
584                                                 mac_to_str(rx.eh.ether_shost));
585                                 status = 1;
586                                 goto out;
587                         case NMRP_C_CONF_REQ:
588                                 tx.msg.code = NMRP_C_CONF_ACK;
589
590                                 msg_opt_add(&tx.msg, NMRP_O_DEV_IP, &ipconf, 8);
591                                 msg_opt_add(&tx.msg, NMRP_O_FW_UP, NULL, 0);
592
593 #ifdef NMRPFLASH_SET_REGION
594                                 if (region) {
595                                         msg_opt_add(&tx.msg, NMRP_O_DEV_REGION, &region, 2);
596                                 }
597 #endif
598
599                                 expect = NMRP_C_TFTP_UL_REQ;
600
601                                 printf("Received configuration request from %s.\n",
602                                                 mac_to_str(rx.eh.ether_shost));
603
604                                 memcpy(tx.eh.ether_dhost, rx.eh.ether_shost, 6);
605
606                                 printf("Sending configuration: %s, netmask %s.\n",
607                                                 args->ipaddr, args->ipmask);
608
609                                 if (ethsock_arp_add(sock, rx.eh.ether_shost, ipconf.addr.s_addr, &g_arp_undo) != 0) {
610                                         goto out;
611                                 }
612
613                                 break;
614                         case NMRP_C_TFTP_UL_REQ:
615                                 if (!upload_ok) {
616                                         if (++ulreqs > 5) {
617                                                 printf("Bailing out after %d upload requests.\n",
618                                                                 ulreqs);
619                                                 tx.msg.code = NMRP_C_CLOSE_REQ;
620                                                 break;
621                                         }
622                                 } else {
623                                         if (verbosity) {
624                                                 printf("Ignoring extra upload request.\n");
625                                         }
626                                         ethsock_set_timeout(sock, args->ul_timeout);
627                                         tx.msg.code = NMRP_C_KEEP_ALIVE_REQ;
628                                         break;
629                                 }
630
631                                 len = 0;
632                                 filename = msg_opt_data(&rx.msg, NMRP_O_FILE_NAME, &len);
633                                 if (filename) {
634                                         if (!args->file_remote) {
635                                                 args->file_remote = filename;
636                                         }
637                                         printf("Received upload request: filename '%.*s'.\n",
638                                                         len, filename);
639                                 } else if (!args->file_remote) {
640                                         args->file_remote = args->file_local;
641                                         printf("Received upload request with empty filename.\n");
642                                 }
643
644                                 status = 0;
645
646                                 if (args->tftpcmd) {
647                                         printf("Executing '%s' ... \n", args->tftpcmd);
648                                         setenv("IP", inet_ntoa(ipconf.addr), 1);
649                                         setenv("PORT", lltostr(args->port, 10), 1);
650                                         setenv("MAC", mac_to_str(rx.eh.ether_shost), 1);
651                                         setenv("NETMASK", inet_ntoa(ipconf.mask), 1);
652                                         //setenv("FILENAME", args->file_remote ? args->file_remote : "", 1);
653                                         status = system(args->tftpcmd);
654                                 }
655
656                                 if (!status && args->file_local) {
657                                         if (!autoip) {
658                                                 status = is_valid_ip(sock, &ipconf.addr, &ipconf.mask);
659                                                 if (status < 0) {
660                                                         goto out;
661                                                 } else if (!status) {
662                                                         printf("IP address of %s has changed. Please assign a "
663                                                                         "static ip to the interface.\n", args->intf);
664                                                         tx.msg.code = NMRP_C_CLOSE_REQ;
665                                                         break;
666                                                 }
667                                         }
668
669                                         if (verbosity) {
670                                                 printf("Using remote filename '%s'.\n",
671                                                                 args->file_remote);
672                                         }
673
674                                         if (!strcmp(args->file_local, "-")) {
675                                                 printf("Uploading from stdin ... ");
676                                         } else {
677                                                 printf("Uploading %s ... ", leafname(args->file_local));
678                                         }
679                                         fflush(stdout);
680                                         status = tftp_put(args);
681                                 }
682
683                                 if (!status) {
684                                         printf("OK\nWaiting for remote to respond.\n");
685                                         upload_ok = 1;
686                                         ethsock_set_timeout(sock, args->ul_timeout);
687                                         tx.msg.code = NMRP_C_KEEP_ALIVE_REQ;
688                                         expect = NMRP_C_NONE;
689                                 } else if (status == -2) {
690                                         expect = NMRP_C_TFTP_UL_REQ;
691                                 } else {
692                                         goto out;
693                                 }
694
695                                 break;
696                         case NMRP_C_KEEP_ALIVE_REQ:
697                                 tx.msg.code = NMRP_C_KEEP_ALIVE_ACK;
698                                 ethsock_set_timeout(sock, args->ul_timeout);
699                                 printf("Received keep-alive request.\n");
700                                 break;
701                         case NMRP_C_CLOSE_REQ:
702                                 tx.msg.code = NMRP_C_CLOSE_ACK;
703                                 break;
704                         case NMRP_C_CLOSE_ACK:
705                                 status = 0;
706                                 goto out;
707                         default:
708                                 fprintf(stderr, "Unknown message code 0x%02x!\n",
709                                                 rx.msg.code);
710                                 msg_dump(&rx.msg);
711                 }
712
713                 if (tx.msg.code != NMRP_C_NONE) {
714                         msg_hton(&tx.msg);
715
716                         if (pkt_send(sock, &tx) < 0) {
717                                 perror("sendto");
718                                 goto out;
719                         }
720
721                         if (tx.msg.code == NMRP_C_CLOSE_REQ) {
722                                 goto out;
723                         }
724                 }
725
726                 if (rx.msg.code == NMRP_C_CLOSE_REQ) {
727                         printf("Remote finished. Closing connection.\n");
728                         break;
729                 }
730
731                 status = pkt_recv(sock, &rx);
732                 if (status) {
733                         if (status == 2) {
734                                 fprintf(stderr, "Timeout while waiting for %s.\n",
735                                                 msg_code_str(expect));
736                         }
737                         goto out;
738                 }
739
740                 ethsock_set_timeout(sock, args->rx_timeout);
741
742         } while (1);
743
744         status = 0;
745
746         if (ulreqs) {
747                 printf("Reboot your device now.\n");
748         } else {
749                 printf("No upload request received.\n");
750         }
751
752 out:
753         signal(SIGINT, sigh_orig);
754         gsock = NULL;
755         ethsock_arp_del(sock, &g_arp_undo);
756         ethsock_ip_del(sock, &g_ip_undo);
757         ethsock_close(sock);
758         return status;
759 }