"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 | /* serverpacket.c |
| 3 | * |
| 4 | * Construct and send DHCP server packets |
| 5 | * |
| 6 | * Russ Dill <Russ.Dill@asu.edu> July 2001 |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 21 | */ |
| 22 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 23 | #include "common.h" |
Denis Vlasenko | d55fe3e | 2008-02-04 13:12:16 +0000 | [diff] [blame] | 24 | #include "dhcpc.h" |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 25 | #include "dhcpd.h" |
| 26 | #include "options.h" |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 27 | |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 28 | |
| 29 | /* send a packet to giaddr using the kernel ip stack */ |
| 30 | static int send_packet_to_relay(struct dhcpMessage *payload) |
| 31 | { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 32 | DEBUG("Forwarding packet to relay"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 33 | |
Denis Vlasenko | fff145d | 2007-12-20 21:11:38 +0000 | [diff] [blame] | 34 | return udhcp_send_kernel_packet(payload, server_config.server, SERVER_PORT, |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 35 | payload->giaddr, SERVER_PORT); |
| 36 | } |
| 37 | |
| 38 | |
| 39 | /* send a packet to a specific arp address and ip address by creating our own ip packet */ |
| 40 | static int send_packet_to_client(struct dhcpMessage *payload, int force_broadcast) |
| 41 | { |
Denis Vlasenko | fbd2918 | 2007-04-07 01:05:47 +0000 | [diff] [blame] | 42 | const uint8_t *chaddr; |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 43 | uint32_t ciaddr; |
| 44 | |
| 45 | if (force_broadcast) { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 46 | DEBUG("broadcasting packet to client (NAK)"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 47 | ciaddr = INADDR_BROADCAST; |
| 48 | chaddr = MAC_BCAST_ADDR; |
| 49 | } else if (payload->ciaddr) { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 50 | DEBUG("unicasting packet to client ciaddr"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 51 | ciaddr = payload->ciaddr; |
| 52 | chaddr = payload->chaddr; |
Denis Vlasenko | 739e30f | 2008-09-26 23:45:20 +0000 | [diff] [blame^] | 53 | } else if (payload->flags & htons(BROADCAST_FLAG)) { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 54 | DEBUG("broadcasting packet to client (requested)"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 55 | ciaddr = INADDR_BROADCAST; |
| 56 | chaddr = MAC_BCAST_ADDR; |
| 57 | } else { |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 58 | DEBUG("unicasting packet to client yiaddr"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 59 | ciaddr = payload->yiaddr; |
| 60 | chaddr = payload->chaddr; |
| 61 | } |
Denis Vlasenko | c321b51 | 2008-09-26 16:29:12 +0000 | [diff] [blame] | 62 | return udhcp_send_raw_packet(payload, |
| 63 | /*src*/ server_config.server, SERVER_PORT, |
| 64 | /*dst*/ ciaddr, CLIENT_PORT, chaddr, |
| 65 | server_config.ifindex); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | |
| 69 | /* send a dhcp packet, if force broadcast is set, the packet will be broadcast to the client */ |
| 70 | static int send_packet(struct dhcpMessage *payload, int force_broadcast) |
| 71 | { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 72 | if (payload->giaddr) |
Denis Vlasenko | 6de8994 | 2008-05-21 07:05:06 +0000 | [diff] [blame] | 73 | return send_packet_to_relay(payload); |
| 74 | return send_packet_to_client(payload, force_broadcast); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | |
| 78 | static void init_packet(struct dhcpMessage *packet, struct dhcpMessage *oldpacket, char type) |
| 79 | { |
Rob Landley | 3f78561 | 2006-05-28 01:06:36 +0000 | [diff] [blame] | 80 | udhcp_init_header(packet, type); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 81 | packet->xid = oldpacket->xid; |
| 82 | memcpy(packet->chaddr, oldpacket->chaddr, 16); |
| 83 | packet->flags = oldpacket->flags; |
| 84 | packet->giaddr = oldpacket->giaddr; |
| 85 | packet->ciaddr = oldpacket->ciaddr; |
| 86 | add_simple_option(packet->options, DHCP_SERVER_ID, server_config.server); |
| 87 | } |
| 88 | |
| 89 | |
| 90 | /* add in the bootp options */ |
| 91 | static void add_bootp_options(struct dhcpMessage *packet) |
| 92 | { |
| 93 | packet->siaddr = server_config.siaddr; |
| 94 | if (server_config.sname) |
| 95 | strncpy((char*)packet->sname, server_config.sname, sizeof(packet->sname) - 1); |
| 96 | if (server_config.boot_file) |
| 97 | strncpy((char*)packet->file, server_config.boot_file, sizeof(packet->file) - 1); |
| 98 | } |
| 99 | |
| 100 | |
| 101 | /* send a DHCP OFFER to a DHCP DISCOVER */ |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 102 | int FAST_FUNC send_offer(struct dhcpMessage *oldpacket) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 103 | { |
| 104 | struct dhcpMessage packet; |
| 105 | struct dhcpOfferedAddr *lease = NULL; |
| 106 | uint32_t req_align, lease_time_align = server_config.lease; |
| 107 | uint8_t *req, *lease_time; |
| 108 | struct option_set *curr; |
| 109 | struct in_addr addr; |
| 110 | |
| 111 | uint32_t static_lease_ip; |
| 112 | |
| 113 | init_packet(&packet, oldpacket, DHCPOFFER); |
| 114 | |
| 115 | static_lease_ip = getIpByMac(server_config.static_leases, oldpacket->chaddr); |
| 116 | |
| 117 | /* ADDME: if static, short circuit */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 118 | if (!static_lease_ip) { |
| 119 | /* the client is in our lease/offered table */ |
| 120 | lease = find_lease_by_chaddr(oldpacket->chaddr); |
| 121 | if (lease) { |
| 122 | if (!lease_expired(lease)) |
| 123 | lease_time_align = lease->expires - time(0); |
| 124 | packet.yiaddr = lease->yiaddr; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 125 | /* Or the client has a requested ip */ |
| 126 | } else if ((req = get_option(oldpacket, DHCP_REQUESTED_IP)) |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 127 | /* Don't look here (ugly hackish thing to do) */ |
| 128 | && memcpy(&req_align, req, 4) |
| 129 | /* and the ip is in the lease range */ |
| 130 | && ntohl(req_align) >= server_config.start_ip |
| 131 | && ntohl(req_align) <= server_config.end_ip |
| 132 | && !static_lease_ip /* Check that its not a static lease */ |
| 133 | /* and is not already taken/offered */ |
| 134 | && (!(lease = find_lease_by_yiaddr(req_align)) |
| 135 | /* or its taken, but expired */ /* ADDME: or maybe in here */ |
| 136 | || lease_expired(lease)) |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 137 | ) { |
| 138 | packet.yiaddr = req_align; /* FIXME: oh my, is there a host using this IP? */ |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 139 | /* otherwise, find a free IP */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 140 | } else { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 141 | /* Is it a static lease? (No, because find_address skips static lease) */ |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 142 | packet.yiaddr = find_address(0); |
| 143 | /* try for an expired lease */ |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 144 | if (!packet.yiaddr) |
| 145 | packet.yiaddr = find_address(1); |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 146 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 147 | |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 148 | if (!packet.yiaddr) { |
| 149 | bb_error_msg("no IP addresses to give - OFFER abandoned"); |
| 150 | return -1; |
| 151 | } |
| 152 | if (!add_lease(packet.chaddr, packet.yiaddr, server_config.offer_time)) { |
| 153 | bb_error_msg("lease pool is full - OFFER abandoned"); |
| 154 | return -1; |
| 155 | } |
| 156 | lease_time = get_option(oldpacket, DHCP_LEASE_TIME); |
| 157 | if (lease_time) { |
| 158 | memcpy(&lease_time_align, lease_time, 4); |
| 159 | lease_time_align = ntohl(lease_time_align); |
| 160 | if (lease_time_align > server_config.lease) |
| 161 | lease_time_align = server_config.lease; |
| 162 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 163 | |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 164 | /* Make sure we aren't just using the lease time from the previous offer */ |
| 165 | if (lease_time_align < server_config.min_lease) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 166 | lease_time_align = server_config.lease; |
Denis Vlasenko | 5a3395b | 2006-11-18 19:51:32 +0000 | [diff] [blame] | 167 | /* ADDME: end of short circuit */ |
| 168 | } else { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 169 | /* It is a static lease... use it */ |
| 170 | packet.yiaddr = static_lease_ip; |
| 171 | } |
| 172 | |
| 173 | add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_align)); |
| 174 | |
| 175 | curr = server_config.options; |
| 176 | while (curr) { |
| 177 | if (curr->data[OPT_CODE] != DHCP_LEASE_TIME) |
| 178 | add_option_string(packet.options, curr->data); |
| 179 | curr = curr->next; |
| 180 | } |
| 181 | |
| 182 | add_bootp_options(&packet); |
| 183 | |
| 184 | addr.s_addr = packet.yiaddr; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 185 | bb_info_msg("Sending OFFER of %s", inet_ntoa(addr)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 186 | return send_packet(&packet, 0); |
| 187 | } |
| 188 | |
| 189 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 190 | int FAST_FUNC send_NAK(struct dhcpMessage *oldpacket) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 191 | { |
| 192 | struct dhcpMessage packet; |
| 193 | |
| 194 | init_packet(&packet, oldpacket, DHCPNAK); |
| 195 | |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 196 | DEBUG("Sending NAK"); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 197 | return send_packet(&packet, 1); |
| 198 | } |
| 199 | |
| 200 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 201 | int FAST_FUNC send_ACK(struct dhcpMessage *oldpacket, uint32_t yiaddr) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 202 | { |
| 203 | struct dhcpMessage packet; |
| 204 | struct option_set *curr; |
| 205 | uint8_t *lease_time; |
| 206 | uint32_t lease_time_align = server_config.lease; |
| 207 | struct in_addr addr; |
| 208 | |
| 209 | init_packet(&packet, oldpacket, DHCPACK); |
| 210 | packet.yiaddr = yiaddr; |
| 211 | |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 212 | lease_time = get_option(oldpacket, DHCP_LEASE_TIME); |
| 213 | if (lease_time) { |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 214 | memcpy(&lease_time_align, lease_time, 4); |
| 215 | lease_time_align = ntohl(lease_time_align); |
| 216 | if (lease_time_align > server_config.lease) |
| 217 | lease_time_align = server_config.lease; |
| 218 | else if (lease_time_align < server_config.min_lease) |
| 219 | lease_time_align = server_config.lease; |
| 220 | } |
| 221 | |
| 222 | add_simple_option(packet.options, DHCP_LEASE_TIME, htonl(lease_time_align)); |
| 223 | |
| 224 | curr = server_config.options; |
| 225 | while (curr) { |
| 226 | if (curr->data[OPT_CODE] != DHCP_LEASE_TIME) |
| 227 | add_option_string(packet.options, curr->data); |
| 228 | curr = curr->next; |
| 229 | } |
| 230 | |
| 231 | add_bootp_options(&packet); |
| 232 | |
| 233 | addr.s_addr = packet.yiaddr; |
Denis Vlasenko | 3538b9a | 2006-09-06 18:36:50 +0000 | [diff] [blame] | 234 | bb_info_msg("Sending ACK to %s", inet_ntoa(addr)); |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 235 | |
| 236 | if (send_packet(&packet, 0) < 0) |
| 237 | return -1; |
| 238 | |
| 239 | add_lease(packet.chaddr, packet.yiaddr, lease_time_align); |
Denis Vlasenko | c82b510 | 2007-07-01 17:05:57 +0000 | [diff] [blame] | 240 | if (ENABLE_FEATURE_UDHCPD_WRITE_LEASES_EARLY) { |
| 241 | /* rewrite the file with leases at every new acceptance */ |
| 242 | write_leases(); |
| 243 | } |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 244 | |
| 245 | return 0; |
| 246 | } |
| 247 | |
| 248 | |
Denis Vlasenko | f1980f6 | 2008-09-26 09:34:59 +0000 | [diff] [blame] | 249 | int FAST_FUNC send_inform(struct dhcpMessage *oldpacket) |
Mike Frysinger | 7031f62 | 2006-05-08 03:20:50 +0000 | [diff] [blame] | 250 | { |
| 251 | struct dhcpMessage packet; |
| 252 | struct option_set *curr; |
| 253 | |
| 254 | init_packet(&packet, oldpacket, DHCPACK); |
| 255 | |
| 256 | curr = server_config.options; |
| 257 | while (curr) { |
| 258 | if (curr->data[OPT_CODE] != DHCP_LEASE_TIME) |
| 259 | add_option_string(packet.options, curr->data); |
| 260 | curr = curr->next; |
| 261 | } |
| 262 | |
| 263 | add_bootp_options(&packet); |
| 264 | |
| 265 | return send_packet(&packet, 0); |
| 266 | } |