/* ----------------------------------------------------------------------- * * * Copyright 2007 H. Peter Anvin - All Rights Reserved * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom * the Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall * be included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * ----------------------------------------------------------------------- */ /* * zonelist.c * * Deal with syslinux_memmap's, which are data structures designed to * hold memory maps. A zonelist is a sorted linked list of memory * ranges, with the guarantee that no two adjacent blocks have the * same range type. Additionally, all unspecified memory have a range * type of zero. */ #include #include /* * Create an empty syslinux_memmap list. */ struct syslinux_memmap *syslinux_init_memmap(void) { struct syslinux_memmap *sp, *ep; sp = malloc(sizeof(*sp)); if (!sp) return NULL; ep = malloc(sizeof(*ep)); if (!ep) { free(sp); return NULL; } sp->start = 0; sp->type = SMT_UNDEFINED; sp->next = ep; ep->start = 0; /* Wrap around... */ ep->type = SMT_END; /* End of chain */ ep->next = NULL; return sp; } /* * Add an item to a syslinux_memmap list, potentially overwriting * what is already there. */ int syslinux_add_memmap(struct syslinux_memmap **list, addr_t start, addr_t len, enum syslinux_memmap_types type) { addr_t last; struct syslinux_memmap *mp, **mpp; struct syslinux_memmap *mpi, **mppi; struct syslinux_memmap *range; enum syslinux_memmap_types oldtype; /* Remove this to make len == 0 mean all of memory */ if (len == 0) return 0; /* Last byte -- to avoid rollover */ last = start+len-1; mpp = list; oldtype = SMT_ERROR; while (mp = *mpp, start > mp->start && mp->type != SMT_END) { oldtype = mp->type; mpp = &mp->next; } /* Remember where we started messing with things. */ mppi = mpp; if (start < mp->start || mp->type == SMT_END) { range = malloc(sizeof(*range)); if (!range) return -1; range->start = start; range->type = type; *mpp = range; range->next = mp; mpp = &range->next; } while (mp = *mpp, last > mp->start-1) { oldtype = mp->type; mp->type = type; mpp = &mp->next; } if (last < mp->start-1) { range = malloc(sizeof(*range)); if (!range) return -1; range->start = last+1; range->type = oldtype; *mpp = range; range->next = mp; } /* Now the map is correct, but quite possibly not optimal. Scan the map for ranges which are redundant and remove them. This is technically excessive, since we scan the list to the end even though only part of it could have changed. Eventually we might care enough to save an end pointer from the operation above. */ mpi = *mppi; while (mpi->type != SMT_END) { mp = mpi->next; if (mpi->type == mp->type) { mpi->next = mp->next; free(mp); } else { /* Go on to the next one */ mpi = mp; } } return 0; } /* * Verify what type a certain memory region is. This function returns * SMT_ERROR if the memory region has multiple types. */ enum syslinux_memmap_types syslinux_memmap_type(struct syslinux_memmap *list, addr_t start, addr_t len) { addr_t last, llast; last = start+len-1; while (list->type != SMT_END) { llast = list->next->start-1; if (list->start <= start) { if (llast >= last) return list->type; /* Region has a well-defined type */ else if (llast >= start) return SMT_ERROR; /* Crosses region boundary */ } list = list->next; } return SMT_ERROR; /* Internal error? */ } /* * Find the largest zone of a specific type. Returns -1 on failure. */ int syslinux_memmap_largest(struct syslinux_memmap *list, enum syslinux_memmap_types type, addr_t *start, addr_t *len) { addr_t size, best_size = 0; struct syslinux_memmap *best = NULL; while (list->type != SMT_END) { size = list->next->start - list->start; if (list->type == type && size > best_size) { best = list; best_size = size; } list = list->next; } if (!best) return -1; *start = best->start; *len = best_size; return 0; } /* * Free a zonelist. */ void syslinux_free_memmap(struct syslinux_memmap *list) { struct syslinux_memmap *ml; while (list) { ml = list; list = list->next; free(ml); } } /* * Duplicate a zonelist. Returns NULL on failure. */ struct syslinux_memmap *syslinux_dup_memmap(struct syslinux_memmap *list) { struct syslinux_memmap *newlist = NULL, **nlp = &newlist; struct syslinux_memmap *ml; while (list) { ml = malloc(sizeof(*ml)); if (!ml) { syslinux_free_memmap(newlist); return NULL; } ml->start = list->start; ml->type = list->type; ml->next = NULL; *nlp = ml; nlp = &ml->next; list = list->next; } return newlist; }