grub/lib/relocator.c

1232 lines
31 KiB
C
Raw Normal View History

2009-11-25 22:39:59 +00:00
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2009, 2010 Free Software Foundation, Inc.
2009-11-25 22:39:59 +00:00
*
* GRUB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GRUB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
*/
2010-01-09 23:30:33 +00:00
#include <grub/relocator.h>
#include <grub/relocator_private.h>
#include <grub/mm_private.h>
#include <grub/misc.h>
2010-01-23 12:30:24 +00:00
#include <grub/cache.h>
2009-11-25 22:39:59 +00:00
2010-01-17 11:42:28 +00:00
struct grub_relocator
{
struct grub_relocator_chunk *chunks;
grub_addr_t postchunks;
grub_addr_t highestaddr;
grub_addr_t highestnonpostaddr;
grub_size_t relocators_size;
};
struct grub_relocator_subchunk
{
enum {CHUNK_TYPE_IN_REGION, CHUNK_TYPE_REGION_START,
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
CHUNK_TYPE_FIRMWARE
#endif
} type;
grub_addr_t host_start;
grub_addr_t start;
grub_size_t size;
2010-04-13 19:43:17 +00:00
struct grub_relocator_extra_block *extra;
};
2010-01-17 11:42:28 +00:00
struct grub_relocator_chunk
{
struct grub_relocator_chunk *next;
grub_addr_t src;
grub_addr_t target;
grub_size_t size;
struct grub_relocator_subchunk *subchunks;
unsigned nsubchunks;
2010-01-17 11:42:28 +00:00
};
2009-11-25 22:39:59 +00:00
struct grub_relocator_extra_block
{
struct grub_relocator_extra_block *next;
2010-04-13 19:43:17 +00:00
struct grub_relocator_extra_block **prev;
grub_addr_t start;
grub_addr_t end;
};
struct grub_relocator_extra_block *extra_blocks;
2010-01-09 23:30:33 +00:00
struct grub_relocator *
grub_relocator_new (void)
{
struct grub_relocator *ret;
2009-11-25 22:39:59 +00:00
2010-01-09 23:30:33 +00:00
grub_cpu_relocator_init ();
ret = grub_zalloc (sizeof (struct grub_relocator));
if (!ret)
return NULL;
ret->postchunks = ~(grub_addr_t) 0;
2010-01-11 12:43:31 +00:00
ret->relocators_size = grub_relocator_jumper_size;
2010-01-13 12:41:15 +00:00
grub_dprintf ("relocator", "relocators_size=%lu\n",
(unsigned long) ret->relocators_size);
2010-01-09 23:30:33 +00:00
return ret;
2009-11-25 22:39:59 +00:00
}
#define DIGITSORT_BITS 8
#define DIGITSORT_MASK ((1 << DIGITSORT_BITS) - 1)
#define BITS_IN_BYTE 8
2010-01-09 23:30:33 +00:00
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (((a) < (b)) ? (a) : (b))
2010-01-09 23:30:33 +00:00
static inline int
is_start (int type)
{
return !(type & 1) && (type != COLLISION_START);
}
2010-01-09 23:30:33 +00:00
static void
allocate_regstart (grub_addr_t addr, grub_size_t size, grub_mm_region_t rb,
grub_mm_region_t *regancestor, grub_mm_header_t hancestor)
{
grub_addr_t newreg_start, newreg_raw_start = addr + size;
grub_addr_t newreg_size, newreg_presize;
grub_mm_header_t new_header;
grub_mm_header_t hb = (grub_mm_header_t) (rb + 1);
2010-01-09 23:30:33 +00:00
grub_dprintf ("relocator", "ra = %p, rb = %p\n", regancestor, rb);
newreg_start = ALIGN_UP (newreg_raw_start, GRUB_MM_ALIGN);
newreg_presize = newreg_start - newreg_raw_start;
newreg_size = rb->size - (newreg_start - (grub_addr_t) rb);
if ((hb->size << GRUB_MM_ALIGN_LOG2) >= newreg_start
- (grub_addr_t) rb)
{
grub_mm_header_t newhnext = hb->next;
grub_size_t newhsize = ((hb->size << GRUB_MM_ALIGN_LOG2)
- (newreg_start
- (grub_addr_t) rb)) >> GRUB_MM_ALIGN_LOG2;
new_header = (void *) (newreg_start + sizeof (*rb));
if (newhnext == hb)
newhnext = new_header;
new_header->next = newhnext;
new_header->size = newhsize;
new_header->magic = GRUB_MM_FREE_MAGIC;
}
else
2010-01-09 23:30:33 +00:00
{
new_header = hb->next;
if (new_header == hb)
new_header = (void *) (newreg_start + sizeof (*rb));
}
{
struct grub_mm_header *newregfirst = rb->first;
struct grub_mm_region *newregnext = rb->next;
struct grub_mm_region *newreg = (void *) newreg_start;
hancestor->next = new_header;
if (newregfirst == hb)
newregfirst = new_header;
newreg->first = newregfirst;
newreg->next = newregnext;
newreg->pre_size = newreg_presize;
newreg->size = newreg_size;
*regancestor = newreg;
{
grub_mm_header_t h = newreg->first, hp = NULL;
do
{
if ((void *) h < (void *) (newreg + 1))
grub_fatal ("Failed to adjust memory region: %p, %p, %p, %p, %p",
newreg, newreg->first, h, hp, hb);
if ((void *) h == (void *) (newreg + 1))
grub_dprintf ("relocator",
"Free start memory region: %p, %p, %p, %p, %p",
newreg, newreg->first, h, hp, hb);
hp = h;
h = h->next;
}
while (h != newreg->first);
}
}
2010-01-10 14:06:17 +00:00
}
2010-01-15 10:34:22 +00:00
static void
allocate_inreg (grub_addr_t addr, grub_size_t size,
grub_mm_header_t hb, grub_mm_header_t hbp,
grub_mm_region_t rb)
{
struct grub_mm_header *foll = NULL;
if (ALIGN_UP (addr + size, GRUB_MM_ALIGN) + GRUB_MM_ALIGN
<= (grub_addr_t) (hb + hb->size))
{
foll = (void *) ALIGN_UP (addr + size, GRUB_MM_ALIGN);
foll->magic = GRUB_MM_FREE_MAGIC;
foll->size = hb->size - (foll - hb);
}
2010-01-10 14:06:17 +00:00
if (addr - (grub_addr_t) hb >= sizeof (*hb))
{
hb->size = ((addr - (grub_addr_t) hb) >> GRUB_MM_ALIGN_LOG2);
if (foll)
2010-01-10 14:06:17 +00:00
{
foll->next = hb;
hbp->next = foll;
if (rb->first == hb)
{
rb->first = foll;
}
2010-01-10 14:06:17 +00:00
}
2010-01-09 23:30:33 +00:00
}
else
{
if (foll)
{
foll->next = hb->next;
}
else
foll = hb->next;
hbp->next = foll;
if (rb->first == hb)
{
rb->first = foll;
}
if (rb->first == hb)
{
rb->first = (void *) (rb + 1);
}
}
}
static void
free_subchunk (const struct grub_relocator_subchunk *subchu)
{
switch (subchu->type)
{
case CHUNK_TYPE_REGION_START:
{
grub_mm_region_t r1, r2, *rp;
grub_mm_header_t h;
grub_size_t pre_size;
2010-04-13 19:43:17 +00:00
r1 = (grub_mm_region_t) ALIGN_UP (subchu->host_start, GRUB_MM_ALIGN);
r2 = (grub_mm_region_t) ALIGN_UP (subchu->start + subchu->size,
GRUB_MM_ALIGN);
for (rp = &grub_mm_base; *rp && *rp != r2; rp = &((*rp)->next));
pre_size = ALIGN_UP (subchu->host_start, GRUB_MM_ALIGN)
- subchu->host_start;
2010-04-13 19:43:17 +00:00
if (*rp)
{
grub_mm_header_t h2, *hp;
r1->first = r2->first;
r1->next = r2->next;
r1->pre_size = pre_size;
r1->size = r2->size + (r2 - r1) * sizeof (*r2);
*rp = r1;
h = (grub_mm_header_t) (r1 + 1);
h->next = r2->first;
h->magic = GRUB_MM_FREE_MAGIC;
h->size = (r2 - r1 - 1);
for (hp = &r2->first, h2 = *hp; h2->next != r2->first;
hp = &(h2->next), h2 = *hp)
if (h2 == (grub_mm_header_t) (r2 + 1))
break;
if (h2 == (grub_mm_header_t) (r2 + 1))
{
h->size = h2->size + (h2 - h);
h->next = h2->next;
*hp = h;
if (hp == &r2->first)
{
for (h2 = r2->first; h2->next != r2->first; h2 = h2->next);
h2->next = h;
}
}
else
{
h2->next = h;
}
}
else
{
r1->pre_size = pre_size;
r1->size = (r2 - r1) * sizeof (*r2);
/* Find where to insert this region.
Put a smaller one before bigger ones,
to prevent fragmentation. */
for (rp = &grub_mm_base; *rp; rp = &((*rp)->next))
if ((*rp)->size > r1->size)
break;
r1->next = *rp;
*rp = r1->next;
h = (grub_mm_header_t) (r1 + 1);
r1->first = h;
h->next = h;
h->magic = GRUB_MM_FREE_MAGIC;
h->size = (r2 - r1 - 1);
}
for (r2 = grub_mm_base; r2; r2 = r2->next)
if ((grub_addr_t) r2 + r2->size == (grub_addr_t) r1)
break;
if (r2)
{
grub_mm_header_t hl2, hl, g;
g = (grub_mm_header_t) ((grub_addr_t) r2 + r2->size);
g->size = (grub_mm_header_t) r1 - g;
r2->size += r1->size;
for (hl = r2->first; hl->next != r2->first; hl = hl->next);
for (hl2 = r1->first; hl2->next != r1->first; hl2 = hl2->next);
hl2->next = r2->first;
r2->first = r1->first;
hl->next = r2->first;
*rp = (*rp)->next;
grub_free (g + 1);
}
break;
}
case CHUNK_TYPE_IN_REGION:
{
grub_mm_header_t h = (grub_mm_header_t) ALIGN_DOWN (subchu->start,
GRUB_MM_ALIGN);
2010-04-13 19:43:17 +00:00
h->size
= ((subchu->start + subchu->size + GRUB_MM_ALIGN - 1) / GRUB_MM_ALIGN)
- (subchu->start / GRUB_MM_ALIGN);
h->next = h;
h->magic = GRUB_MM_ALLOC_MAGIC;
grub_free (h + 1);
break;
}
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
case CHUNK_TYPE_FIRMWARE:
grub_relocator_firmware_free_region (subchu->start, subchu->size);
2010-04-13 19:43:17 +00:00
*curschu->extra->prev = curschu->extra->next;
grub_free (curschu->extra);
break;
#endif
2010-04-13 19:43:17 +00:00
}
2010-01-09 23:30:33 +00:00
}
2009-11-25 22:39:59 +00:00
2010-01-09 23:30:33 +00:00
static int
malloc_in_range (struct grub_relocator *rel,
grub_addr_t start, grub_addr_t end, grub_addr_t align,
2010-01-23 13:30:06 +00:00
grub_size_t size, struct grub_relocator_chunk *res,
int from_low_priv, int collisioncheck)
2010-01-09 23:30:33 +00:00
{
grub_mm_region_t r, *ra, base_saved;
struct grub_relocator_mmap_event *events = NULL, *eventt = NULL, *t;
unsigned maxevents = 2;
grub_mm_header_t p, pa;
unsigned *counter;
int nallocs = 0;
unsigned i, j, N = 0;
grub_addr_t target = 0;
grub_dprintf ("relocator",
2010-04-03 20:55:57 +00:00
"trying to allocate in 0x%lx-0x%lx aligned 0x%lx size 0x%lx\n",
(unsigned long) start, (unsigned long) end,
(unsigned long) align, (unsigned long) size);
start = ALIGN_UP (start, align);
end = ALIGN_DOWN (end - size, align) + size;
2009-11-25 22:39:59 +00:00
if (end < start + size)
return 0;
/* We have to avoid any allocations when filling scanline events.
Hence 2-stages.
*/
for (r = grub_mm_base; r; r = r->next)
2010-01-11 12:43:31 +00:00
{
p = r->first;
do
{
maxevents += 2;
p = p->next;
}
while (p != r->first);
maxevents += 4;
}
if (collisioncheck && rel)
{
struct grub_relocator_chunk *chunk;
for (chunk = rel->chunks; chunk; chunk = chunk->next)
maxevents += 2;
2010-01-11 12:43:31 +00:00
}
2009-11-25 22:39:59 +00:00
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
{
struct grub_relocator_extra_block *cur;
for (cur = extra_blocks; cur; cur = cur->next)
maxevents += 2;
}
maxevents += grub_relocator_firmware_get_max_events ();
2010-04-03 15:47:59 +00:00
#endif
events = grub_malloc (maxevents * sizeof (events[0]));
eventt = grub_malloc (maxevents * sizeof (events[0]));
counter = grub_malloc ((DIGITSORT_MASK + 2) * sizeof (counter[0]));
if (!events || !eventt || !counter)
{
grub_dprintf ("relocator", "events or counter allocation failed %d\n",
maxevents);
grub_free (events);
grub_free (eventt);
grub_free (counter);
return 0;
}
2010-01-10 14:06:17 +00:00
if (collisioncheck && rel)
2010-01-09 23:30:33 +00:00
{
struct grub_relocator_chunk *chunk;
for (chunk = rel->chunks; chunk; chunk = chunk->next)
{
events[N].type = COLLISION_START;
events[N].pos = chunk->target;
N++;
events[N].type = COLLISION_END;
events[N].pos = chunk->target + chunk->size;
N++;
}
2010-01-09 23:30:33 +00:00
}
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
for (r = grub_mm_base; r; r = r->next)
{
grub_dprintf ("relocator", "Blocking at 0x%x-0x%x\n",
(grub_addr_t) r - r->pre_size,
(grub_addr_t) (r + 1) + r->size);
events[N].type = FIRMWARE_BLOCK_START;
events[N].pos = (grub_addr_t) r - r->pre_size;
N++;
events[N].type = FIRMWARE_BLOCK_END;
events[N].pos = (grub_addr_t) (r + 1) + r->size;
N++;
}
{
struct grub_relocator_extra_block *cur;
for (cur = extra_blocks; cur; cur = cur->next)
{
grub_dprintf ("relocator", "Blocking at 0x%x-0x%x\n",
cur->start, cur->end);
events[N].type = FIRMWARE_BLOCK_START;
events[N].pos = cur->start;
N++;
events[N].type = FIRMWARE_BLOCK_END;
events[N].pos = cur->end;
N++;
}
}
#endif
/* No malloc from this point. */
base_saved = grub_mm_base;
grub_mm_base = NULL;
for (ra = &base_saved, r = *ra; r; ra = &(r->next), r = *ra)
2010-01-09 23:30:33 +00:00
{
int pre_added = 0;
pa = r->first;
p = pa->next;
do
{
if (p == (grub_mm_header_t) (r + 1))
{
pre_added = 1;
events[N].type = REG_BEG_START;
events[N].pos = (grub_addr_t) r - r->pre_size;
events[N].reg = r;
events[N].regancestor = ra;
events[N].head = p;
events[N].hancestor = pa;
N++;
events[N].type = REG_BEG_END;
events[N].pos = (grub_addr_t) (p + p->size) - sizeof (*r);
N++;
}
else
{
events[N].type = IN_REG_START;
events[N].pos = (grub_addr_t) p;
events[N].head = p;
events[N].hancestor = pa;
events[N].reg = r;
N++;
events[N].type = IN_REG_END;
events[N].pos = (grub_addr_t) (p + p->size);
N++;
}
pa = p;
p = pa->next;
}
while (pa != r->first);
}
2010-04-03 15:47:59 +00:00
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
N += grub_relocator_firmware_fill_events (events + N);
2010-04-03 15:47:59 +00:00
#endif
/* Put ending events after starting events. */
{
int st = 0, e = N / 2;
for (j = 0; j < N; j++)
if (is_start (events[j].type) || events[j].type == COLLISION_START)
eventt[st++] = events[j];
2010-01-09 23:30:33 +00:00
else
eventt[e++] = events[j];
t = eventt;
eventt = events;
events = t;
}
for (i = 0; i < (BITS_IN_BYTE * sizeof (grub_addr_t) / DIGITSORT_BITS);
i++)
{
memset (counter, 0, (1 + (1 << DIGITSORT_BITS)) * sizeof (counter[0]));
for (j = 0; j < N; j++)
counter[((events[j].pos >> (DIGITSORT_BITS * i))
& DIGITSORT_MASK) + 1]++;
for (j = 0; j <= DIGITSORT_MASK; j++)
counter[j+1] += counter[j];
for (j = 0; j < N; j++)
eventt[counter[((events[j].pos >> (DIGITSORT_BITS * i))
& DIGITSORT_MASK)]++] = events[j];
t = eventt;
eventt = events;
events = t;
}
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
retry:
#endif
/* Now events are nicely sorted. */
{
int nstarted = 0, ncollisions = 0, nstartedfw = 0, nblockfw = 0;
grub_addr_t starta = 0;
int numstarted;
for (j = from_low_priv ? 0 : N - 1; from_low_priv ? j < N : (j + 1);
from_low_priv ? j++ : j--)
{
int isinsidebefore, isinsideafter;
isinsidebefore = (!ncollisions
&& (nstarted || (nstartedfw && !nblockfw)));
switch (events[j].type)
{
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
case REG_FIRMWARE_START:
nstartedfw++;
break;
case REG_FIRMWARE_END:
nstartedfw--;
break;
case FIRMWARE_BLOCK_START:
nblockfw++;
break;
case FIRMWARE_BLOCK_END:
nblockfw--;
break;
#endif
case COLLISION_START:
ncollisions++;
break;
case COLLISION_END:
ncollisions--;
break;
case IN_REG_START:
case REG_BEG_START:
nstarted++;
break;
case IN_REG_END:
case REG_BEG_END:
nstarted--;
break;
}
isinsideafter = (!ncollisions
&& (nstarted || (nstartedfw && !nblockfw)));
if (!isinsidebefore && isinsideafter)
{
starta = from_low_priv ? ALIGN_UP (events[j].pos, align)
: ALIGN_DOWN (events[j].pos - size, align) + size;
numstarted = j;
}
if (isinsidebefore && !isinsideafter && from_low_priv)
{
target = starta;
if (target < start)
target = start;
if (target + size <= end && target + size <= events[j].pos)
/* Found an usable address. */
goto found;
}
if (isinsidebefore && !isinsideafter && !from_low_priv)
{
target = starta - size;
if (target > end - size)
target = end - size;
if (target >= start && target >= events[j].pos)
goto found;
}
}
}
2010-01-23 13:30:06 +00:00
grub_mm_base = base_saved;
grub_free (events);
grub_free (eventt);
grub_free (counter);
return 0;
2009-11-25 22:39:59 +00:00
found:
{
2010-04-03 15:47:59 +00:00
int inreg = 0, regbeg = 0, ncol = 0;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
int fwin = 0, fwb = 0;
#endif
int last_start = 0;
for (j = 0; j < N; j++)
2010-01-09 23:30:33 +00:00
{
int typepre;
if (ncol)
typepre = -1;
else if (regbeg)
typepre = CHUNK_TYPE_REGION_START;
else if (inreg)
typepre = CHUNK_TYPE_IN_REGION;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
else if (fwin && !fwb)
typepre = CHUNK_TYPE_FIRMWARE;
#endif
else
typepre = -1;
if (j != 0 && events[j - 1].pos != events[j].pos)
2010-01-09 23:30:33 +00:00
{
grub_addr_t alloc_start, alloc_end;
alloc_start = max (events[j - 1].pos, target);
alloc_end = min (events[j].pos, target + size);
if (alloc_end > alloc_start)
{
switch (typepre)
{
case CHUNK_TYPE_REGION_START:
allocate_regstart (alloc_start, alloc_end - alloc_start,
events[last_start].reg,
events[last_start].regancestor,
events[last_start].hancestor);
2010-04-12 10:40:09 +00:00
/* TODO: maintain a reverse lookup tree for hancestor. */
{
unsigned k;
for (k = 0; k < N; k++)
if (events[k].hancestor == events[last_start].head)
events[k].hancestor = events[last_start].hancestor;
}
break;
case CHUNK_TYPE_IN_REGION:
allocate_inreg (alloc_start, alloc_end - alloc_start,
events[last_start].head,
events[last_start].hancestor,
events[last_start].reg);
{
unsigned k;
for (k = 0; k < N; k++)
if (events[k].hancestor == events[last_start].head)
events[k].hancestor = events[last_start].hancestor;
}
break;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
case CHUNK_TYPE_FIRMWARE:
/* The failure here can be very expensive. */
if (!grub_relocator_firmware_alloc_region (alloc_start,
alloc_end - alloc_start))
{
if (from_low_priv)
start = alloc_end;
else
end = alloc_start;
goto retry;
}
break;
#endif
}
nallocs++;
}
2010-01-09 23:30:33 +00:00
}
switch (events[j].type)
{
case REG_BEG_START:
case IN_REG_START:
if (events[j].type == REG_BEG_START &&
(grub_addr_t) (events[j].reg + 1) > target)
regbeg++;
else
inreg++;
last_start = j;
break;
case REG_BEG_END:
case IN_REG_END:
if (regbeg)
regbeg--;
else
inreg--;
break;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
case REG_FIRMWARE_START:
fwin++;
break;
case REG_FIRMWARE_END:
fwin--;
break;
case FIRMWARE_BLOCK_START:
fwb++;
break;
case FIRMWARE_BLOCK_END:
fwb--;
break;
#endif
case COLLISION_START:
ncol++;
break;
case COLLISION_END:
ncol--;
break;
}
2010-01-09 23:30:33 +00:00
}
}
grub_memset ((void *) target, 0, size);
grub_dprintf ("relocator", "baseptr = %p\n", &base_saved);
for (r = base_saved; r; r = r->next)
{
p = r->first;
do
{
if (!p)
grub_fatal ("null in the ring %p\n", r);
p = p->next;
}
while (p != r->first);
}
/* Malloc is available again. */
grub_mm_base = base_saved;
{
int last_start = 0;
2010-04-03 15:47:59 +00:00
int inreg = 0, regbeg = 0, ncol = 0;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
int fwin = 0, fwb = 0;
#endif
unsigned cural = 0;
int oom = 0;
res->subchunks = grub_malloc (sizeof (res->subchunks[0]) * nallocs);
if (!res->subchunks)
oom = 1;
res->nsubchunks = nallocs;
for (j = 0; j < N; j++)
2010-01-09 23:30:33 +00:00
{
int typepre;
if (ncol)
typepre = -1;
else if (regbeg)
typepre = CHUNK_TYPE_REGION_START;
else if (inreg)
typepre = CHUNK_TYPE_IN_REGION;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
else if (fwin && !fwb)
typepre = CHUNK_TYPE_FIRMWARE;
#endif
else
typepre = -1;
if (j != 0 && events[j - 1].pos != events[j].pos)
{
grub_addr_t alloc_start, alloc_end;
struct grub_relocator_subchunk tofree;
struct grub_relocator_subchunk *curschu = &tofree;
if (!oom)
curschu = &res->subchunks[cural];
alloc_start = max (events[j - 1].pos, target);
alloc_end = min (events[j].pos, target + size);
if (alloc_end > alloc_start)
{
2010-04-03 20:55:57 +00:00
grub_dprintf ("relocator", "subchunk 0x%lx-0x%lx, %d\n",
(unsigned long) alloc_start,
(unsigned long) alloc_end, typepre);
curschu->type = typepre;
2010-04-13 19:43:17 +00:00
curschu->start = alloc_start;
curschu->size = alloc_end - alloc_start;
if (typepre == CHUNK_TYPE_REGION_START)
curschu->host_start = (grub_addr_t) events[last_start].reg;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
if (!oom && (typepre == CHUNK_TYPE_REGION_START
|| typepre == CHUNK_TYPE_FIRMWARE))
{
struct grub_relocator_extra_block *ne;
ne = grub_malloc (sizeof (*ne));
if (!ne)
{
oom = 1;
grub_memcpy (&tofree, curschu, sizeof (tofree));
}
else
{
ne->start = alloc_start;
ne->end = alloc_end;
ne->next = extra_blocks;
2010-04-13 19:43:17 +00:00
ne->prev = &extra_blocks;
extra_blocks->prev = &(ne->next);
extra_blocks = ne;
2010-04-13 19:43:17 +00:00
curschu->extra = ne;
}
}
#endif
if (!oom)
cural++;
else
free_subchunk (&tofree);
}
}
switch (events[j].type)
{
case REG_BEG_START:
case IN_REG_START:
if (events[j].type == REG_BEG_START &&
(grub_addr_t) (events[j].reg + 1) > target)
regbeg++;
else
inreg++;
last_start = j;
break;
case REG_BEG_END:
case IN_REG_END:
inreg = regbeg = 0;
break;
#if GRUB_RELOCATOR_HAVE_FIRMWARE_REQUESTS
case REG_FIRMWARE_START:
fwin++;
break;
case REG_FIRMWARE_END:
fwin--;
break;
case FIRMWARE_BLOCK_START:
fwb++;
break;
case FIRMWARE_BLOCK_END:
fwb--;
break;
#endif
case COLLISION_START:
ncol++;
break;
case COLLISION_END:
ncol--;
break;
}
}
if (oom)
{
for (i = 0; i < cural; i++)
free_subchunk (&res->subchunks[i]);
grub_free (res->subchunks);
grub_dprintf ("relocator", "allocation failed with out-of-memory\n");
return 0;
2010-01-09 23:30:33 +00:00
}
}
res->src = target;
res->size = size;
2010-04-03 20:55:57 +00:00
grub_dprintf ("relocator", "allocated: 0x%lx+0x%lx\n", (unsigned long) target,
(unsigned long) size);
return 1;
2009-11-25 22:39:59 +00:00
}
2010-01-11 21:54:20 +00:00
static void
adjust_limits (struct grub_relocator *rel,
grub_addr_t *min_addr, grub_addr_t *max_addr,
grub_addr_t in_min, grub_addr_t in_max)
2009-11-25 22:39:59 +00:00
{
2010-01-09 23:30:33 +00:00
struct grub_relocator_chunk *chunk;
2010-01-11 21:54:20 +00:00
*min_addr = 0;
*max_addr = rel->postchunks;
2010-01-09 23:30:33 +00:00
/* Keep chunks in memory in the same order as they'll be after relocation. */
for (chunk = rel->chunks; chunk; chunk = chunk->next)
{
2010-01-11 21:54:20 +00:00
if (chunk->target > in_max && chunk->src < *max_addr
2010-01-11 13:59:01 +00:00
&& chunk->src < rel->postchunks)
2010-01-11 21:54:20 +00:00
*max_addr = chunk->src;
if (chunk->target + chunk->size <= in_min
&& chunk->src + chunk->size > *min_addr
2010-01-09 23:30:33 +00:00
&& chunk->src < rel->postchunks)
2010-01-11 21:54:20 +00:00
*min_addr = chunk->src + chunk->size;
2010-01-09 23:30:33 +00:00
}
2010-01-11 21:54:20 +00:00
}
grub_err_t
grub_relocator_alloc_chunk_addr (struct grub_relocator *rel, void **src,
grub_addr_t target, grub_size_t size)
{
struct grub_relocator_chunk *chunk;
grub_addr_t min_addr = 0, max_addr;
if (target > ~size)
return grub_error (GRUB_ERR_OUT_OF_RANGE, "address is out of range");
2010-01-11 21:54:20 +00:00
adjust_limits (rel, &min_addr, &max_addr, target, target);
for (chunk = rel->chunks; chunk; chunk = chunk->next)
if ((chunk->target <= target && target < chunk->target + chunk->size)
|| (target <= chunk->target && chunk->target < target + size))
return grub_error (GRUB_ERR_BAD_ARGUMENT, "overlap detected");
2010-01-09 23:30:33 +00:00
chunk = grub_malloc (sizeof (struct grub_relocator_chunk));
if (!chunk)
return grub_errno;
grub_dprintf ("relocator",
"min_addr = 0x%llx, max_addr = 0x%llx, target = 0x%llx\n",
(unsigned long long) min_addr, (unsigned long long) max_addr,
(unsigned long long) target);
2010-01-10 14:06:17 +00:00
2010-01-09 23:30:33 +00:00
do
{
/* A trick to improve Linux allocation. */
#if defined (__i386__) || defined (__x86_64__)
if (target < 0x100000)
2010-01-11 13:59:01 +00:00
if (malloc_in_range (rel, rel->highestnonpostaddr, ~(grub_addr_t)0, 1,
2010-01-23 13:30:06 +00:00
size, chunk, 0, 1))
2010-01-09 23:30:33 +00:00
{
2010-01-23 13:30:06 +00:00
if (rel->postchunks > chunk->src)
rel->postchunks = chunk->src;
2010-01-09 23:30:33 +00:00
break;
}
#endif
2010-01-23 13:30:06 +00:00
if (malloc_in_range (rel, target, max_addr, 1, size, chunk, 1, 0))
2010-01-09 23:30:33 +00:00
break;
2010-01-23 13:30:06 +00:00
if (malloc_in_range (rel, min_addr, target, 1, size, chunk, 0, 0))
2010-01-09 23:30:33 +00:00
break;
2010-01-11 21:54:20 +00:00
if (malloc_in_range (rel, rel->highestnonpostaddr, ~(grub_addr_t)0, 1,
2010-01-23 13:30:06 +00:00
size, chunk, 0, 1))
2010-01-11 21:54:20 +00:00
{
2010-01-23 13:30:06 +00:00
if (rel->postchunks > chunk->src)
rel->postchunks = chunk->src;
2010-01-11 21:54:20 +00:00
break;
}
2010-01-11 12:43:31 +00:00
grub_dprintf ("relocator", "not allocated\n");
2010-01-09 23:30:33 +00:00
grub_free (chunk);
return grub_error (GRUB_ERR_OUT_OF_MEMORY, "out of memory");
}
while (0);
2010-01-10 14:06:17 +00:00
grub_dprintf ("relocator", "allocated 0x%llx/0x%llx\n",
2010-01-23 13:30:06 +00:00
(unsigned long long) chunk->src, (unsigned long long) target);
2010-01-10 14:06:17 +00:00
2010-01-09 23:30:33 +00:00
if (rel->highestaddr < target + size)
rel->highestaddr = target + size;
2010-01-23 13:30:06 +00:00
if (rel->highestaddr < chunk->src + size)
rel->highestaddr = chunk->src + size;
2010-01-09 23:30:33 +00:00
2010-01-23 13:30:06 +00:00
if (chunk->src < rel->postchunks)
2010-01-09 23:30:33 +00:00
{
if (rel->highestnonpostaddr < target + size)
rel->highestnonpostaddr = target + size;
2010-01-23 13:30:06 +00:00
if (rel->highestnonpostaddr < chunk->src + size)
rel->highestnonpostaddr = chunk->src + size;
2010-01-09 23:30:33 +00:00
}
2010-01-13 12:41:15 +00:00
grub_dprintf ("relocator", "relocators_size=%ld\n",
(unsigned long) rel->relocators_size);
2010-01-11 12:43:31 +00:00
2010-01-23 13:30:06 +00:00
if (chunk->src < target)
2010-01-09 23:30:33 +00:00
rel->relocators_size += grub_relocator_backward_size;
2010-01-23 13:30:06 +00:00
if (chunk->src > target)
2010-01-09 23:30:33 +00:00
rel->relocators_size += grub_relocator_forward_size;
2010-01-13 12:41:15 +00:00
grub_dprintf ("relocator", "relocators_size=%ld\n",
(unsigned long) rel->relocators_size);
2010-01-11 12:43:31 +00:00
2010-01-09 23:30:33 +00:00
chunk->target = target;
chunk->size = size;
chunk->next = rel->chunks;
rel->chunks = chunk;
2010-01-11 21:54:20 +00:00
grub_dprintf ("relocator", "cur = %p, next = %p\n", rel->chunks,
rel->chunks->next);
2010-01-23 13:30:06 +00:00
*src = (void *) chunk->src;
2010-01-09 23:30:33 +00:00
return GRUB_ERR_NONE;
2009-11-25 22:39:59 +00:00
}
grub_err_t
2010-01-09 23:30:33 +00:00
grub_relocator_alloc_chunk_align (struct grub_relocator *rel, void **src,
grub_addr_t *target,
grub_addr_t min_addr, grub_addr_t max_addr,
grub_size_t size, grub_size_t align,
int preference)
2009-11-25 22:39:59 +00:00
{
2010-01-09 23:30:33 +00:00
grub_addr_t min_addr2 = 0, max_addr2;
struct grub_relocator_chunk *chunk;
if (max_addr > ~size)
max_addr = ~size;
#ifdef GRUB_MACHINE_PCBIOS
if (min_addr < 0x1000)
min_addr = 0x1000;
#endif
2010-01-11 21:54:20 +00:00
grub_dprintf ("relocator", "chunks = %p\n", rel->chunks);
2010-01-09 23:30:33 +00:00
chunk = grub_malloc (sizeof (struct grub_relocator_chunk));
if (!chunk)
return grub_errno;
if (malloc_in_range (rel, min_addr, max_addr, align,
2010-01-23 13:30:06 +00:00
size, chunk,
preference != GRUB_RELOCATOR_PREFERENCE_HIGH, 1))
2010-01-09 23:30:33 +00:00
{
2010-01-11 12:43:31 +00:00
grub_dprintf ("relocator", "allocated 0x%llx/0x%llx\n",
2010-01-23 13:30:06 +00:00
(unsigned long long) chunk->src,
(unsigned long long) chunk->src);
2010-01-11 21:54:20 +00:00
grub_dprintf ("relocator", "chunks = %p\n", rel->chunks);
2010-01-23 13:30:06 +00:00
chunk->target = chunk->src;
2010-01-09 23:30:33 +00:00
chunk->size = size;
chunk->next = rel->chunks;
rel->chunks = chunk;
2010-01-23 13:30:06 +00:00
*src = (void *) chunk->src;
*target = chunk->target;
2010-01-09 23:30:33 +00:00
return GRUB_ERR_NONE;
}
2010-01-11 21:54:20 +00:00
adjust_limits (rel, &min_addr2, &max_addr2, min_addr, max_addr);
2010-01-12 22:30:52 +00:00
grub_dprintf ("relocator", "Adjusted limits from %lx-%lx to %lx-%lx\n",
2010-01-13 12:41:15 +00:00
(unsigned long) min_addr, (unsigned long) max_addr,
(unsigned long) min_addr2, (unsigned long) max_addr2);
2010-01-11 21:54:20 +00:00
do
2009-11-25 22:39:59 +00:00
{
2010-01-11 21:54:20 +00:00
if (malloc_in_range (rel, min_addr2, max_addr2, align,
2010-01-23 13:30:06 +00:00
size, chunk, 1, 1))
2010-01-11 21:54:20 +00:00
break;
if (malloc_in_range (rel, rel->highestnonpostaddr, ~(grub_addr_t)0, 1,
2010-01-23 13:30:06 +00:00
size, chunk, 0, 1))
2010-01-11 21:54:20 +00:00
{
2010-01-23 13:30:06 +00:00
if (rel->postchunks > chunk->src)
rel->postchunks = chunk->src;
2010-01-11 21:54:20 +00:00
break;
}
2010-01-09 23:30:33 +00:00
return grub_error (GRUB_ERR_OUT_OF_MEMORY, "out of memory");
2009-11-25 22:39:59 +00:00
}
2010-01-11 21:54:20 +00:00
while (0);
2010-01-10 14:06:17 +00:00
/* FIXME: check memory map. */
if (preference == GRUB_RELOCATOR_PREFERENCE_HIGH)
chunk->target = ALIGN_DOWN (max_addr, align);
else
chunk->target = ALIGN_UP (min_addr, align);
2010-01-09 23:30:33 +00:00
while (1)
2009-11-25 22:39:59 +00:00
{
2010-01-09 23:30:33 +00:00
struct grub_relocator_chunk *chunk2;
for (chunk2 = rel->chunks; chunk2; chunk2 = chunk2->next)
if ((chunk2->target <= chunk->target
&& chunk->target < chunk2->target + chunk2->size)
|| (chunk2->target <= chunk->target + size
&& chunk->target + size < chunk2->target + chunk2->size)
|| (chunk->target <= chunk2->target && chunk2->target
< chunk->target + size)
|| (chunk->target <= chunk2->target + chunk2->size
&& chunk2->target + chunk2->size < chunk->target + size))
{
if (preference == GRUB_RELOCATOR_PREFERENCE_HIGH)
chunk->target = ALIGN_DOWN (chunk2->target, align);
else
chunk->target = ALIGN_UP (chunk2->target + chunk2->size, align);
2010-01-09 23:30:33 +00:00
break;
}
if (!chunk2)
break;
2009-11-25 22:39:59 +00:00
}
2010-01-23 13:30:06 +00:00
if (chunk->src < chunk->target)
2010-01-09 23:30:33 +00:00
rel->relocators_size += grub_relocator_backward_size;
2010-01-23 13:30:06 +00:00
if (chunk->src > chunk->target)
2010-01-09 23:30:33 +00:00
rel->relocators_size += grub_relocator_forward_size;
chunk->size = size;
chunk->next = rel->chunks;
rel->chunks = chunk;
2010-01-11 21:54:20 +00:00
grub_dprintf ("relocator", "cur = %p, next = %p\n", rel->chunks,
rel->chunks->next);
2010-01-23 13:30:06 +00:00
*src = (void *) chunk->src;
2010-01-09 23:30:33 +00:00
*target = chunk->target;
return GRUB_ERR_NONE;
}
void
grub_relocator_unload (struct grub_relocator *rel)
{
struct grub_relocator_chunk *chunk, *next;
2010-01-10 14:06:17 +00:00
if (!rel)
return;
2010-01-09 23:30:33 +00:00
for (chunk = rel->chunks; chunk; chunk = next)
{
unsigned i;
for (i = 0; i < chunk->nsubchunks; i++)
free_subchunk (&chunk->subchunks[i]);
2010-01-09 23:30:33 +00:00
next = chunk->next;
grub_free (chunk->subchunks);
2010-01-09 23:30:33 +00:00
grub_free (chunk);
}
2010-04-13 19:43:17 +00:00
grub_free (rel);
2010-01-09 23:30:33 +00:00
}
grub_err_t
grub_relocator_prepare_relocs (struct grub_relocator *rel, grub_addr_t addr,
2010-01-23 12:30:24 +00:00
grub_addr_t *relstart, grub_size_t *relsize)
2010-01-09 23:30:33 +00:00
{
grub_addr_t rels;
grub_addr_t rels0;
2010-01-17 11:42:28 +00:00
struct grub_relocator_chunk *sorted;
grub_size_t nchunks = 0;
unsigned j;
2010-01-23 13:30:06 +00:00
struct grub_relocator_chunk movers_chunk;
2010-01-09 23:30:33 +00:00
2010-01-12 22:30:52 +00:00
grub_dprintf ("relocator", "Preparing relocs (size=%ld)\n",
2010-01-13 12:41:15 +00:00
(unsigned long) rel->relocators_size);
2010-01-11 12:43:31 +00:00
if (!malloc_in_range (rel, 0, ~(grub_addr_t)0 - rel->relocators_size + 1,
grub_relocator_align,
2010-01-23 13:30:06 +00:00
rel->relocators_size, &movers_chunk, 1, 1))
2010-01-09 23:30:33 +00:00
return grub_error (GRUB_ERR_OUT_OF_MEMORY, "out of memory");
2010-01-23 13:30:06 +00:00
rels = rels0 = movers_chunk.src;
2010-01-09 23:30:33 +00:00
2010-01-23 12:30:24 +00:00
if (relsize)
*relsize = rel->relocators_size;
2010-01-11 12:43:31 +00:00
grub_dprintf ("relocator", "Relocs allocated\n");
2010-01-17 11:42:28 +00:00
{
unsigned i;
grub_size_t count[257];
struct grub_relocator_chunk *from, *to, *tmp;
2010-01-11 12:43:31 +00:00
2010-01-17 11:42:28 +00:00
grub_memset (count, 0, sizeof (count));
{
struct grub_relocator_chunk *chunk;
for (chunk = rel->chunks; chunk; chunk = chunk->next)
{
2010-01-18 11:01:13 +00:00
grub_dprintf ("relocator", "chunk %p->%p, 0x%lx\n",
2010-01-17 11:42:28 +00:00
(void *) chunk->src, (void *) chunk->target,
2010-01-18 11:01:13 +00:00
(unsigned long) chunk->size);
2010-01-17 11:42:28 +00:00
nchunks++;
count[(chunk->src & 0xff) + 1]++;
}
}
from = grub_malloc (nchunks * sizeof (sorted[0]));
to = grub_malloc (nchunks * sizeof (sorted[0]));
if (!from || !to)
{
grub_free (from);
grub_free (to);
return grub_errno;
}
for (j = 0; j < 256; j++)
count[j+1] += count[j];
{
struct grub_relocator_chunk *chunk;
for (chunk = rel->chunks; chunk; chunk = chunk->next)
from[count[chunk->src & 0xff]++] = *chunk;
}
for (i = 1; i < GRUB_CPU_SIZEOF_VOID_P; i++)
{
grub_memset (count, 0, sizeof (count));
for (j = 0; j < nchunks; j++)
count[((from[j].src >> (8 * i)) & 0xff) + 1]++;
for (j = 0; j < 256; j++)
count[j+1] += count[j];
for (j = 0; j < nchunks; j++)
to[count[(from[j].src >> (8 * i)) & 0xff]++] = from[j];
tmp = to;
to = from;
from = tmp;
}
sorted = from;
grub_free (to);
}
for (j = 0; j < nchunks; j++)
2010-01-09 23:30:33 +00:00
{
2010-01-18 11:01:13 +00:00
grub_dprintf ("relocator", "sorted chunk %p->%p, 0x%lx\n",
2010-01-17 11:42:28 +00:00
(void *) sorted[j].src, (void *) sorted[j].target,
2010-01-18 11:01:13 +00:00
(unsigned long) sorted[j].size);
2010-01-17 11:42:28 +00:00
if (sorted[j].src < sorted[j].target)
2010-01-09 23:30:33 +00:00
{
grub_cpu_relocator_backward ((void *) rels,
2010-01-17 11:42:28 +00:00
(void *) sorted[j].src,
(void *) sorted[j].target,
sorted[j].size);
2010-01-09 23:30:33 +00:00
rels += grub_relocator_backward_size;
}
2010-01-17 11:42:28 +00:00
if (sorted[j].src > sorted[j].target)
2010-01-09 23:30:33 +00:00
{
grub_cpu_relocator_forward ((void *) rels,
2010-01-17 11:42:28 +00:00
(void *) sorted[j].src,
(void *) sorted[j].target,
sorted[j].size);
2010-01-09 23:30:33 +00:00
rels += grub_relocator_forward_size;
}
2010-01-23 12:30:24 +00:00
if (sorted[j].src == sorted[j].target)
grub_arch_sync_caches ((void *) sorted[j].src, sorted[j].size);
2010-01-09 23:30:33 +00:00
}
grub_cpu_relocator_jumper ((void *) rels, addr);
*relstart = rels0;
2010-01-17 11:42:28 +00:00
grub_free (sorted);
2009-11-25 22:39:59 +00:00
return GRUB_ERR_NONE;
}