Gracefully close the socket
[oweals/nmrpflash.git] / main.c
1 /**
2  * nmrp-flash - Netgear Unbrick Utility
3  * Copyright (C) 2016 Joseph Lehner <joseph.c.lehner@gmail.com>
4  *
5  * nmrp-flash 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  * nmrp-flash 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 nmrp-flash.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19
20 #include <getopt.h>
21 #include <stdlib.h>
22 #include <stdio.h>
23 #include "nmrpd.h"
24 #include "ethsock.h"
25
26 int verbosity = 0;
27
28 void usage(FILE *fp)
29 {
30         fprintf(fp,
31                         "Usage: nmrp-flash [OPTIONS...]\n"
32                         "\n"
33                         "Options (-a, -i and -f are mandatory):\n"
34                         " -a <ipaddr>     IP address to assign to target device\n"
35                         " -f <firmware>   Firmware file\n"
36                         " -i <interface>  Network interface directly connected to device\n"
37                         " -m <mac>        MAC address of target device (xx:xx:xx:xx:xx:xx)\n"
38                         " -M <netmask>    Subnet mask to assign to target device\n"
39                         " -t <timeout>    Timeout (in milliseconds) for regular messages\n"
40                         " -T <timeout>    Time to wait after successfull TFTP upload\n"
41                         " -p <port>       Port to use for TFTP upload\n"
42                         " -v              Be verbose\n"
43                         " -V              Print version and exit\n"
44                         " -L              List network interfaces\n"
45                         " -h              Show this screen\n"
46                         "\n"
47                         "Example:\n"
48                         "\n"
49 #ifndef NMRPFLASH_WINDOWS
50                         "$ sudo nmrp-flash -i eth0 -a 192.168.1.254 -f firmware.bin\n"
51 #else
52                         "C:\\> nmrp-flash.exe -i net0 -a 192.168.1.254 -f firmware.bin\n"
53 #endif
54                         "\n"
55                         "nmrp-flash v%s, Copyright (C) 2016 Joseph C. Lehner\n"
56                         "nmrp-flash is free software, licensed under the GNU GPLv3.\n"
57                         "Source code at https://github.com/jclehner/nmrp-flash\n"
58                         "\n",
59                         NMRPD_VERSION
60           );
61 }
62
63 int main(int argc, char **argv)
64 {
65         int c, val, max;
66         struct nmrpd_args args = {
67                 .rx_timeout = 200,
68                 .ul_timeout = 60000,
69                 .tftpcmd = NULL,
70                 .filename = NULL,
71                 .ipaddr = NULL,
72                 .ipmask = "255.255.255.0",
73                 .intf = NULL,
74                 .mac = "ff:ff:ff:ff:ff:ff",
75                 .op = NMRP_UPLOAD_FW,
76                 .port = 69,
77                 .force_root = 1
78         };
79
80         opterr = 0;
81
82         while ((c = getopt(argc, argv, "a:f:i:m:M:p:t:T:hLVv")) != -1) {
83                 max = 0x7fffffff;
84                 switch (c) {
85                         case 'a':
86                                 args.ipaddr = optarg;
87                                 break;
88                         case 'f':
89                                 args.filename = optarg;
90                                 break;
91                         case 'i':
92                                 args.intf = optarg;
93                                 break;
94                         case 'm':
95                                 args.mac = optarg;
96                                 break;
97                         case 'M':
98                                 args.ipmask = optarg;
99                                 break;
100                         case 'p':
101                                 max = 0xffff;
102                         case 'T':
103                         case 't':
104                                 val = atoi(optarg);
105                                 if (val <= 0 || val > max) {
106                                         fprintf(stderr, "Invalid numeric value for -%c.\n", c);
107                                         return 1;
108                                 }
109
110                                 if (c == 'p') {
111                                         args.port = val;
112                                 } else if (c == 't') {
113                                         args.rx_timeout = val;
114                                 } else {
115                                         args.ul_timeout = val;
116                                 }
117
118                                 break;
119                         case 'V':
120                                 printf("nmrp-flash v%s\n", NMRPD_VERSION);
121                                 return 0;
122                         case 'v':
123                                 ++verbosity;
124                                 break;
125                         case 'L':
126                                 return ethsock_list_all();
127                         case 'h':
128                                 usage(stdout);
129                                 return 0;
130                         default:
131                                 usage(stderr);
132                                 return 1;
133                 }
134         }
135
136         if (!args.filename || !args.intf || !args.ipaddr) {
137                 usage(stderr);
138                 return 1;
139         }
140
141 #ifndef NMRPFLASH_WINDOWS
142         if (geteuid() != 0) {
143                 fprintf(stderr, "This program must be run as root!\n");
144                 return 1;
145         }
146 #endif
147
148         return nmrp_do(&args);
149 }