mirror of https://github.com/ipxe/ipxe.git
First version of an external memory allocator (not tested)
parent
1d313234b3
commit
45ec9c907e
|
@ -0,0 +1,159 @@
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2007 Michael Brown <mbrown@fensystems.co.uk>.
|
||||||
|
*
|
||||||
|
* This program 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 2 of the
|
||||||
|
* License, or any later version.
|
||||||
|
*
|
||||||
|
* This program 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 this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* External memory allocation
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gpxe/uaccess.h>
|
||||||
|
#include <gpxe/hidemem.h>
|
||||||
|
#include <gpxe/emalloc.h>
|
||||||
|
|
||||||
|
/** Equivalent of NOWHERE for user pointers */
|
||||||
|
#define UNOWHERE ( ~UNULL )
|
||||||
|
|
||||||
|
/** Top of allocatable memory */
|
||||||
|
#define TOP ( virt_to_user ( NULL ) )
|
||||||
|
|
||||||
|
/** An external memory block */
|
||||||
|
struct external_memory {
|
||||||
|
/** Size of this memory block (excluding this header) */
|
||||||
|
size_t size;
|
||||||
|
/** Block is currently in use */
|
||||||
|
int used;
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Current lowest allocated block
|
||||||
|
*
|
||||||
|
* A value of UNULL indicates that no blocks are currently allocated.
|
||||||
|
*/
|
||||||
|
userptr_t bottom = UNULL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Collect free blocks
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
static void ecollect_free ( void ) {
|
||||||
|
struct external_memory extmem;
|
||||||
|
|
||||||
|
/* Walk the free list and collect empty blocks */
|
||||||
|
while ( bottom != TOP ) {
|
||||||
|
copy_from_user ( &extmem, bottom, -sizeof ( extmem ),
|
||||||
|
sizeof ( extmem ) );
|
||||||
|
if ( extmem.used )
|
||||||
|
break;
|
||||||
|
DBG ( "EXTMEM freeing [%lx,%lx)\n", user_to_phys ( bottom, 0 ),
|
||||||
|
user_to_phys ( bottom, extmem.size ) );
|
||||||
|
bottom = userptr_add ( bottom,
|
||||||
|
( extmem.size + sizeof ( extmem ) ) );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reallocate external memory
|
||||||
|
*
|
||||||
|
* @v old_ptr Memory previously allocated by emalloc(), or UNULL
|
||||||
|
* @v new_size Requested size
|
||||||
|
* @ret new_ptr Allocated memory, or UNULL
|
||||||
|
*
|
||||||
|
* Calling realloc() with a new size of zero is a valid way to free a
|
||||||
|
* memory block.
|
||||||
|
*/
|
||||||
|
userptr_t erealloc ( userptr_t ptr, size_t new_size ) {
|
||||||
|
struct external_memory extmem;
|
||||||
|
userptr_t new = ptr;
|
||||||
|
|
||||||
|
/* Initialise external memory allocator if necessary */
|
||||||
|
if ( ! bottom )
|
||||||
|
bottom = TOP;
|
||||||
|
|
||||||
|
/* Get block properties into extmem */
|
||||||
|
if ( ptr && ( ptr != UNOWHERE ) ) {
|
||||||
|
/* Determine old size */
|
||||||
|
copy_from_user ( &extmem, ptr, -sizeof ( extmem ),
|
||||||
|
sizeof ( extmem ) );
|
||||||
|
} else {
|
||||||
|
/* Create a zero-length block */
|
||||||
|
ptr = bottom = userptr_add ( bottom, -sizeof ( extmem ) );
|
||||||
|
DBGC ( "EXTMEM allocating [%lx,%lx)\n",
|
||||||
|
user_to_phys ( ptr, 0 ), user_to_phys ( ptr, 0 ) );
|
||||||
|
extmem.size = 0;
|
||||||
|
}
|
||||||
|
extmem.used = ( new_size > 0 );
|
||||||
|
|
||||||
|
/* Expand/shrink block if possible */
|
||||||
|
if ( ptr == bottom ) {
|
||||||
|
/* Update block */
|
||||||
|
new = userptr_add ( ptr, - ( new_size - extmem.size ) );
|
||||||
|
DBG ( "EXTMEM expanding [%lx,%lx) to [%lx,%lx)\n",
|
||||||
|
user_to_phys ( ptr, 0 ),
|
||||||
|
user_to_phys ( ptr, extmem.size ),
|
||||||
|
user_to_phys ( new, 0 ),
|
||||||
|
user_to_phys ( new, new_size ));
|
||||||
|
memmove_user ( new, 0, ptr, 0, ( ( extmem.size < new_size ) ?
|
||||||
|
extmem.size : new_size ) );
|
||||||
|
extmem.size = new_size;
|
||||||
|
bottom = new;
|
||||||
|
} else {
|
||||||
|
/* Cannot expand; can only pretend to shrink */
|
||||||
|
if ( new_size > extmem.size ) {
|
||||||
|
/* Refuse to expand */
|
||||||
|
DBG ( "EXTMEM cannot expand [%lx,%lx)\n",
|
||||||
|
user_to_phys ( ptr, 0 ),
|
||||||
|
user_to_phys ( ptr, extmem.size ) );
|
||||||
|
return UNULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Write back block properties */
|
||||||
|
copy_to_user ( new, -sizeof ( extmem ), &extmem,
|
||||||
|
sizeof ( extmem ) );
|
||||||
|
|
||||||
|
/* Collect any free blocks and update hidden memory region */
|
||||||
|
ecollect_free();
|
||||||
|
hide_region ( EXTMEM, user_to_phys ( bottom, -sizeof ( extmem ) ),
|
||||||
|
user_to_phys ( TOP, 0 ) );
|
||||||
|
|
||||||
|
return ( new_size ? new : UNOWHERE );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allocate external memory
|
||||||
|
*
|
||||||
|
* @v size Requested size
|
||||||
|
* @ret ptr Memory, or UNULL
|
||||||
|
*
|
||||||
|
* Memory is guaranteed to be aligned to a page boundary.
|
||||||
|
*/
|
||||||
|
userptr_t emalloc ( size_t size ) {
|
||||||
|
return erealloc ( UNULL, size );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Free external memory
|
||||||
|
*
|
||||||
|
* @v ptr Memory allocated by emalloc(), or UNULL
|
||||||
|
*
|
||||||
|
* If @c ptr is UNULL, no action is taken.
|
||||||
|
*/
|
||||||
|
void efree ( userptr_t ptr ) {
|
||||||
|
erealloc ( ptr, 0 );
|
||||||
|
}
|
|
@ -0,0 +1,17 @@
|
||||||
|
#ifndef _GPXE_EMALLOC_H
|
||||||
|
#define _GPXE_EMALLOC_H
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* External memory allocation
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gpxe/uaccess.h>
|
||||||
|
|
||||||
|
extern userptr_t emalloc ( size_t size );
|
||||||
|
extern userptr_t erealloc ( userptr_t ptr, size_t new_size );
|
||||||
|
extern void efree ( userptr_t ptr );
|
||||||
|
|
||||||
|
#endif /* _GPXE_EMALLOC_H */
|
Loading…
Reference in New Issue