common.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  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 tarball for details.
  7. */
  8. #ifndef UDHCP_COMMON_H
  9. #define UDHCP_COMMON_H 1
  10. #include "libbb.h"
  11. #include <netinet/udp.h>
  12. #include <netinet/ip.h>
  13. PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
  14. extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */
  15. /*** DHCP packet ***/
  16. /* DHCP protocol. See RFC 2131 */
  17. #define DHCP_MAGIC 0x63825363
  18. #define DHCP_OPTIONS_BUFSIZE 308
  19. #define BOOTREQUEST 1
  20. #define BOOTREPLY 2
  21. //TODO: rename ciaddr/yiaddr/chaddr
  22. struct dhcp_packet {
  23. uint8_t op; /* BOOTREQUEST or BOOTREPLY */
  24. uint8_t htype; /* hardware address type. 1 = 10mb ethernet */
  25. uint8_t hlen; /* hardware address length */
  26. uint8_t hops; /* used by relay agents only */
  27. uint32_t xid; /* unique id */
  28. uint16_t secs; /* elapsed since client began acquisition/renewal */
  29. uint16_t flags; /* only one flag so far: */
  30. #define BROADCAST_FLAG 0x8000 /* "I need broadcast replies" */
  31. uint32_t ciaddr; /* client IP (if client is in BOUND, RENEW or REBINDING state) */
  32. uint32_t yiaddr; /* 'your' (client) IP address */
  33. /* IP address of next server to use in bootstrap, returned in DHCPOFFER, DHCPACK by server */
  34. uint32_t siaddr_nip;
  35. uint32_t gateway_nip; /* relay agent IP address */
  36. uint8_t chaddr[16]; /* link-layer client hardware address (MAC) */
  37. uint8_t sname[64]; /* server host name (ASCIZ) */
  38. uint8_t file[128]; /* boot file name (ASCIZ) */
  39. uint32_t cookie; /* fixed first four option bytes (99,130,83,99 dec) */
  40. uint8_t options[DHCP_OPTIONS_BUFSIZE + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS];
  41. } PACKED;
  42. #define DHCP_PKT_SNAME_LEN 64
  43. #define DHCP_PKT_FILE_LEN 128
  44. #define DHCP_PKT_SNAME_LEN_STR "64"
  45. #define DHCP_PKT_FILE_LEN_STR "128"
  46. struct ip_udp_dhcp_packet {
  47. struct iphdr ip;
  48. struct udphdr udp;
  49. struct dhcp_packet data;
  50. } PACKED;
  51. /* Let's see whether compiler understood us right */
  52. struct BUG_bad_sizeof_struct_ip_udp_dhcp_packet {
  53. char BUG_bad_sizeof_struct_ip_udp_dhcp_packet
  54. [(sizeof(struct ip_udp_dhcp_packet) != 576 + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS) ? -1 : 1];
  55. };
  56. /*** Options ***/
  57. enum {
  58. OPTION_IP = 1,
  59. OPTION_IP_PAIR,
  60. OPTION_STRING,
  61. // OPTION_BOOLEAN,
  62. OPTION_U8,
  63. OPTION_U16,
  64. // OPTION_S16,
  65. OPTION_U32,
  66. OPTION_S32,
  67. OPTION_BIN,
  68. OPTION_STATIC_ROUTES,
  69. #if ENABLE_FEATURE_UDHCP_RFC3397
  70. OPTION_DNS_STRING, /* RFC1035 compressed domain name list */
  71. OPTION_SIP_SERVERS,
  72. #endif
  73. OPTION_TYPE_MASK = 0x0f,
  74. /* Client requests this option by default */
  75. OPTION_REQ = 0x10,
  76. /* There can be a list of 1 or more of these */
  77. OPTION_LIST = 0x20,
  78. };
  79. /* DHCP option codes (partial list). See RFC 2132 and
  80. * http://www.iana.org/assignments/bootp-dhcp-parameters/
  81. * Commented out options are handled by common option machinery,
  82. * uncommented ones have spacial cases (grep for them to see).
  83. */
  84. #define DHCP_PADDING 0x00
  85. #define DHCP_SUBNET 0x01
  86. //#define DHCP_TIME_OFFSET 0x02 /* (localtime - UTC_time) in seconds. signed */
  87. //#define DHCP_ROUTER 0x03
  88. //#define DHCP_TIME_SERVER 0x04 /* RFC 868 time server (32-bit, 0 = 1.1.1900) */
  89. //#define DHCP_NAME_SERVER 0x05 /* IEN 116 _really_ ancient kind of NS */
  90. //#define DHCP_DNS_SERVER 0x06
  91. //#define DHCP_LOG_SERVER 0x07 /* port 704 UDP log (not syslog)
  92. //#define DHCP_COOKIE_SERVER 0x08 /* "quote of the day" server */
  93. //#define DHCP_LPR_SERVER 0x09
  94. #define DHCP_HOST_NAME 0x0c /* either client informs server or server gives name to client */
  95. //#define DHCP_BOOT_SIZE 0x0d
  96. //#define DHCP_DOMAIN_NAME 0x0f /* server gives domain suffix */
  97. //#define DHCP_SWAP_SERVER 0x10
  98. //#define DHCP_ROOT_PATH 0x11
  99. //#define DHCP_IP_TTL 0x17
  100. //#define DHCP_MTU 0x1a
  101. //#define DHCP_BROADCAST 0x1c
  102. //#define DHCP_NIS_DOMAIN 0x28
  103. //#define DHCP_NIS_SERVER 0x29
  104. //#define DHCP_NTP_SERVER 0x2a
  105. //#define DHCP_WINS_SERVER 0x2c
  106. #define DHCP_REQUESTED_IP 0x32 /* sent by client if specific IP is wanted */
  107. #define DHCP_LEASE_TIME 0x33
  108. #define DHCP_OPTION_OVERLOAD 0x34
  109. #define DHCP_MESSAGE_TYPE 0x35
  110. #define DHCP_SERVER_ID 0x36 /* by default server's IP */
  111. #define DHCP_PARAM_REQ 0x37 /* list of options client wants */
  112. //#define DHCP_ERR_MESSAGE 0x38 /* error message when sending NAK etc */
  113. #define DHCP_MAX_SIZE 0x39
  114. #define DHCP_VENDOR 0x3c /* client's vendor (a string) */
  115. #define DHCP_CLIENT_ID 0x3d /* by default client's MAC addr, but may be arbitrarily long */
  116. //#define DHCP_TFTP_SERVER_NAME 0x42 /* same as 'sname' field */
  117. //#define DHCP_BOOT_FILE 0x43 /* same as 'file' field */
  118. //#define DHCP_USER_CLASS 0x4d /* RFC 3004. set of LASCII strings. "I am a printer" etc */
  119. #define DHCP_FQDN 0x51 /* client asks to update DNS to map its FQDN to its new IP */
  120. //#define DHCP_DOMAIN_SEARCH 0x77 /* RFC 3397. set of ASCIZ string, DNS-style compressed */
  121. //#define DHCP_SIP_SERVERS 0x78 /* RFC 3361. flag byte, then: 0: domain names, 1: IP addrs */
  122. //#define DHCP_STATIC_ROUTES 0x79 /* RFC 3442. (mask,ip,router) tuples */
  123. //#define DHCP_WPAD 0xfc /* MSIE's Web Proxy Autodiscovery Protocol */
  124. #define DHCP_END 0xff
  125. /* Offsets in option byte sequence */
  126. #define OPT_CODE 0
  127. #define OPT_LEN 1
  128. #define OPT_DATA 2
  129. /* Bits in "overload" option */
  130. #define OPTION_FIELD 0
  131. #define FILE_FIELD 1
  132. #define SNAME_FIELD 2
  133. /* DHCP_MESSAGE_TYPE values */
  134. #define DHCPDISCOVER 1 /* client -> server */
  135. #define DHCPOFFER 2 /* client <- server */
  136. #define DHCPREQUEST 3 /* client -> server */
  137. #define DHCPDECLINE 4 /* client -> server */
  138. #define DHCPACK 5 /* client <- server */
  139. #define DHCPNAK 6 /* client <- server */
  140. #define DHCPRELEASE 7 /* client -> server */
  141. #define DHCPINFORM 8 /* client -> server */
  142. #define DHCP_MINTYPE DHCPDISCOVER
  143. #define DHCP_MAXTYPE DHCPINFORM
  144. struct dhcp_optflag {
  145. uint8_t flags;
  146. uint8_t code;
  147. };
  148. struct option_set {
  149. uint8_t *data;
  150. struct option_set *next;
  151. };
  152. extern const struct dhcp_optflag dhcp_optflags[];
  153. extern const char dhcp_option_strings[];
  154. extern const uint8_t dhcp_option_lengths[];
  155. unsigned FAST_FUNC udhcp_option_idx(const char *name);
  156. uint8_t *udhcp_get_option(struct dhcp_packet *packet, int code) FAST_FUNC;
  157. int udhcp_end_option(uint8_t *optionptr) FAST_FUNC;
  158. void udhcp_add_binary_option(struct dhcp_packet *packet, uint8_t *addopt) FAST_FUNC;
  159. void udhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, uint32_t data) FAST_FUNC;
  160. #if ENABLE_FEATURE_UDHCP_RFC3397
  161. char *dname_dec(const uint8_t *cstr, int clen, const char *pre) FAST_FUNC;
  162. uint8_t *dname_enc(const uint8_t *cstr, int clen, const char *src, int *retlen) FAST_FUNC;
  163. #endif
  164. struct option_set *udhcp_find_option(struct option_set *opt_list, uint8_t code) FAST_FUNC;
  165. // RFC 2131 Table 5: Fields and options used by DHCP clients
  166. //
  167. // Fields 'hops', 'yiaddr', 'siaddr', 'giaddr' are always zero
  168. //
  169. // Field DHCPDISCOVER DHCPINFORM DHCPREQUEST DHCPDECLINE DHCPRELEASE
  170. // ----- ------------ ------------ ----------- ----------- -----------
  171. // 'xid' selected by client selected by client 'xid' from server selected by client selected by client
  172. // DHCPOFFER message
  173. // 'secs' 0 or seconds since 0 or seconds since 0 or seconds since 0 0
  174. // DHCP process started DHCP process started DHCP process started
  175. // 'flags' Set 'BROADCAST' Set 'BROADCAST' Set 'BROADCAST' 0 0
  176. // flag if client flag if client flag if client
  177. // requires broadcast requires broadcast requires broadcast
  178. // reply reply reply
  179. // 'ciaddr' 0 client's IP 0 or client's IP 0 client's IP
  180. // (BOUND/RENEW/REBIND)
  181. // 'chaddr' client's MAC client's MAC client's MAC client's MAC client's MAC
  182. // 'sname' options or sname options or sname options or sname (unused) (unused)
  183. // 'file' options or file options or file options or file (unused) (unused)
  184. // 'options' options options options message type opt message type opt
  185. //
  186. // Option DHCPDISCOVER DHCPINFORM DHCPREQUEST DHCPDECLINE DHCPRELEASE
  187. // ------ ------------ ---------- ----------- ----------- -----------
  188. // Requested IP address MAY MUST NOT MUST (in MUST MUST NOT
  189. // SELECTING or
  190. // INIT-REBOOT)
  191. // MUST NOT (in
  192. // BOUND or
  193. // RENEWING)
  194. // IP address lease time MAY MUST NOT MAY MUST NOT MUST NOT
  195. // Use 'file'/'sname' fields MAY MAY MAY MAY MAY
  196. // Client identifier MAY MAY MAY MAY MAY
  197. // Vendor class identifier MAY MAY MAY MUST NOT MUST NOT
  198. // Server identifier MUST NOT MUST NOT MUST (after MUST MUST
  199. // SELECTING)
  200. // MUST NOT (after
  201. // INIT-REBOOT,
  202. // BOUND, RENEWING
  203. // or REBINDING)
  204. // Parameter request list MAY MAY MAY MUST NOT MUST NOT
  205. // Maximum message size MAY MAY MAY MUST NOT MUST NOT
  206. // Message SHOULD NOT SHOULD NOT SHOULD NOT SHOULD SHOULD
  207. // Site-specific MAY MAY MAY MUST NOT MUST NOT
  208. // All others MAY MAY MAY MUST NOT MUST NOT
  209. /*** Logging ***/
  210. #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1
  211. extern unsigned dhcp_verbose;
  212. # define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0)
  213. # if CONFIG_UDHCP_DEBUG >= 2
  214. void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC;
  215. # define log2(...) do { if (dhcp_verbose >= 2) bb_info_msg(__VA_ARGS__); } while (0)
  216. # else
  217. # define udhcp_dump_packet(...) ((void)0)
  218. # define log2(...) ((void)0)
  219. # endif
  220. # if CONFIG_UDHCP_DEBUG >= 3
  221. # define log3(...) do { if (dhcp_verbose >= 3) bb_info_msg(__VA_ARGS__); } while (0)
  222. # else
  223. # define log3(...) ((void)0)
  224. # endif
  225. #else
  226. # define udhcp_dump_packet(...) ((void)0)
  227. # define log1(...) ((void)0)
  228. # define log2(...) ((void)0)
  229. # define log3(...) ((void)0)
  230. #endif
  231. /*** Other shared functions ***/
  232. /* 2nd param is "uint32_t*" */
  233. int FAST_FUNC udhcp_str2nip(const char *str, void *arg);
  234. /* 2nd param is "struct option_set**" */
  235. int FAST_FUNC udhcp_str2optset(const char *str, void *arg);
  236. uint16_t udhcp_checksum(void *addr, int count) FAST_FUNC;
  237. void udhcp_init_header(struct dhcp_packet *packet, char type) FAST_FUNC;
  238. int udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd) FAST_FUNC;
  239. int udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt,
  240. uint32_t source_ip, int source_port,
  241. uint32_t dest_ip, int dest_port, const uint8_t *dest_arp,
  242. int ifindex) FAST_FUNC;
  243. int udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt,
  244. uint32_t source_ip, int source_port,
  245. uint32_t dest_ip, int dest_port) FAST_FUNC;
  246. void udhcp_sp_setup(void) FAST_FUNC;
  247. int udhcp_sp_fd_set(fd_set *rfds, int extra_fd) FAST_FUNC;
  248. int udhcp_sp_read(const fd_set *rfds) FAST_FUNC;
  249. int udhcp_read_interface(const char *interface, int *ifindex, uint32_t *nip, uint8_t *mac) FAST_FUNC;
  250. int udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf) FAST_FUNC;
  251. /* Returns 1 if no reply received */
  252. int arpping(uint32_t test_nip,
  253. const uint8_t *safe_mac,
  254. uint32_t from_ip,
  255. uint8_t *from_mac,
  256. const char *interface) FAST_FUNC;
  257. POP_SAVED_FUNCTION_VISIBILITY
  258. #endif