. new mode for sys_memset: include process so memset can be done in physical or virtual address space. . add a mode to mmap() that lets a process allocate uninitialized memory. . this allows an exec()er (RS, VFS, etc.) to request uninitialized memory from VM and selectively clear the ranges that don't come from a file, leaving no uninitialized memory left for the process to see. . use callbacks for clearing the process, clearing memory in the process, and copying into the process; so that the libexec code can be used from rs, vfs, and in the future, kernel (to load vm) and vm (to load boot-time processes)
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
#ifndef _REGION_H
 | 
						|
#define _REGION_H 1
 | 
						|
 | 
						|
#include <minix/callnr.h>
 | 
						|
#include <minix/com.h>
 | 
						|
#include <minix/config.h>
 | 
						|
#include <minix/const.h>
 | 
						|
#include <minix/ds.h>
 | 
						|
#include <minix/endpoint.h>
 | 
						|
#include <minix/keymap.h>
 | 
						|
#include <minix/minlib.h>
 | 
						|
#include <minix/type.h>
 | 
						|
#include <minix/ipc.h>
 | 
						|
#include <minix/sysutil.h>
 | 
						|
#include <minix/syslib.h>
 | 
						|
#include <minix/const.h>
 | 
						|
 | 
						|
#include "phys_region.h"
 | 
						|
#include "physravl.h"
 | 
						|
 | 
						|
struct phys_block {
 | 
						|
#if SANITYCHECKS
 | 
						|
	u32_t			seencount;
 | 
						|
#endif
 | 
						|
	vir_bytes		length;	/* no. of contiguous bytes */
 | 
						|
	phys_bytes		phys;	/* physical memory */
 | 
						|
	u8_t			refcount;	/* Refcount of these pages */
 | 
						|
#define PBSH_COW	1
 | 
						|
#define PBSH_SMAP	2
 | 
						|
	u8_t			share_flag;	/* PBSH_COW or PBSH_SMAP */
 | 
						|
 | 
						|
	/* first in list of phys_regions that reference this block */
 | 
						|
	struct phys_region	*firstregion;	
 | 
						|
};
 | 
						|
 | 
						|
typedef struct vir_region {
 | 
						|
	vir_bytes	vaddr;	/* virtual address, offset from pagetable */
 | 
						|
	vir_bytes	length;	/* length in bytes */
 | 
						|
	physr_avl	*phys;	/* avl tree of physical memory blocks */
 | 
						|
	u16_t		flags;
 | 
						|
	u32_t tag;		/* Opaque to mapping code. */
 | 
						|
	struct vmproc *parent;	/* Process that owns this vir_region. */
 | 
						|
 | 
						|
	/* AVL fields */
 | 
						|
	struct vir_region *lower, *higher;
 | 
						|
	int		factor;
 | 
						|
} region_t;
 | 
						|
 | 
						|
/* Mapping flags: */
 | 
						|
#define VR_WRITABLE	0x001	/* Process may write here. */
 | 
						|
#define VR_NOPF		0x002	/* May not generate page faults. */
 | 
						|
#define VR_PHYS64K	0x004	/* Physical memory must be 64k aligned. */
 | 
						|
#define VR_LOWER16MB	0x008
 | 
						|
#define VR_LOWER1MB	0x010
 | 
						|
#define VR_CONTIG	0x020	/* Must be physically contiguous. */
 | 
						|
#define VR_SHARED	0x040
 | 
						|
#define VR_UNINITIALIZED 0x080	/* Do not clear after allocation  */
 | 
						|
 | 
						|
/* Mapping type: */
 | 
						|
#define VR_ANON		0x100	/* Memory to be cleared and allocated */
 | 
						|
#define VR_DIRECT	0x200	/* Mapped, but not managed by VM */
 | 
						|
 | 
						|
/* Tag values: */
 | 
						|
#define VRT_NONE	0xBEEF0000
 | 
						|
#define VRT_HEAP	0xBEEF0001
 | 
						|
#define VRT_TEXT	0xBEEF0002
 | 
						|
#define VRT_STACK	0xBEEF0003
 | 
						|
 | 
						|
/* map_page_region flags */
 | 
						|
#define MF_PREALLOC	0x01
 | 
						|
 | 
						|
#endif
 | 
						|
 |