"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 2 | /* common.h |
| 3 | * |
| 4 | * Russ Dill <Russ.Dill@asu.edu> September 2001 |
| 5 | * Rewritten by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003 |
| 6 | * |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 8 | */ |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 9 | #ifndef UDHCP_COMMON_H |
| 10 | #define UDHCP_COMMON_H 1 |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 11 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 12 | #include "libbb.h" |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 13 | #include <netinet/udp.h> |
| 14 | #include <netinet/ip.h> |
| 15 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 16 | PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 17 | |
Denis Vlasenko | 35a064b | 2008-11-06 00:49:59 +0000 | [diff] [blame] | 18 | #define DEFAULT_SCRIPT CONFIG_UDHCPC_DEFAULT_SCRIPT |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 19 | |
Denis Vlasenko | fbd2918 | 2007-04-07 01:05:47 +0000 | [diff] [blame] | 20 | extern const uint8_t MAC_BCAST_ADDR[6]; /* six all-ones */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 21 | |
| 22 | /*** packet.h ***/ |
| 23 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 24 | /* DHCP protocol. See RFC 2131 */ |
| 25 | #define DHCP_MAGIC 0x63825363 |
| 26 | |
| 27 | #define DHCP_OPTIONS_BUFSIZE 308 |
| 28 | |
| 29 | #define BOOTREQUEST 1 |
| 30 | #define BOOTREPLY 2 |
Denis Vlasenko | 72e7604 | 2007-11-25 03:15:24 +0000 | [diff] [blame] | 31 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 32 | //TODO: rename ciaddr/yiaddr/chaddr |
| 33 | struct dhcp_packet { |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 34 | uint8_t op; /* BOOTREQUEST or BOOTREPLY */ |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame] | 35 | uint8_t htype; /* hardware address type. 1 = 10mb ethernet */ |
| 36 | uint8_t hlen; /* hardware address length */ |
| 37 | uint8_t hops; /* used by relay agents only */ |
| 38 | uint32_t xid; /* unique id */ |
| 39 | uint16_t secs; /* elapsed since client began acquisition/renewal */ |
| 40 | uint16_t flags; /* only one flag so far: */ |
| 41 | #define BROADCAST_FLAG 0x8000 /* "I need broadcast replies" */ |
| 42 | uint32_t ciaddr; /* client IP (if client is in BOUND, RENEW or REBINDING state) */ |
| 43 | uint32_t yiaddr; /* 'your' (client) IP address */ |
Denys Vlasenko | 56f2d06 | 2009-06-16 10:25:35 +0200 | [diff] [blame] | 44 | /* IP address of next server to use in bootstrap, returned in DHCPOFFER, DHCPACK by server */ |
| 45 | uint32_t siaddr_nip; |
Denys Vlasenko | 990a617 | 2009-06-16 10:23:55 +0200 | [diff] [blame] | 46 | uint32_t gateway_nip; /* relay agent IP address */ |
Denys Vlasenko | 56f2d06 | 2009-06-16 10:25:35 +0200 | [diff] [blame] | 47 | uint8_t chaddr[16]; /* link-layer client hardware address (MAC) */ |
| 48 | uint8_t sname[64]; /* server host name (ASCIZ) */ |
| 49 | uint8_t file[128]; /* boot file name (ASCIZ) */ |
| 50 | uint32_t cookie; /* fixed first four option bytes (99,130,83,99 dec) */ |
Denis Vlasenko | 72e7604 | 2007-11-25 03:15:24 +0000 | [diff] [blame] | 51 | uint8_t options[DHCP_OPTIONS_BUFSIZE + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS]; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 52 | } PACKED; |
Denys Vlasenko | e5ce91b | 2010-03-21 00:43:11 +0100 | [diff] [blame] | 53 | #define DHCP_PKT_SNAME_LEN 64 |
| 54 | #define DHCP_PKT_FILE_LEN 128 |
| 55 | #define DHCP_PKT_SNAME_LEN_STR "64" |
| 56 | #define DHCP_PKT_FILE_LEN_STR "128" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 57 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 58 | struct ip_udp_dhcp_packet { |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 59 | struct iphdr ip; |
| 60 | struct udphdr udp; |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 61 | struct dhcp_packet data; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 62 | } PACKED; |
Denis Vlasenko | 6884f66 | 2007-11-23 00:08:54 +0000 | [diff] [blame] | 63 | |
| 64 | /* Let's see whether compiler understood us right */ |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 65 | struct BUG_bad_sizeof_struct_ip_udp_dhcp_packet { |
| 66 | char BUG_bad_sizeof_struct_ip_udp_dhcp_packet |
| 67 | [(sizeof(struct ip_udp_dhcp_packet) != 576 + CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS) ? -1 : 1]; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
Denys Vlasenko | c7dc79e | 2010-03-21 06:15:28 +0100 | [diff] [blame] | 70 | // RFC 2131 Table 5: Fields and options used by DHCP clients |
| 71 | // |
| 72 | // Field DHCPDISCOVER DHCPREQUEST DHCPDECLINE, |
| 73 | // DHCPINFORM DHCPRELEASE |
| 74 | // ----- ------------ ----------- ----------- |
| 75 | // 'op' BOOTREQUEST BOOTREQUEST BOOTREQUEST |
| 76 | // 'hops' 0 0 0 |
| 77 | // 'xid' selected by client 'xid' from server selected by |
| 78 | // DHCPOFFER message client |
| 79 | // 'secs' 0 or seconds since 0 or seconds since 0 |
| 80 | // DHCP process started DHCP process started |
| 81 | // 'flags' Set 'BROADCAST' Set 'BROADCAST' 0 |
| 82 | // flag if client flag if client |
| 83 | // requires broadcast requires broadcast |
| 84 | // reply reply |
| 85 | // 'ciaddr' 0 (DHCPDISCOVER) 0 or client's 0 (DHCPDECLINE) |
| 86 | // client's network address client's network |
| 87 | // network address (BOUND/RENEW/REBIND) address |
| 88 | // (DHCPINFORM) (DHCPRELEASE) |
| 89 | // 'yiaddr' 0 0 0 |
| 90 | // 'siaddr' 0 0 0 |
| 91 | // 'giaddr' 0 0 0 |
| 92 | // 'chaddr' client's hardware client's hardware client's hardware |
| 93 | // address address address |
| 94 | // 'sname' options, if options, if (unused) |
| 95 | // indicated in indicated in |
| 96 | // 'sname/file' 'sname/file' |
| 97 | // option; otherwise option; otherwise |
| 98 | // unused unused |
| 99 | // 'file' options, if options, if (unused) |
| 100 | // indicated in indicated in |
| 101 | // 'sname/file' 'sname/file' |
| 102 | // option; otherwise option; otherwise |
| 103 | // unused unused |
| 104 | // 'options' options options (unused) |
| 105 | // |
| 106 | // Option DHCPDISCOVER DHCPREQUEST DHCPDECLINE, |
| 107 | // DHCPINFORM DHCPRELEASE |
| 108 | // ------ ------------ ----------- ----------- |
| 109 | // Requested IP address MAY MUST (in MUST |
| 110 | // (DISCOVER) SELECTING or (DHCPDECLINE), |
| 111 | // MUST NOT INIT-REBOOT) MUST NOT |
| 112 | // (INFORM) MUST NOT (in (DHCPRELEASE) |
| 113 | // BOUND or |
| 114 | // RENEWING) |
| 115 | // IP address lease time MAY MAY MUST NOT |
| 116 | // (DISCOVER) |
| 117 | // MUST NOT |
| 118 | // (INFORM) |
| 119 | // Use 'file'/'sname' fields MAY MAY MAY |
| 120 | // Client identifier MAY MAY MAY |
| 121 | // Vendor class identifier MAY MAY MUST NOT |
| 122 | // Server identifier MUST NOT MUST (after MUST |
| 123 | // SELECTING) |
| 124 | // MUST NOT (after |
| 125 | // INIT-REBOOT, |
| 126 | // BOUND, RENEWING |
| 127 | // or REBINDING) |
| 128 | // Parameter request list MAY MAY MUST NOT |
| 129 | // Maximum message size MAY MAY MUST NOT |
| 130 | // Message SHOULD NOT SHOULD NOT SHOULD |
| 131 | // Site-specific MAY MAY MUST NOT |
| 132 | // All others MAY MAY MUST NOT |
| 133 | |
| 134 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 135 | uint16_t udhcp_checksum(void *addr, int count) FAST_FUNC; |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 136 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 137 | void udhcp_init_header(struct dhcp_packet *packet, char type) FAST_FUNC; |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 138 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 139 | int udhcp_recv_kernel_packet(struct dhcp_packet *packet, int fd) FAST_FUNC; |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 140 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 141 | int udhcp_send_raw_packet(struct dhcp_packet *dhcp_pkt, |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 142 | uint32_t source_ip, int source_port, |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 143 | uint32_t dest_ip, int dest_port, const uint8_t *dest_arp, |
| 144 | int ifindex) FAST_FUNC; |
| 145 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 146 | int udhcp_send_kernel_packet(struct dhcp_packet *dhcp_pkt, |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 147 | uint32_t source_ip, int source_port, |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 148 | uint32_t dest_ip, int dest_port) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | /**/ |
| 152 | |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 153 | void udhcp_run_script(struct dhcp_packet *packet, const char *name) FAST_FUNC; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 154 | |
| 155 | // Still need to clean these up... |
| 156 | |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 157 | /* from options.h */ |
| 158 | #define get_option udhcp_get_option |
| 159 | #define end_option udhcp_end_option |
| 160 | #define add_option_string udhcp_add_option_string |
| 161 | #define add_simple_option udhcp_add_simple_option |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 162 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 163 | void udhcp_sp_setup(void) FAST_FUNC; |
| 164 | int udhcp_sp_fd_set(fd_set *rfds, int extra_fd) FAST_FUNC; |
| 165 | int udhcp_sp_read(const fd_set *rfds) FAST_FUNC; |
Denys Vlasenko | 26918dd | 2009-06-16 12:04:23 +0200 | [diff] [blame] | 166 | int udhcp_read_interface(const char *interface, int *ifindex, uint32_t *nip, uint8_t *mac) FAST_FUNC; |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 167 | int udhcp_listen_socket(/*uint32_t ip,*/ int port, const char *inf) FAST_FUNC; |
Denis Vlasenko | 42b3dea | 2007-07-03 15:47:50 +0000 | [diff] [blame] | 168 | /* Returns 1 if no reply received */ |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 169 | int arpping(uint32_t test_nip, |
Denys Vlasenko | 47f2d7e | 2009-06-16 10:20:27 +0200 | [diff] [blame] | 170 | const uint8_t *safe_mac, |
| 171 | uint32_t from_ip, |
| 172 | uint8_t *from_mac, |
| 173 | const char *interface) FAST_FUNC; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 174 | |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 175 | #if defined CONFIG_UDHCP_DEBUG && CONFIG_UDHCP_DEBUG >= 1 |
Denys Vlasenko | 6947d2c | 2009-06-17 13:24:03 +0200 | [diff] [blame] | 176 | extern unsigned dhcp_verbose; |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 177 | # define log1(...) do { if (dhcp_verbose >= 1) bb_info_msg(__VA_ARGS__); } while (0) |
| 178 | # if CONFIG_UDHCP_DEBUG >= 2 |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 179 | void udhcp_dump_packet(struct dhcp_packet *packet) FAST_FUNC; |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 180 | # define log2(...) do { if (dhcp_verbose >= 2) bb_info_msg(__VA_ARGS__); } while (0) |
| 181 | # else |
| 182 | # define udhcp_dump_packet(...) ((void)0) |
| 183 | # define log2(...) ((void)0) |
| 184 | # endif |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 185 | # if CONFIG_UDHCP_DEBUG >= 3 |
| 186 | # define log3(...) do { if (dhcp_verbose >= 3) bb_info_msg(__VA_ARGS__); } while (0) |
| 187 | # else |
| 188 | # define log3(...) ((void)0) |
| 189 | # endif |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 190 | #else |
Denys Vlasenko | ac906fa | 2009-06-17 11:54:52 +0200 | [diff] [blame] | 191 | # define udhcp_dump_packet(...) ((void)0) |
| 192 | # define log1(...) ((void)0) |
| 193 | # define log2(...) ((void)0) |
Denys Vlasenko | 31af3d5 | 2009-06-17 11:57:09 +0200 | [diff] [blame] | 194 | # define log3(...) ((void)0) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 195 | #endif |
| 196 | |
Denis Vlasenko | f81e8db | 2009-04-09 12:35:13 +0000 | [diff] [blame] | 197 | POP_SAVED_FUNCTION_VISIBILITY |
Denis Vlasenko | 98636eb | 2008-05-09 17:59:34 +0000 | [diff] [blame] | 198 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 199 | #endif |