iPXE
cachedhcp.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 Michael Brown <mbrown@fensystems.co.uk>.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301, USA.
18  *
19  * You can also choose to distribute this program under the terms of
20  * the Unmodified Binary Distribution Licence (as given in the file
21  * COPYING.UBDL), provided that you have satisfied its requirements.
22  */
23 
24 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
25 
26 #include <stdint.h>
27 #include <stdlib.h>
28 #include <errno.h>
29 #include <ipxe/dhcppkt.h>
30 #include <ipxe/init.h>
31 #include <ipxe/netdevice.h>
32 #include <ipxe/vlan.h>
33 #include <ipxe/cachedhcp.h>
34 
35 /** @file
36  *
37  * Cached DHCP packet
38  *
39  */
40 
41 /** A cached DHCP packet */
43  /** Settings block name */
44  const char *name;
45  /** DHCP packet (if any) */
47  /** VLAN tag (if applicable) */
48  unsigned int vlan;
49  /** Flags */
50  unsigned int flags;
51 };
52 
53 /** Cached DHCP packet should be retained */
54 #define CACHEDHCP_RETAIN 0x0001
55 
56 /** Cached DHCP packet has been used */
57 #define CACHEDHCP_USED 0x0002
58 
59 /** Cached DHCPACK */
62  .flags = CACHEDHCP_RETAIN,
63 };
64 
65 /** Cached ProxyDHCPOFFER */
68 };
69 
70 /** Cached PXEBSACK */
73 };
74 
75 /** List of cached DHCP packets */
76 static struct cached_dhcp_packet *cached_packets[] = {
79  &cached_pxebs,
80 };
81 
82 /** Colour for debug messages */
83 #define colour &cached_dhcpack
84 
85 /**
86  * Free cached DHCP packet
87  *
88  * @v cache Cached DHCP packet
89  */
90 static void cachedhcp_free ( struct cached_dhcp_packet *cache ) {
91 
92  dhcppkt_put ( cache->dhcppkt );
93  cache->dhcppkt = NULL;
94 }
95 
96 /**
97  * Apply cached DHCP packet settings
98  *
99  * @v cache Cached DHCP packet
100  * @v netdev Network device, or NULL
101  * @ret rc Return status code
102  */
103 static int cachedhcp_apply ( struct cached_dhcp_packet *cache,
104  struct net_device *netdev ) {
105  struct settings *settings = NULL;
106  struct ll_protocol *ll_protocol;
107  const uint8_t *chaddr;
108  uint8_t *hw_addr;
109  uint8_t *ll_addr;
110  size_t ll_addr_len;
111  int rc;
112 
113  /* Do nothing if cache is empty or already in use */
114  if ( ( ! cache->dhcppkt ) || ( cache->flags & CACHEDHCP_USED ) )
115  return 0;
116  chaddr = cache->dhcppkt->dhcphdr->chaddr;
117 
118  /* Handle association with network device, if specified */
119  if ( netdev ) {
120  hw_addr = netdev->hw_addr;
121  ll_addr = netdev->ll_addr;
124 
125  /* If cached packet's MAC address matches the network
126  * device's permanent MAC address, then assume that
127  * the permanent MAC address ought to be the network
128  * device's current link-layer address.
129  *
130  * This situation can arise when the PXE ROM does not
131  * understand the system-specific mechanism for
132  * overriding the MAC address, and so uses the
133  * permanent MAC address instead. We choose to match
134  * this behaviour in order to minimise surprise.
135  */
136  if ( memcmp ( hw_addr, chaddr, ll_addr_len ) == 0 ) {
137  if ( memcmp ( hw_addr, ll_addr, ll_addr_len ) != 0 ) {
138  DBGC ( colour, "CACHEDHCP %s resetting %s MAC "
139  "%s ", cache->name, netdev->name,
140  ll_protocol->ntoa ( ll_addr ) );
141  DBGC ( colour, "-> %s\n",
142  ll_protocol->ntoa ( hw_addr ) );
143  }
144  memcpy ( ll_addr, hw_addr, ll_addr_len );
145  }
146 
147  /* Do nothing unless cached packet's MAC address
148  * matches this network device.
149  */
150  if ( memcmp ( ll_addr, chaddr, ll_addr_len ) != 0 ) {
151  DBGC ( colour, "CACHEDHCP %s %s does not match %s\n",
152  cache->name, ll_protocol->ntoa ( chaddr ),
153  netdev->name );
154  return 0;
155  }
156 
157  /* Do nothing unless cached packet's VLAN tag matches
158  * this network device.
159  */
160  if ( vlan_tag ( netdev ) != cache->vlan ) {
161  DBGC ( colour, "CACHEDHCP %s VLAN %d does not match "
162  "%s\n", cache->name, cache->vlan,
163  netdev->name );
164  return 0;
165  }
166 
167  /* Use network device's settings block */
169  DBGC ( colour, "CACHEDHCP %s is for %s\n",
170  cache->name, netdev->name );
171  }
172 
173  /* Register settings */
174  if ( ( rc = register_settings ( &cache->dhcppkt->settings, settings,
175  cache->name ) ) != 0 ) {
176  DBGC ( colour, "CACHEDHCP %s could not register settings: %s\n",
177  cache->name, strerror ( rc ) );
178  return rc;
179  }
180 
181  /* Mark as used */
182  cache->flags |= CACHEDHCP_USED;
183 
184  /* Free cached DHCP packet, if applicable */
185  if ( ! ( cache->flags & CACHEDHCP_RETAIN ) )
186  cachedhcp_free ( cache );
187 
188  return 0;
189 }
190 
191 /**
192  * Record cached DHCP packet
193  *
194  * @v cache Cached DHCP packet
195  * @v vlan VLAN tag, if any
196  * @v data DHCPACK packet buffer
197  * @v max_len Maximum possible length
198  * @ret rc Return status code
199  */
200 int cachedhcp_record ( struct cached_dhcp_packet *cache, unsigned int vlan,
201  userptr_t data, size_t max_len ) {
202  struct dhcp_packet *dhcppkt;
203  struct dhcp_packet *tmp;
204  struct dhcphdr *dhcphdr;
205  unsigned int i;
206  size_t len;
207 
208  /* Free any existing cached packet */
209  cachedhcp_free ( cache );
210 
211  /* Allocate and populate DHCP packet */
212  dhcppkt = zalloc ( sizeof ( *dhcppkt ) + max_len );
213  if ( ! dhcppkt ) {
214  DBGC ( colour, "CACHEDHCP %s could not allocate copy\n",
215  cache->name );
216  return -ENOMEM;
217  }
218  dhcphdr = ( ( ( void * ) dhcppkt ) + sizeof ( *dhcppkt ) );
220  dhcppkt_init ( dhcppkt, dhcphdr, max_len );
221 
222  /* Shrink packet to required length. If reallocation fails,
223  * just continue to use the original packet and waste the
224  * unused space.
225  */
226  len = dhcppkt_len ( dhcppkt );
227  assert ( len <= max_len );
228  tmp = realloc ( dhcppkt, ( sizeof ( *dhcppkt ) + len ) );
229  if ( tmp )
230  dhcppkt = tmp;
231 
232  /* Reinitialise packet at new address */
233  dhcphdr = ( ( ( void * ) dhcppkt ) + sizeof ( *dhcppkt ) );
234  dhcppkt_init ( dhcppkt, dhcphdr, len );
235 
236  /* Discard duplicate packets, since some PXE stacks (including
237  * iPXE itself) will report the DHCPACK packet as the PXEBSACK
238  * if no separate PXEBSACK exists.
239  */
240  for ( i = 0 ; i < ( sizeof ( cached_packets ) /
241  sizeof ( cached_packets[0] ) ) ; i++ ) {
242  tmp = cached_packets[i]->dhcppkt;
243  if ( tmp && ( dhcppkt_len ( tmp ) == len ) &&
244  ( memcmp ( tmp->dhcphdr, dhcppkt->dhcphdr, len ) == 0 ) ) {
245  DBGC ( colour, "CACHEDHCP %s duplicates %s\n",
246  cache->name, cached_packets[i]->name );
247  dhcppkt_put ( dhcppkt );
248  return -EEXIST;
249  }
250  }
251 
252  /* Store as cached packet */
253  DBGC ( colour, "CACHEDHCP %s at %#08lx+%#zx/%#zx\n", cache->name,
254  user_to_phys ( data, 0 ), len, max_len );
255  cache->dhcppkt = dhcppkt;
256  cache->vlan = vlan;
257 
258  return 0;
259 }
260 
261 /**
262  * Cached DHCP packet early startup function
263  *
264  */
265 static void cachedhcp_startup_early ( void ) {
266 
267  /* Apply cached ProxyDHCPOFFER, if any */
270 
271  /* Apply cached PXEBSACK, if any */
274 }
275 
276 /**
277  * Cache DHCP packet late startup function
278  *
279  */
280 static void cachedhcp_startup_late ( void ) {
281 
282  /* Clear retention flag */
284 
285  /* Free cached DHCPACK, if used by a network device */
288 
289  /* Report unclaimed DHCPACK, if any. Do not free yet, since
290  * it may still be claimed by a dynamically created device
291  * such as a VLAN device.
292  */
293  if ( cached_dhcpack.dhcppkt ) {
294  DBGC ( colour, "CACHEDHCP %s unclaimed\n",
296  }
297 }
298 
299 /**
300  * Cached DHCP packet shutdown function
301  *
302  * @v booting System is shutting down for OS boot
303  */
304 static void cachedhcp_shutdown ( int booting __unused ) {
305 
306  /* Free cached DHCPACK, if any */
307  if ( cached_dhcpack.dhcppkt ) {
308  DBGC ( colour, "CACHEDHCP %s never claimed\n",
310  }
312 }
313 
314 /** Cached DHCP packet early startup function */
315 struct startup_fn cachedhcp_early_fn __startup_fn ( STARTUP_EARLY ) = {
316  .name = "cachedhcp1",
317  .startup = cachedhcp_startup_early,
318 };
319 
320 /** Cached DHCP packet late startup function */
321 struct startup_fn cachedhcp_late_fn __startup_fn ( STARTUP_LATE ) = {
322  .name = "cachedhcp2",
323  .startup = cachedhcp_startup_late,
324  .shutdown = cachedhcp_shutdown,
325 };
326 
327 /**
328  * Apply cached DHCPACK to network device, if applicable
329  *
330  * @v netdev Network device
331  * @v priv Private data
332  * @ret rc Return status code
333  */
334 static int cachedhcp_probe ( struct net_device *netdev, void *priv __unused ) {
335 
336  /* Apply cached DHCPACK to network device, if applicable */
338 }
339 
340 /** Cached DHCP packet network device driver */
341 struct net_driver cachedhcp_driver __net_driver = {
342  .name = "cachedhcp",
343  .probe = cachedhcp_probe,
344 };
345 
346 /**
347  * Recycle cached DHCPACK
348  *
349  * @v netdev Network device
350  * @v priv Private data
351  */
353  struct cached_dhcp_packet *cache = &cached_dhcpack;
354  struct settings *settings;
355 
356  /* Return DHCPACK to cache, if applicable */
358  cache->name );
359  if ( cache->dhcppkt && ( settings == &cache->dhcppkt->settings ) ) {
360  DBGC ( colour, "CACHEDHCP %s recycled from %s\n",
361  cache->name, netdev->name );
362  assert ( cache->flags & CACHEDHCP_USED );
364  cache->flags &= ~CACHEDHCP_USED;
365  }
366 }
#define colour
Colour for debug messages.
Definition: cachedhcp.c:83
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
A DHCP packet.
Definition: dhcppkt.h:20
uint8_t ll_addr_len
Link-layer address length.
Definition: netdevice.h:198
void unregister_settings(struct settings *settings)
Unregister settings block.
Definition: settings.c:514
unsigned int vlan
VLAN tag (if applicable)
Definition: cachedhcp.c:48
Error codes.
#define EEXIST
File exists.
Definition: errno.h:388
static int cachedhcp_probe(struct net_device *netdev, void *priv __unused)
Apply cached DHCPACK to network device, if applicable.
Definition: cachedhcp.c:334
uint16_t max_len
Maximum length (in bytes)
Definition: ntlm.h:18
struct cached_dhcp_packet cached_proxydhcp
Cached ProxyDHCPOFFER.
Definition: cachedhcp.c:66
static __always_inline void copy_from_user(void *dest, userptr_t src, off_t src_off, size_t len)
Copy data from user buffer.
Definition: uaccess.h:337
#define STARTUP_EARLY
Early startup.
Definition: init.h:62
unsigned long user_to_phys(userptr_t userptr, off_t offset)
Convert user pointer to physical address.
#define DBGC(...)
Definition: compiler.h:505
static void cachedhcp_startup_early(void)
Cached DHCP packet early startup function.
Definition: cachedhcp.c:265
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
struct net_driver cachedhcp_driver __net_driver
Cached DHCP packet network device driver.
Definition: cachedhcp.c:341
const char * name
Definition: init.h:42
A network upper-layer driver.
Definition: netdevice.h:473
static struct settings * netdev_settings(struct net_device *netdev)
Get per-netdevice configuration settings block.
Definition: netdevice.h:583
A link-layer protocol.
Definition: netdevice.h:114
#define STARTUP_LATE
Late startup.
Definition: init.h:64
static struct cached_dhcp_packet * cached_packets[]
List of cached DHCP packets.
Definition: cachedhcp.c:76
struct dhcp_packet * dhcppkt
DHCP packet (if any)
Definition: cachedhcp.c:46
void cachedhcp_recycle(struct net_device *netdev)
Recycle cached DHCPACK.
Definition: cachedhcp.c:352
static void cachedhcp_free(struct cached_dhcp_packet *cache)
Free cached DHCP packet.
Definition: cachedhcp.c:90
unsigned long tmp
Definition: linux_pci.h:53
A startup/shutdown function.
Definition: init.h:41
#define ENOMEM
Not enough space.
Definition: errno.h:534
void * memcpy(void *dest, const void *src, size_t len) __nonnull
const char * name
Name.
Definition: netdevice.h:475
assert((readw(&hdr->flags) &(GTF_reading|GTF_writing))==0)
#define PROXYDHCP_SETTINGS_NAME
Settings block name used for ProxyDHCP responses.
Definition: dhcp.h:711
static int cachedhcp_apply(struct cached_dhcp_packet *cache, struct net_device *netdev)
Apply cached DHCP packet settings.
Definition: cachedhcp.c:103
#define DHCP_SETTINGS_NAME
Settings block name used for DHCP responses.
Definition: dhcp.h:708
Cached DHCP packet.
static struct net_device * netdev
Definition: gdbudp.c:52
A cached DHCP packet.
Definition: cachedhcp.c:42
struct startup_fn cachedhcp_early_fn __startup_fn(STARTUP_EARLY)
Cached DHCP packet early startup function.
#define PXEBS_SETTINGS_NAME
Setting block name used for BootServerDHCP responses.
Definition: dhcp.h:714
#define CACHEDHCP_RETAIN
Cached DHCP packet should be retained.
Definition: cachedhcp.c:54
char * strerror(int errno)
Retrieve string representation of error number.
Definition: strerror.c:78
void * zalloc(size_t size)
Allocate cleared memory.
Definition: malloc.c:624
uint8_t chaddr[16]
Client hardware address.
Definition: dhcp.h:659
int cachedhcp_record(struct cached_dhcp_packet *cache, unsigned int vlan, userptr_t data, size_t max_len)
Record cached DHCP packet.
Definition: cachedhcp.c:200
A network device.
Definition: netdevice.h:352
A settings block.
Definition: settings.h:132
unsigned char uint8_t
Definition: stdint.h:10
static void cachedhcp_shutdown(int booting __unused)
Cached DHCP packet shutdown function.
Definition: cachedhcp.c:304
struct cached_dhcp_packet cached_dhcpack
Cached DHCPACK.
Definition: cachedhcp.c:60
unsigned int flags
Flags.
Definition: cachedhcp.c:50
struct settings settings
Settings interface.
Definition: dhcppkt.h:28
A DHCP header.
Definition: dhcp.h:613
Network device management.
#define __unused
Declare a variable or data structure as unused.
Definition: compiler.h:573
void dhcppkt_init(struct dhcp_packet *dhcppkt, struct dhcphdr *data, size_t len)
Initialise DHCP packet.
Definition: dhcppkt.c:300
char name[NETDEV_NAME_LEN]
Name of this network device.
Definition: netdevice.h:362
struct dhcphdr * dhcphdr
The DHCP packet contents.
Definition: dhcppkt.h:24
uint32_t len
Length.
Definition: ena.h:14
static struct tlan_private * priv
Definition: tlan.c:224
static void dhcppkt_put(struct dhcp_packet *dhcppkt)
Decrement reference count on DHCP packet.
Definition: dhcppkt.h:49
static size_t dhcppkt_len(struct dhcp_packet *dhcppkt)
Get used length of DHCP packet.
Definition: dhcppkt.h:59
const char * name
Settings block name.
Definition: cachedhcp.c:44
uint8_t data[48]
Additional event data.
Definition: ena.h:22
Virtual LANs.
const char *(* ntoa)(const void *ll_addr)
Transcribe link-layer address.
Definition: netdevice.h:163
DHCP packets.
void * realloc(void *old_ptr, size_t new_size)
Reallocate memory.
Definition: malloc.c:521
int register_settings(struct settings *settings, struct settings *parent, const char *name)
Register settings block.
Definition: settings.c:475
struct cached_dhcp_packet cached_pxebs
Cached PXEBSACK.
Definition: cachedhcp.c:71
uint8_t ll_addr[MAX_LL_ADDR_LEN]
Link-layer address.
Definition: netdevice.h:387
static unsigned int vlan_tag(struct net_device *netdev)
Get the VLAN tag.
Definition: vlan.h:73
struct settings * find_child_settings(struct settings *parent, const char *name)
Find child settings block.
Definition: settings.c:279
#define CACHEDHCP_USED
Cached DHCP packet has been used.
Definition: cachedhcp.c:57
static void cachedhcp_startup_late(void)
Cache DHCP packet late startup function.
Definition: cachedhcp.c:280
int memcmp(const void *first, const void *second, size_t len)
Compare memory regions.
Definition: string.c:114
uint8_t hw_addr[MAX_HW_ADDR_LEN]
Hardware address.
Definition: netdevice.h:381
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
struct ll_protocol * ll_protocol
Link-layer protocol.
Definition: netdevice.h:372
unsigned long userptr_t
A pointer to a user buffer.
Definition: uaccess.h:33