source: mainline/kernel/generic/src/mm/backend_user.c@ fdfb24e

topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fdfb24e was fdfb24e, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 20 months ago

Deduplicate string related functions

  • Property mode set to 100644
File size: 4.9 KB
Line 
1/*
2 * Copyright (c) 2016 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 kernel_generic_mm
30 * @{
31 */
32
33/**
34 * @file
35 * @brief Backend for address space areas backed by the user pager.
36 *
37 */
38
39#include <mm/as.h>
40#include <mm/page.h>
41#include <mm/frame.h>
42#include <abi/mm/as.h>
43#include <abi/ipc/methods.h>
44#include <ipc/sysipc.h>
45#include <synch/mutex.h>
46#include <typedefs.h>
47#include <align.h>
48#include <assert.h>
49#include <errno.h>
50#include <log.h>
51#include <str.h>
52#include <str_error.h>
53
54static bool user_create(as_area_t *);
55static void user_destroy(as_area_t *);
56
57static bool user_is_resizable(as_area_t *);
58static bool user_is_shareable(as_area_t *);
59
60static int user_page_fault(as_area_t *, uintptr_t, pf_access_t);
61static void user_frame_free(as_area_t *, uintptr_t, uintptr_t);
62
63mem_backend_t user_backend = {
64 .create = user_create,
65 .resize = NULL,
66 .share = NULL,
67 .destroy = user_destroy,
68
69 .is_resizable = user_is_resizable,
70 .is_shareable = user_is_shareable,
71
72 .page_fault = user_page_fault,
73 .frame_free = user_frame_free,
74
75 .create_shared_data = NULL,
76 .destroy_shared_data = NULL
77};
78
79bool user_create(as_area_t *area)
80{
81 return true;
82}
83
84void user_destroy(as_area_t *area)
85{
86 return;
87}
88
89bool user_is_resizable(as_area_t *area)
90{
91 return false;
92}
93
94bool user_is_shareable(as_area_t *area)
95{
96 return false;
97}
98
99/** Service a page fault in the user-paged address space area.
100 *
101 * The address space area and page tables must be already locked.
102 *
103 * @param area Pointer to the address space area.
104 * @param upage Faulting virtual page.
105 * @param access Access mode that caused the fault (i.e. read/write/exec).
106 *
107 * @return AS_PF_FAULT on failure (i.e. page fault) or AS_PF_OK on success (i.e.
108 * serviced).
109 */
110int user_page_fault(as_area_t *area, uintptr_t upage, pf_access_t access)
111{
112 assert(page_table_locked(AS));
113 assert(mutex_locked(&area->lock));
114 assert(IS_ALIGNED(upage, PAGE_SIZE));
115
116 if (!as_area_check_access(area, access))
117 return AS_PF_FAULT;
118
119 as_area_pager_info_t *pager_info = &area->backend_data.pager_info;
120
121 ipc_data_t data = { };
122 ipc_set_imethod(&data, IPC_M_PAGE_IN);
123 ipc_set_arg1(&data, upage - area->base);
124 ipc_set_arg2(&data, PAGE_SIZE);
125 ipc_set_arg3(&data, pager_info->id1);
126 ipc_set_arg4(&data, pager_info->id2);
127 ipc_set_arg5(&data, pager_info->id3);
128
129 errno_t rc = ipc_req_internal(pager_info->pager, &data, (sysarg_t) true);
130
131 if (rc != EOK) {
132 log(LF_USPACE, LVL_FATAL,
133 "Page-in request for page %#" PRIxPTR
134 " at pager %p failed with error %s.",
135 upage, pager_info->pager, str_error_name(rc));
136 return AS_PF_FAULT;
137 }
138
139 if (ipc_get_retval(&data) != EOK)
140 return AS_PF_FAULT;
141
142 /*
143 * A successful reply will contain the physical frame in ARG1.
144 * The physical frame will have the reference count already
145 * incremented (if applicable).
146 */
147
148 uintptr_t frame = ipc_get_arg1(&data);
149 page_mapping_insert(AS, upage, frame, as_area_get_flags(area));
150 if (!used_space_insert(&area->used_space, upage, 1))
151 panic("Cannot insert used space.");
152
153 return AS_PF_OK;
154}
155
156/** Free a frame that is backed by the user memory backend.
157 *
158 * The address space area and page tables must be already locked.
159 *
160 * @param area Ignored.
161 * @param page Virtual address of the page corresponding to the frame.
162 * @param frame Frame to be released.
163 */
164void user_frame_free(as_area_t *area, uintptr_t page, uintptr_t frame)
165{
166 assert(page_table_locked(area->as));
167 assert(mutex_locked(&area->lock));
168
169 pfn_t pfn = ADDR2PFN(frame);
170 if (find_zone(pfn, 1, 0) != (size_t) -1) {
171 frame_free(frame, 1);
172 } else {
173 /* Nothing to do */
174 }
175
176}
177
178/** @}
179 */
Note: See TracBrowser for help on using the repository browser.