source: mainline/kernel/generic/include/mm/as.h@ da1bafb

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since da1bafb was da1bafb, checked in by Martin Decky <martin@…>, 15 years ago

major code revision

  • replace spinlocks taken with interrupts disabled with irq_spinlocks
  • change spacing (not indendation) to be tab-size independent
  • use unsigned integer types where appropriate (especially bit flags)
  • visual separation
  • remove argument names in function prototypes
  • string changes
  • correct some formating directives
  • replace various cryptic single-character variables (t, a, m, c, b, etc.) with proper identifiers (thread, task, timeout, as, itm, itc, etc.)
  • unify some assembler constructs
  • unused page table levels are now optimized out in compile time
  • replace several ints (with boolean semantics) with bools
  • use specifically sized types instead of generic types where appropriate (size_t, uint32_t, btree_key_t)
  • improve comments
  • split asserts with conjuction into multiple independent asserts
  • Property mode set to 100644
File size: 8.5 KB
Line 
1/*
2 * Copyright (c) 2010 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup genericmm
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_AS_H_
36#define KERN_AS_H_
37
38#ifdef KERNEL
39 #include <typedefs.h>
40#else
41 #include <sys/types.h>
42#endif
43
44/** Address space area flags. */
45#define AS_AREA_READ 1
46#define AS_AREA_WRITE 2
47#define AS_AREA_EXEC 4
48#define AS_AREA_CACHEABLE 8
49
50/** Address space area info exported to userspace. */
51typedef struct {
52 /** Starting address */
53 uintptr_t start_addr;
54
55 /** Area size */
56 size_t size;
57
58 /** Area flags */
59 unsigned int flags;
60} as_area_info_t;
61
62#ifdef KERNEL
63
64#include <arch/mm/page.h>
65#include <arch/mm/as.h>
66#include <arch/mm/asid.h>
67#include <typedefs.h>
68#include <synch/spinlock.h>
69#include <synch/mutex.h>
70#include <adt/list.h>
71#include <adt/btree.h>
72#include <lib/elf.h>
73
74/**
75 * Defined to be true if user address space and kernel address space shadow each
76 * other.
77 *
78 */
79#define KERNEL_ADDRESS_SPACE_SHADOWED KERNEL_ADDRESS_SPACE_SHADOWED_ARCH
80
81#define KERNEL_ADDRESS_SPACE_START KERNEL_ADDRESS_SPACE_START_ARCH
82#define KERNEL_ADDRESS_SPACE_END KERNEL_ADDRESS_SPACE_END_ARCH
83#define USER_ADDRESS_SPACE_START USER_ADDRESS_SPACE_START_ARCH
84#define USER_ADDRESS_SPACE_END USER_ADDRESS_SPACE_END_ARCH
85
86#define USTACK_ADDRESS USTACK_ADDRESS_ARCH
87
88/** Kernel address space. */
89#define FLAG_AS_KERNEL (1 << 0)
90
91/* Address space area attributes. */
92#define AS_AREA_ATTR_NONE 0
93#define AS_AREA_ATTR_PARTIAL 1 /**< Not fully initialized area. */
94
95/** The page fault was not resolved by as_page_fault(). */
96#define AS_PF_FAULT 0
97
98/** The page fault was resolved by as_page_fault(). */
99#define AS_PF_OK 1
100
101/** The page fault was caused by memcpy_from_uspace() or memcpy_to_uspace(). */
102#define AS_PF_DEFER 2
103
104/** Address space structure.
105 *
106 * as_t contains the list of as_areas of userspace accessible
107 * pages for one or more tasks. Ranges of kernel memory pages are not
108 * supposed to figure in the list as they are shared by all tasks and
109 * set up during system initialization.
110 *
111 */
112typedef struct as {
113 /** Protected by asidlock. */
114 link_t inactive_as_with_asid_link;
115
116 /**
117 * Number of processors on wich is this address space active.
118 * Protected by asidlock.
119 */
120 size_t cpu_refcount;
121
122 /**
123 * Address space identifier.
124 * Constant on architectures that do not support ASIDs.
125 * Protected by asidlock.
126 */
127 asid_t asid;
128
129 /** Number of references (i.e tasks that reference this as). */
130 atomic_t refcount;
131
132 mutex_t lock;
133
134 /** B+tree of address space areas. */
135 btree_t as_area_btree;
136
137 /** Non-generic content. */
138 as_genarch_t genarch;
139
140 /** Architecture specific content. */
141 as_arch_t arch;
142} as_t;
143
144typedef struct {
145 pte_t *(* page_table_create)(unsigned int);
146 void (* page_table_destroy)(pte_t *);
147 void (* page_table_lock)(as_t *, bool);
148 void (* page_table_unlock)(as_t *, bool);
149} as_operations_t;
150
151/**
152 * This structure contains information associated with the shared address space
153 * area.
154 *
155 */
156typedef struct {
157 /** This lock must be acquired only when the as_area lock is held. */
158 mutex_t lock;
159 /** This structure can be deallocated if refcount drops to 0. */
160 size_t refcount;
161
162 /**
163 * B+tree containing complete map of anonymous pages of the shared area.
164 */
165 btree_t pagemap;
166} share_info_t;
167
168/** Page fault access type. */
169typedef enum {
170 PF_ACCESS_READ,
171 PF_ACCESS_WRITE,
172 PF_ACCESS_EXEC
173} pf_access_t;
174
175struct mem_backend;
176
177/** Backend data stored in address space area. */
178typedef union mem_backend_data {
179 /** elf_backend members */
180 struct {
181 elf_header_t *elf;
182 elf_segment_header_t *segment;
183 };
184
185 /** phys_backend members */
186 struct {
187 uintptr_t base;
188 size_t frames;
189 };
190} mem_backend_data_t;
191
192/** Address space area structure.
193 *
194 * Each as_area_t structure describes one contiguous area of virtual memory.
195 *
196 */
197typedef struct {
198 mutex_t lock;
199 /** Containing address space. */
200 as_t *as;
201
202 /**
203 * Flags related to the memory represented by the address space area.
204 */
205 unsigned int flags;
206
207 /** Attributes related to the address space area itself. */
208 unsigned int attributes;
209 /** Size of this area in multiples of PAGE_SIZE. */
210 size_t pages;
211 /** Base address of this area. */
212 uintptr_t base;
213 /** Map of used space. */
214 btree_t used_space;
215
216 /**
217 * If the address space area has been shared, this pointer will
218 * reference the share info structure.
219 */
220 share_info_t *sh_info;
221
222 /** Memory backend backing this address space area. */
223 struct mem_backend *backend;
224
225 /** Data to be used by the backend. */
226 mem_backend_data_t backend_data;
227} as_area_t;
228
229/** Address space area backend structure. */
230typedef struct mem_backend {
231 int (* page_fault)(as_area_t *, uintptr_t, pf_access_t);
232 void (* frame_free)(as_area_t *, uintptr_t, uintptr_t);
233 void (* share)(as_area_t *);
234} mem_backend_t;
235
236extern as_t *AS_KERNEL;
237
238extern as_operations_t *as_operations;
239extern link_t inactive_as_with_asid_head;
240
241extern void as_init(void);
242
243extern as_t *as_create(unsigned int);
244extern void as_destroy(as_t *);
245extern void as_hold(as_t *);
246extern void as_release(as_t *);
247extern void as_switch(as_t *, as_t *);
248extern int as_page_fault(uintptr_t, pf_access_t, istate_t *);
249
250extern as_area_t *as_area_create(as_t *, unsigned int, size_t, uintptr_t,
251 unsigned int, mem_backend_t *, mem_backend_data_t *);
252extern int as_area_destroy(as_t *, uintptr_t);
253extern int as_area_resize(as_t *, uintptr_t, size_t, unsigned int);
254extern int as_area_share(as_t *, uintptr_t, size_t, as_t *, uintptr_t,
255 unsigned int);
256extern int as_area_change_flags(as_t *, unsigned int, uintptr_t);
257
258extern unsigned int as_area_get_flags(as_area_t *);
259extern bool as_area_check_access(as_area_t *, pf_access_t);
260extern size_t as_area_get_size(uintptr_t);
261extern int used_space_insert(as_area_t *, uintptr_t, size_t);
262extern int used_space_remove(as_area_t *, uintptr_t, size_t);
263
264
265/* Interface to be implemented by architectures. */
266
267#ifndef as_constructor_arch
268extern int as_constructor_arch(as_t *, unsigned int);
269#endif /* !def as_constructor_arch */
270
271#ifndef as_destructor_arch
272extern int as_destructor_arch(as_t *);
273#endif /* !def as_destructor_arch */
274
275#ifndef as_create_arch
276extern int as_create_arch(as_t *, unsigned int);
277#endif /* !def as_create_arch */
278
279#ifndef as_install_arch
280extern void as_install_arch(as_t *);
281#endif /* !def as_install_arch */
282
283#ifndef as_deinstall_arch
284extern void as_deinstall_arch(as_t *);
285#endif /* !def as_deinstall_arch */
286
287/* Backend declarations and functions. */
288extern mem_backend_t anon_backend;
289extern mem_backend_t elf_backend;
290extern mem_backend_t phys_backend;
291
292/**
293 * This flags is passed when running the loader, otherwise elf_load()
294 * would return with a EE_LOADER error code.
295 *
296 */
297#define ELD_F_NONE 0
298#define ELD_F_LOADER 1
299
300extern unsigned int elf_load(elf_header_t *, as_t *, unsigned int);
301
302/* Address space area related syscalls. */
303extern unative_t sys_as_area_create(uintptr_t, size_t, unsigned int);
304extern unative_t sys_as_area_resize(uintptr_t, size_t, unsigned int);
305extern unative_t sys_as_area_change_flags(uintptr_t, unsigned int);
306extern unative_t sys_as_area_destroy(uintptr_t);
307
308/* Introspection functions. */
309extern void as_get_area_info(as_t *, as_area_info_t **, size_t *);
310extern void as_print(as_t *);
311
312#endif /* KERNEL */
313
314#endif
315
316/** @}
317 */
Note: See TracBrowser for help on using the repository browser.