common.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Russ Dill <Russ.Dill@asu.edu> September 2001
  4. * Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
  5. *
  6. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  7. */
  8. #ifndef UDHCP_COMMON_H
  9. #define UDHCP_COMMON_H 1
  10. #include "libbb.h"
  11. #include "common_bufsiz.h"
  12. #include <netinet/udp.h>
  13. #include <netinet/ip.h>
  14. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  15. extern const uint8_t MAC_BCAST_ADDR[6] ALIGN2; /* six all-ones */
  16. /*** DHCP packet ***/
  17. #define RFC1048_MAGIC 0x63825363
  18. /* RFC 1048 still uses BOOTP's small buffer (4 byte cookie + 60 the rest) */
  19. #define RFC1048_OPTIONS_BUFSIZE 60
  20. /* DHCP protocol. See RFC 2131 */
  21. #define DHCP_OPTIONS_BUFSIZE 308
  22. #define BOOTREQUEST 1
  23. #define BOOTREPLY 2
  24. //TODO: rename ciaddr/yiaddr/chaddr
  25. struct dhcp_packet {
  26. uint8_t op; /* BOOTREQUEST or BOOTREPLY */
  27. uint8_t htype; /* hardware address type. 1 = 10mb ethernet */
  28. uint8_t hlen; /* hardware address length */
  29. uint8_t hops; /* used by relay agents only */
  30. uint32_t xid; /* unique id */
  31. uint16_t secs; /* elapsed since client began acquisition/renewal */
  32. uint16_t flags; /* only one flag so far: */
  33. #define BROADCAST_FLAG 0x8000 /* "I need broadcast replies" */
  34. uint32_t ciaddr; /* client IP (if client is in BOUND, RENEW or REBINDING state) */
  35. uint32_t yiaddr; /* 'your' (client) IP address */
  36. /* IP address of "next server" (usually meant to be an TFTP server)
  37. * to use in bootstrap, returned in DHCPOFFER, DHCPACK by server: */
  38. uint32_t siaddr_nip;
  39. /* RFC 951 (BOOTP): "place my (server) IP address in the 'siaddr' field"
  40. * (IOW: unconditionally, not just if we are also a TFTP server).
  41. * DHCP servers don't have to do this, they add SERVER_ID option
  42. * to their reply packets to let client identify lease-giving server.
  43. */
  44. uint32_t gateway_nip; /* aka 'giaddr': relay agent IP address, else 0 */
  45. uint8_t chaddr[16]; /* link-layer client hardware address (MAC) */
  46. uint8_t sname[64]; /* server host name (ASCIZ) */
  47. /* RFC 951 (BOOTP): "If the client wishes to restrict booting
  48. * to a particular server name, it may place [it] in 'sname'"
  49. */
  50. uint8_t file[128]; /* boot file name (ASCIZ) */
  51. /* RFC 951 (BOOTP): in client requests, "...can be a 'generic' name
  52. * such as 'unix' or 'gateway'; this means 'boot the named program
  53. * configured for my machine'"
  54. */
  55. /* BOOTP fields end here, BOOTP says optional uint8_t vend[64] follows. */
  56. /* RFC 1048 defined this cookie value and options 0-12 and 255. */
  57. /* DHCP extended it and required option 255 (END) to be always present. */
  58. uint32_t cookie; /* RFC 1048 magic bytes: 99,130,83,99 decimal */
  59. uint8_t options[DHCP_OPTIONS_BUFSIZE + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS];
  60. };
  61. #define DHCP_PKT_SNAME_LEN 64
  62. #define DHCP_PKT_FILE_LEN 128
  63. #define DHCP_PKT_SNAME_LEN_STR "64"
  64. #define DHCP_PKT_FILE_LEN_STR "128"
  65. struct ip_udp_dhcp_packet {
  66. struct iphdr ip;
  67. struct udphdr udp;
  68. struct dhcp_packet data;
  69. };
  70. struct udp_dhcp_packet {
  71. struct udphdr udp;
  72. struct dhcp_packet data;
  73. };
  74. enum {
  75. IP_UDP_DHCP_SIZE = sizeof(struct ip_udp_dhcp_packet) - CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS,
  76. UDP_DHCP_SIZE = sizeof(struct udp_dhcp_packet) - CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS,
  77. DHCP_SIZE = sizeof(struct dhcp_packet) - CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS,
  78. };
  79. /* Let's see whether compiler understood us right */
  80. struct BUG_bad_sizeof_struct_ip_udp_dhcp_packet {
  81. char c[IP_UDP_DHCP_SIZE == 576 ? 1 : -1];
  82. };
  83. /*** Options ***/
  84. enum {
  85. OPTION_IP = 0,
  86. OPTION_IP_PAIR,
  87. OPTION_STRING,
  88. /* Opts of STRING_HOST type will be sanitized before they are passed
  89. * to udhcpc script's environment: */
  90. OPTION_STRING_HOST,
  91. // OPTION_BOOLEAN,
  92. OPTION_U8,
  93. OPTION_U16,
  94. // OPTION_S16,
  95. OPTION_U32,
  96. OPTION_S32,
  97. OPTION_BIN,
  98. OPTION_STATIC_ROUTES,
  99. OPTION_6RD,
  100. #if ENABLE_FEATURE_UDHCP_RFC3397 || ENABLE_FEATURE_UDHCPC6_RFC3646 || ENABLE_FEATURE_UDHCPC6_RFC4704
  101. OPTION_DNS_STRING, /* RFC1035 compressed domain name list */
  102. #endif
  103. #if ENABLE_FEATURE_UDHCP_RFC3397
  104. OPTION_SIP_SERVERS,
  105. #endif
  106. OPTION_TYPE_MASK = 0x0f,
  107. /* Client requests this option by default */
  108. OPTION_REQ = 0x10,
  109. /* There can be a list of 1 or more of these */
  110. OPTION_LIST = 0x20,
  111. };
  112. struct dhcp_scan_state {
  113. int overload;
  114. int rem;
  115. uint8_t *optionptr;
  116. };
  117. /* DHCP option codes (partial list). See RFC 2132 and
  118. * http://www.iana.org/assignments/bootp-dhcp-parameters/
  119. * Commented out options are handled by common option machinery,
  120. * uncommented ones have special cases (grep for them to see).
  121. */
  122. #define DHCP_PADDING 0x00
  123. #define DHCP_SUBNET 0x01
  124. //#define DHCP_TIME_OFFSET 0x02 /* (localtime - UTC_time) in seconds. signed */
  125. //#define DHCP_ROUTER 0x03
  126. //#define DHCP_TIME_SERVER 0x04 /* RFC 868 time server (32-bit, 0 = 1.1.1900) */
  127. //#define DHCP_NAME_SERVER 0x05 /* IEN 116 _really_ ancient kind of NS */
  128. //#define DHCP_DNS_SERVER 0x06
  129. //#define DHCP_LOG_SERVER 0x07 /* port 704 UDP log (not syslog) */
  130. //#define DHCP_COOKIE_SERVER 0x08 /* "quote of the day" server */
  131. //#define DHCP_LPR_SERVER 0x09
  132. #define DHCP_HOST_NAME 0x0c /* 12: either client informs server or server gives name to client */
  133. //#define DHCP_BOOT_SIZE 0x0d
  134. //#define DHCP_DOMAIN_NAME 0x0f /* 15: server gives domain suffix */
  135. //#define DHCP_SWAP_SERVER 0x10
  136. //#define DHCP_ROOT_PATH 0x11
  137. //#define DHCP_IP_TTL 0x17
  138. //#define DHCP_MTU 0x1a
  139. //#define DHCP_BROADCAST 0x1c
  140. //#define DHCP_ROUTES 0x21
  141. //#define DHCP_NIS_DOMAIN 0x28
  142. //#define DHCP_NIS_SERVER 0x29
  143. //#define DHCP_NTP_SERVER 0x2a
  144. //#define DHCP_WINS_SERVER 0x2c
  145. #define DHCP_REQUESTED_IP 0x32 /* 50: sent by client if specific IP is wanted */
  146. #define DHCP_LEASE_TIME 0x33 /* 51: 32bit big-endian */
  147. #define DHCP_OPTION_OVERLOAD 0x34 /* 52: 1 byte */
  148. #define DHCP_MESSAGE_TYPE 0x35 /* 53: 1 byte */
  149. #define DHCP_SERVER_ID 0x36 /* 54: server's IP */
  150. #define DHCP_PARAM_REQ 0x37 /* 55: list of options client wants */
  151. //#define DHCP_ERR_MESSAGE 0x38 /* 56: error message when sending NAK etc */
  152. #define DHCP_MAX_SIZE 0x39 /* 57: 16bit big-endian */
  153. // 0x3a /* 58: from server: renew time, 32bit big-endian */
  154. // 0x3b /* 59: from server: rebind time, 32bit big-endian */
  155. #define DHCP_VENDOR 0x3c /* 60: client's vendor (a string) */
  156. #define DHCP_CLIENT_ID 0x3d /* 61: by default client's MAC addr, but may be arbitrarily long */
  157. //#define DHCP_TFTP_SERVER_NAME 0x42 /* 66: same as 'sname' field */
  158. //#define DHCP_BOOT_FILE 0x43 /* 67: same as 'file' field */
  159. //#define DHCP_USER_CLASS 0x4d /* 77: RFC 3004. set of LASCII strings. "I am a printer" etc */
  160. // 0x50 /* 80: rapid commit ("I'm ok with getting immediate ACK, not just OFFER"), 0 bytes */
  161. #define DHCP_FQDN 0x51 /* 81: client asks to update DNS to map its FQDN to its new IP */
  162. //#define DHCP_PCODE 0x64 /* 100: RFC 4833. IEEE 1003.1 TZ string */
  163. //#define DHCP_TCODE 0x65 /* 101: RFC 4833. Reference to the TZ database string */
  164. //#define DHCP_DOMAIN_SEARCH 0x77 /* 119: RFC 3397. set of ASCIZ string, DNS-style compressed */
  165. //#define DHCP_SIP_SERVERS 0x78 /* 120: RFC 3361. flag byte, then: 0: domain names, 1: IP addrs */
  166. //#define DHCP_STATIC_ROUTES 0x79 /* 121: RFC 3442. (mask,ip,router) tuples */
  167. //#define DHCP_VLAN_ID 0x84 /* 132: 802.1P VLAN ID */
  168. //#define DHCP_VLAN_PRIORITY 0x85 /* 133: 802.1Q VLAN priority */
  169. //#define DHCP_PXE_CONF_FILE 0xd1 /* 209: RFC 5071 Configuration file */
  170. //#define DHCP_PXE_PATH_PREFIX 0xd2 /* 210: RFC 5071 Path prefix */
  171. //#define DHCP_REBOOT_TIME 0xd3 /* 211: RFC 5071 Reboot time */
  172. //#define DHCP_MS_STATIC_ROUTES 0xf9 /* 249: Microsoft's pre-RFC 3442 code for 0x79? */
  173. //#define DHCP_WPAD 0xfc /* 252: MSIE's Web Proxy Autodiscovery Protocol */
  174. #define DHCP_END 0xff /* 255: */
  175. /* Offsets in option byte sequence */
  176. #define OPT_CODE 0
  177. #define OPT_LEN 1
  178. #define OPT_DATA 2
  179. /* Offsets in option byte sequence for DHCPv6 */
  180. #define D6_OPT_CODE 0
  181. #define D6_OPT_LEN 2
  182. #define D6_OPT_DATA 4
  183. /* Bits in "overload" option */
  184. #define OPTION_FIELD 0
  185. #define FILE_FIELD 1
  186. #define SNAME_FIELD 2
  187. /* DHCP_MESSAGE_TYPE values */
  188. #if ENABLE_FEATURE_UDHCPD_BOOTP
  189. #define MSGTYPE_BOOTP 0 /* there was no TYPE option in client's packet, assuming BOOTP */
  190. #endif
  191. #define DHCPDISCOVER 1 /* client -> server */
  192. #define DHCPOFFER 2 /* client <- server */
  193. #define DHCPREQUEST 3 /* client -> server */
  194. #define DHCPDECLINE 4 /* client -> server */
  195. #define DHCPACK 5 /* client <- server */
  196. #define DHCPNAK 6 /* client <- server */
  197. #define DHCPRELEASE 7 /* client -> server */
  198. #define DHCPINFORM 8 /* client -> server */
  199. #define DHCP_MINTYPE DHCPDISCOVER
  200. #define DHCP_MAXTYPE DHCPINFORM
  201. struct dhcp_optflag {
  202. uint8_t flags;
  203. uint8_t code;
  204. };
  205. struct option_set {
  206. uint8_t *data;
  207. struct option_set *next;
  208. };
  209. #if ENABLE_UDHCPC || ENABLE_UDHCPD
  210. extern const struct dhcp_optflag dhcp_optflags[];
  211. extern const char dhcp_option_strings[] ALIGN1;
  212. #endif
  213. extern const uint8_t dhcp_option_lengths[] ALIGN1;
  214. unsigned FAST_FUNC udhcp_option_idx(const char *name, const char *option_strings);
  215. void init_scan_state(struct dhcp_packet *packet, struct dhcp_scan_state *scan_state) FAST_FUNC;
  216. uint8_t *udhcp_scan_options(struct dhcp_packet *packet, struct dhcp_scan_state *scan_state) FAST_FUNC;
  217. uint8_t *udhcp_get_option(struct dhcp_packet *packet, int code) FAST_FUNC;
  218. /* Same as above + ensures that option length is 4 bytes
  219. * (returns NULL if size is different)
  220. */
  221. uint8_t *udhcp_get_option32(struct dhcp_packet *packet, int code) FAST_FUNC;
  222. int udhcp_end_option(uint8_t *optionptr) FAST_FUNC;
  223. void udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt) FAST_FUNC;
  224. #if ENABLE_UDHCPC || ENABLE_UDHCPD
  225. void udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data) FAST_FUNC;
  226. #endif
  227. #if ENABLE_FEATURE_UDHCP_RFC3397 || ENABLE_FEATURE_UDHCPC6_RFC3646 || ENABLE_FEATURE_UDHCPC6_RFC4704
  228. char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC;
  229. uint8_t *dname_enc(/*const uint8_t *cstr, int clen,*/ const char *src, int *retlen) FAST_FUNC;
  230. #endif
  231. #if !ENABLE_UDHCPC6
  232. #define udhcp_find_option(opt_list, code, dhcpv6) \
  233. udhcp_find_option(opt_list, code)
  234. #endif
  235. struct option_set *udhcp_find_option(struct option_set *opt_list, uint8_t code, bool dhcpv6) FAST_FUNC;
  236. // RFC 2131 Table 5: Fields and options used by DHCP clients
  237. //
  238. // Fields 'hops', 'yiaddr', 'siaddr', 'giaddr' are always zero, 'chaddr' is always client's MAC
  239. //
  240. // Field DHCPDISCOVER DHCPINFORM DHCPREQUEST DHCPDECLINE DHCPRELEASE
  241. // ----- ------------ ------------ ----------- ----------- -----------
  242. // 'xid' selected by client selected by client 'xid' from server selected by client selected by client
  243. // DHCPOFFER message
  244. // 'secs' 0 or seconds since 0 or seconds since 0 or seconds since 0 0
  245. // DHCP process started DHCP process started DHCP process started
  246. // 'flags' Set 'BROADCAST' Set 'BROADCAST' Set 'BROADCAST' 0 0
  247. // flag if client needs flag if client needs flag if client needs
  248. // broadcast reply broadcast reply broadcast reply
  249. // 'ciaddr' 0 client's IP 0 or client's IP 0 client's IP
  250. // (BOUND/RENEW/REBIND)
  251. // 'sname' options or sname options or sname options or sname (unused) (unused)
  252. // 'file' options or file options or file options or file (unused) (unused)
  253. // 'options' options options options message type opt message type opt
  254. //
  255. // Option DHCPDISCOVER DHCPINFORM DHCPREQUEST DHCPDECLINE DHCPRELEASE
  256. // ------ ------------ ---------- ----------- ----------- -----------
  257. // Requested IP address MAY MUST NOT MUST (in SELECTING MUST MUST NOT
  258. // or INIT-REBOOT)
  259. // MUST NOT (in BOUND
  260. // or RENEWING)
  261. // IP address lease time MAY MUST NOT MAY MUST NOT MUST NOT
  262. // Use 'file'/'sname' fields MAY MAY MAY MAY MAY
  263. // Client identifier MAY MAY MAY MAY MAY
  264. // Vendor class identifier MAY MAY MAY MUST NOT MUST NOT
  265. // Server identifier MUST NOT MUST NOT MUST (after SELECTING) MUST MUST
  266. // MUST NOT (after
  267. // INIT-REBOOT, BOUND,
  268. // RENEWING or REBINDING)
  269. // Parameter request list MAY MAY MAY MUST NOT MUST NOT
  270. // Maximum message size MAY MAY MAY MUST NOT MUST NOT
  271. // Message SHOULD NOT SHOULD NOT SHOULD NOT SHOULD SHOULD
  272. // Site-specific MAY MAY MAY MUST NOT MUST NOT
  273. // All others MAY MAY MAY MUST NOT MUST NOT
  274. /*** Logging ***/
  275. #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
  276. # define IF_UDHCP_VERBOSE(...) __VA_ARGS__
  277. extern unsigned dhcp_verbose;
  278. # define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0)
  279. //# define log1s(msg) do { if (dhcp_verbose >= 1) bb_simple_info_msg(msg); } while (0)
  280. void log1s(const char *msg) FAST_FUNC;
  281. # if CONFIG_UDHCP_DEBUG >= 2
  282. void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC;
  283. # define log2(...) do { if (dhcp_verbose >= 2) bb_info_msg(__VA_ARGS__); } while (0)
  284. # define log2s(msg) do { if (dhcp_verbose >= 2) bb_simple_info_msg(msg); } while (0)
  285. # else
  286. # define udhcp_dump_packet(...) ((void)0)
  287. # define log2(...) ((void)0)
  288. # define log2s(msg) ((void)0)
  289. # endif
  290. # if CONFIG_UDHCP_DEBUG >= 3
  291. # define log3(...) do { if (dhcp_verbose >= 3) bb_info_msg(__VA_ARGS__); } while (0)
  292. # define log3s(msg) do { if (dhcp_verbose >= 3) bb_simple_info_msg(msg); } while (0)
  293. # else
  294. # define log3(...) ((void)0)
  295. # define log3s(msg) ((void)0)
  296. # endif
  297. #else
  298. # define IF_UDHCP_VERBOSE(...)
  299. # define udhcp_dump_packet(...) ((void)0)
  300. # define log1(...) ((void)0)
  301. # define log1s(msg) ((void)0)
  302. # define log2(...) ((void)0)
  303. # define log2s(msg) ((void)0)
  304. # define log3(...) ((void)0)
  305. # define log3s(msg) ((void)0)
  306. #endif
  307. /*** Other shared functions ***/
  308. /* 2nd param is "uint32_t*" */
  309. int FAST_FUNC udhcp_str2nip(const char *str, void *arg);
  310. #if !ENABLE_UDHCPC6
  311. #define udhcp_insert_new_option(opt_list, code, length, dhcpv6) \
  312. udhcp_insert_new_option(opt_list, code, length)
  313. #endif
  314. void* FAST_FUNC udhcp_insert_new_option(struct option_set **opt_list,
  315. unsigned code,
  316. unsigned length,
  317. bool dhcpv6);
  318. /* 2nd param is "struct option_set**" */
  319. #if !ENABLE_UDHCPC6
  320. #define udhcp_str2optset(str, arg, optflags, option_strings, dhcpv6) \
  321. udhcp_str2optset(str, arg, optflags, option_strings)
  322. #endif
  323. int FAST_FUNC udhcp_str2optset(const char *str,
  324. void *arg,
  325. const struct dhcp_optflag *optflags,
  326. const char *option_strings,
  327. bool dhcpv6);
  328. #if ENABLE_UDHCPC || ENABLE_UDHCPD
  329. void udhcp_init_header(struct dhcp_packet *packet, char type) FAST_FUNC;
  330. #endif
  331. int udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd) FAST_FUNC;
  332. int udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt,
  333. uint32_t source_nip, int source_port,
  334. uint32_t dest_nip, int dest_port, const uint8_t *dest_arp,
  335. int ifindex) FAST_FUNC;
  336. int udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt,
  337. uint32_t source_nip, int source_port,
  338. uint32_t dest_nip, int dest_port,
  339. const char *ifname) FAST_FUNC;
  340. void udhcp_sp_setup(void) FAST_FUNC;
  341. void udhcp_sp_fd_set(struct pollfd *pfds, int extra_fd) FAST_FUNC;
  342. int udhcp_sp_read(void) FAST_FUNC;
  343. int udhcp_read_interface(const char *interface,
  344. int *ifindex, uint32_t *nip, uint8_t *mac) FAST_FUNC;
  345. int udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf) FAST_FUNC;
  346. /* Returns 1 if no reply received */
  347. int arpping(uint32_t test_nip,
  348. const uint8_t *safe_mac,
  349. uint32_t from_ip,
  350. uint8_t *from_mac,
  351. const char *interface,
  352. unsigned timeo) FAST_FUNC;
  353. /* note: ip is a pointer to an IPv6 in network order, possibly misaliged */
  354. int sprint_nip6(char *dest, /*const char *pre,*/ const uint8_t *ip) FAST_FUNC;
  355. POP_SAVED_FUNCTION_VISIBILITY
  356. #endif