Ensure that NMRP packets are at least 64 bytes
[oweals/nmrpflash.git] / nmrpd.h
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 #ifndef NMRPD_H
21 #define NMRPD_H
22 #include <stdint.h>
23 #include <signal.h>
24 #include <stdbool.h>
25
26 #if defined(_WIN32) || defined(_WIN64)
27 #       define NMRPFLASH_WINDOWS
28 #elif defined(__APPLE__) && defined(__MACH__)
29 #       define NMRPFLASH_OSX
30 #       define NMRPFLASH_BSD
31 #elif defined (__unix__)
32 #       define NMRPFLASH_UNIX
33 #       if defined(__linux__)
34 #               define NMRPFLASH_LINUX
35 #       elif defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__)
36 #                       define NMRPFLASH_BSD
37 #       else
38 #               warning "nmrpflash is not fully supported on this platform"
39 #       endif
40 #else
41 #       warning "nmrpflash is not supported on this platform"
42 #endif
43
44 #ifndef NMRPFLASH_WINDOWS
45 #include <arpa/inet.h>
46 #include <sys/types.h>
47 #include <sys/socket.h>
48 #include <netinet/in.h>
49 #include <net/if.h>
50 #ifndef NMRPFLASH_LINUX
51 #include <net/if_dl.h>
52 #endif
53 #else
54 #include <winsock2.h>
55 #include <iphlpapi.h>
56 #include <ws2tcpip.h>
57 #include <windows.h>
58 #endif
59
60 #ifndef MIN
61 #define MIN(a, b) ((a) < (b) ? (a) : (b))
62 #endif
63
64 #ifndef PACKED
65 #define PACKED __attribute__((packed))
66 #endif
67
68 struct eth_hdr {
69         uint8_t ether_dhost[6];
70         uint8_t ether_shost[6];
71         uint16_t ether_type;
72 } PACKED;
73
74 enum nmrp_op {
75         NMRP_UPLOAD_FW = 0,
76         NMRP_UPLOAD_ST = 1,
77         NMRP_SET_REGION = 2,
78 };
79
80 struct nmrpd_args {
81         unsigned rx_timeout;
82         unsigned ul_timeout;
83         const char *tftpcmd;
84         const char *file_local;
85         const char *file_remote;
86         const char *ipaddr_intf;
87         const char *ipaddr;
88         const char *ipmask;
89         const char *intf;
90         const char *mac;
91         enum nmrp_op op;
92         uint16_t port;
93         const char *region;
94 };
95
96 const char *leafname(const char *path);
97 int tftp_put(struct nmrpd_args *args);
98 bool tftp_is_valid_filename(const char *filename);
99
100 int nmrp_do(struct nmrpd_args *args);
101
102 int select_fd(int fd, unsigned timeout);
103 const char *mac_to_str(uint8_t *mac);
104
105 #ifdef NMRPFLASH_WINDOWS
106 void win_perror2(const char *msg, DWORD err);
107 void sock_perror(const char *msg);
108 #else
109 #define sock_perror(x) xperror(x)
110 #endif
111
112 extern int verbosity;
113
114 struct ethsock;
115 struct ethsock_arp_undo;
116 struct ethsock_ip_undo;
117
118 struct ethsock *ethsock_create(const char *intf, uint16_t protocol);
119 int ethsock_close(struct ethsock *sock);
120 int ethsock_send(struct ethsock *sock, void *buf, size_t len);
121 ssize_t ethsock_recv(struct ethsock *sock, void *buf, size_t len);
122 int ethsock_set_timeout(struct ethsock *sock, unsigned msec);
123 uint8_t *ethsock_get_hwaddr(struct ethsock *sock);
124 int ethsock_arp_add(struct ethsock *sock, uint8_t *hwaddr, uint32_t ipaddr, struct ethsock_arp_undo **undo);
125 int ethsock_arp_del(struct ethsock *sock, struct ethsock_arp_undo **undo);
126 int ethsock_list_all(void);
127
128 struct ethsock_ip_callback_args
129 {
130         struct in_addr *ipaddr;
131         struct in_addr *ipmask;
132         void *arg;
133 };
134
135 typedef int (*ethsock_ip_callback_t)(struct ethsock_ip_callback_args *args);
136 int ethsock_for_each_ip(struct ethsock *sock, ethsock_ip_callback_t callback,
137                 void *arg);
138
139 int ethsock_ip_add(struct ethsock *sock, uint32_t ipaddr, uint32_t ipmask, struct ethsock_ip_undo **undo);
140 int ethsock_ip_del(struct ethsock *sock, struct ethsock_ip_undo **undo);
141
142 time_t time_monotonic();
143 char *lltostr(long long ll, int base);
144 uint32_t bitcount(uint32_t n);
145 uint32_t netmask(uint32_t count);
146 void xperror(const char *msg);
147
148 extern volatile sig_atomic_t g_interrupted;
149 #endif