|
|
|
@ -334,7 +334,71 @@ static int browse_rb(struct mm_struct *mm)
|
|
|
|
|
}
|
|
|
|
|
return bug ? -1 : i;
|
|
|
|
|
}
|
|
|
|
|
#if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
|
|
|
|
|
extern void mt_validate(struct maple_tree *mt);
|
|
|
|
|
extern void mt_dump(const struct maple_tree *mt);
|
|
|
|
|
|
|
|
|
|
/* Validate the maple tree */
|
|
|
|
|
static void validate_mm_mt(struct mm_struct *mm)
|
|
|
|
|
{
|
|
|
|
|
struct maple_tree *mt = &mm->mm_mt;
|
|
|
|
|
struct vm_area_struct *vma_mt, *vma = mm->mmap;
|
|
|
|
|
|
|
|
|
|
MA_STATE(mas, mt, 0, 0);
|
|
|
|
|
|
|
|
|
|
mt_validate(&mm->mm_mt);
|
|
|
|
|
mas_for_each(&mas, vma_mt, ULONG_MAX) {
|
|
|
|
|
if (xa_is_zero(vma_mt))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (!vma)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
if ((vma != vma_mt) ||
|
|
|
|
|
(vma->vm_start != vma_mt->vm_start) ||
|
|
|
|
|
(vma->vm_end != vma_mt->vm_end) ||
|
|
|
|
|
(vma->vm_start != mas.index) ||
|
|
|
|
|
(vma->vm_end - 1 != mas.last)) {
|
|
|
|
|
pr_emerg("issue in %s\n", current->comm);
|
|
|
|
|
dump_stack();
|
|
|
|
|
#ifdef CONFIG_DEBUG_VM
|
|
|
|
|
dump_vma(vma_mt);
|
|
|
|
|
pr_emerg("and next in rb\n");
|
|
|
|
|
dump_vma(vma->vm_next);
|
|
|
|
|
#endif
|
|
|
|
|
pr_emerg("mt piv: %p %lu - %lu\n", vma_mt,
|
|
|
|
|
mas.index, mas.last);
|
|
|
|
|
pr_emerg("mt vma: %p %lu - %lu\n", vma_mt,
|
|
|
|
|
vma_mt->vm_start, vma_mt->vm_end);
|
|
|
|
|
pr_emerg("rb vma: %p %lu - %lu\n", vma,
|
|
|
|
|
vma->vm_start, vma->vm_end);
|
|
|
|
|
pr_emerg("rb->next = %p %lu - %lu\n", vma->vm_next,
|
|
|
|
|
vma->vm_next->vm_start, vma->vm_next->vm_end);
|
|
|
|
|
|
|
|
|
|
mt_dump(mas.tree);
|
|
|
|
|
if (vma_mt->vm_end != mas.last + 1) {
|
|
|
|
|
pr_err("vma: %p vma_mt %lu-%lu\tmt %lu-%lu\n",
|
|
|
|
|
mm, vma_mt->vm_start, vma_mt->vm_end,
|
|
|
|
|
mas.index, mas.last);
|
|
|
|
|
mt_dump(mas.tree);
|
|
|
|
|
}
|
|
|
|
|
VM_BUG_ON_MM(vma_mt->vm_end != mas.last + 1, mm);
|
|
|
|
|
if (vma_mt->vm_start != mas.index) {
|
|
|
|
|
pr_err("vma: %p vma_mt %p %lu - %lu doesn't match\n",
|
|
|
|
|
mm, vma_mt, vma_mt->vm_start, vma_mt->vm_end);
|
|
|
|
|
mt_dump(mas.tree);
|
|
|
|
|
}
|
|
|
|
|
VM_BUG_ON_MM(vma_mt->vm_start != mas.index, mm);
|
|
|
|
|
}
|
|
|
|
|
VM_BUG_ON(vma != vma_mt);
|
|
|
|
|
vma = vma->vm_next;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
VM_BUG_ON(vma);
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#define validate_mm_mt(root) do { } while (0)
|
|
|
|
|
#endif
|
|
|
|
|
static void validate_mm_rb(struct rb_root *root, struct vm_area_struct *ignore)
|
|
|
|
|
{
|
|
|
|
|
struct rb_node *nd;
|
|
|
|
@ -389,6 +453,7 @@ static void validate_mm(struct mm_struct *mm)
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
#define validate_mm_rb(root, ignore) do { } while (0)
|
|
|
|
|
#define validate_mm_mt(root) do { } while (0)
|
|
|
|
|
#define validate_mm(mm) do { } while (0)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
@ -633,6 +698,56 @@ static void __vma_link_file(struct vm_area_struct *vma)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma_mas_store() - Store a VMA in the maple tree.
|
|
|
|
|
* @vma: The vm_area_struct
|
|
|
|
|
* @mas: The maple state
|
|
|
|
|
*
|
|
|
|
|
* Efficient way to store a VMA in the maple tree when the @mas has already
|
|
|
|
|
* walked to the correct location.
|
|
|
|
|
*
|
|
|
|
|
* Note: the end address is inclusive in the maple tree.
|
|
|
|
|
*/
|
|
|
|
|
void vma_mas_store(struct vm_area_struct *vma, struct ma_state *mas)
|
|
|
|
|
{
|
|
|
|
|
trace_vma_store(mas->tree, vma);
|
|
|
|
|
mas_set_range(mas, vma->vm_start, vma->vm_end - 1);
|
|
|
|
|
mas_store_prealloc(mas, vma);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma_mas_remove() - Remove a VMA from the maple tree.
|
|
|
|
|
* @vma: The vm_area_struct
|
|
|
|
|
* @mas: The maple state
|
|
|
|
|
*
|
|
|
|
|
* Efficient way to remove a VMA from the maple tree when the @mas has already
|
|
|
|
|
* been established and points to the correct location.
|
|
|
|
|
* Note: the end address is inclusive in the maple tree.
|
|
|
|
|
*/
|
|
|
|
|
void vma_mas_remove(struct vm_area_struct *vma, struct ma_state *mas)
|
|
|
|
|
{
|
|
|
|
|
trace_vma_mas_szero(mas->tree, vma->vm_start, vma->vm_end - 1);
|
|
|
|
|
mas->index = vma->vm_start;
|
|
|
|
|
mas->last = vma->vm_end - 1;
|
|
|
|
|
mas_store_prealloc(mas, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma_mas_szero() - Set a given range to zero. Used when modifying a
|
|
|
|
|
* vm_area_struct start or end.
|
|
|
|
|
*
|
|
|
|
|
* @mm: The struct_mm
|
|
|
|
|
* @start: The start address to zero
|
|
|
|
|
* @end: The end address to zero.
|
|
|
|
|
*/
|
|
|
|
|
static inline void vma_mas_szero(struct ma_state *mas, unsigned long start,
|
|
|
|
|
unsigned long end)
|
|
|
|
|
{
|
|
|
|
|
trace_vma_mas_szero(mas->tree, start, end - 1);
|
|
|
|
|
mas_set_range(mas, start, end - 1);
|
|
|
|
|
mas_store_prealloc(mas, NULL);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
__vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
struct vm_area_struct *prev, struct rb_node **rb_link,
|
|
|
|
@ -642,17 +757,22 @@ __vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
__vma_link_rb(mm, vma, rb_link, rb_parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
static int vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
struct vm_area_struct *prev, struct rb_node **rb_link,
|
|
|
|
|
struct rb_node *rb_parent)
|
|
|
|
|
{
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
struct address_space *mapping = NULL;
|
|
|
|
|
|
|
|
|
|
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
if (vma->vm_file) {
|
|
|
|
|
mapping = vma->vm_file->f_mapping;
|
|
|
|
|
i_mmap_lock_write(mapping);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vma_mas_store(vma, &mas);
|
|
|
|
|
__vma_link(mm, vma, prev, rb_link, rb_parent);
|
|
|
|
|
__vma_link_file(vma);
|
|
|
|
|
|
|
|
|
@ -661,13 +781,15 @@ static void vma_link(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
|
|
|
|
|
mm->map_count++;
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Helper for vma_adjust() in the split_vma insert case: insert a vma into the
|
|
|
|
|
* mm's list and rbtree. It has already been inserted into the interval tree.
|
|
|
|
|
*/
|
|
|
|
|
static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
|
|
|
|
|
static void __insert_vm_struct(struct mm_struct *mm, struct ma_state *mas,
|
|
|
|
|
struct vm_area_struct *vma)
|
|
|
|
|
{
|
|
|
|
|
struct vm_area_struct *prev;
|
|
|
|
|
struct rb_node **rb_link, *rb_parent;
|
|
|
|
@ -675,7 +797,10 @@ static void __insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
|
|
|
|
|
if (find_vma_links(mm, vma->vm_start, vma->vm_end,
|
|
|
|
|
&prev, &rb_link, &rb_parent))
|
|
|
|
|
BUG();
|
|
|
|
|
__vma_link(mm, vma, prev, rb_link, rb_parent);
|
|
|
|
|
|
|
|
|
|
vma_mas_store(vma, mas);
|
|
|
|
|
__vma_link_list(mm, vma, prev);
|
|
|
|
|
__vma_link_rb(mm, vma, rb_link, rb_parent);
|
|
|
|
|
mm->map_count++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -702,6 +827,7 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
|
|
|
|
|
{
|
|
|
|
|
struct mm_struct *mm = vma->vm_mm;
|
|
|
|
|
struct vm_area_struct *next = vma->vm_next, *orig_vma = vma;
|
|
|
|
|
struct vm_area_struct *next_next;
|
|
|
|
|
struct address_space *mapping = NULL;
|
|
|
|
|
struct rb_root_cached *root = NULL;
|
|
|
|
|
struct anon_vma *anon_vma = NULL;
|
|
|
|
@ -709,10 +835,13 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
|
|
|
|
|
bool start_changed = false, end_changed = false;
|
|
|
|
|
long adjust_next = 0;
|
|
|
|
|
int remove_next = 0;
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
struct vm_area_struct *exporter = NULL, *importer = NULL;
|
|
|
|
|
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
if (next && !insert) {
|
|
|
|
|
struct vm_area_struct *exporter = NULL, *importer = NULL;
|
|
|
|
|
|
|
|
|
|
if (end >= next->vm_end) {
|
|
|
|
|
/*
|
|
|
|
|
* vma expands, overlapping all the next, and
|
|
|
|
@ -741,10 +870,11 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
|
|
|
|
|
* remove_next == 1 is case 1 or 7.
|
|
|
|
|
*/
|
|
|
|
|
remove_next = 1 + (end > next->vm_end);
|
|
|
|
|
if (remove_next == 2)
|
|
|
|
|
next_next = find_vma(mm, next->vm_end);
|
|
|
|
|
|
|
|
|
|
VM_WARN_ON(remove_next == 2 &&
|
|
|
|
|
end != next->vm_next->vm_end);
|
|
|
|
|
/* trim end to next, for case 6 first pass */
|
|
|
|
|
end = next->vm_end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exporter = next;
|
|
|
|
@ -792,9 +922,11 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
again:
|
|
|
|
|
vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
|
|
|
|
|
|
|
|
|
|
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
vma_adjust_trans_huge(orig_vma, start, end, adjust_next);
|
|
|
|
|
if (file) {
|
|
|
|
|
mapping = file->f_mapping;
|
|
|
|
|
root = &mapping->i_mmap;
|
|
|
|
@ -835,17 +967,28 @@ again:
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (start != vma->vm_start) {
|
|
|
|
|
unsigned long old_start = vma->vm_start;
|
|
|
|
|
vma->vm_start = start;
|
|
|
|
|
if (old_start < start)
|
|
|
|
|
vma_mas_szero(&mas, old_start, start);
|
|
|
|
|
start_changed = true;
|
|
|
|
|
}
|
|
|
|
|
if (end != vma->vm_end) {
|
|
|
|
|
unsigned long old_end = vma->vm_end;
|
|
|
|
|
vma->vm_end = end;
|
|
|
|
|
if (old_end > end)
|
|
|
|
|
vma_mas_szero(&mas, end, old_end);
|
|
|
|
|
end_changed = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (end_changed || start_changed)
|
|
|
|
|
vma_mas_store(vma, &mas);
|
|
|
|
|
|
|
|
|
|
vma->vm_pgoff = pgoff;
|
|
|
|
|
if (adjust_next) {
|
|
|
|
|
next->vm_start += adjust_next;
|
|
|
|
|
next->vm_pgoff += adjust_next >> PAGE_SHIFT;
|
|
|
|
|
vma_mas_store(next, &mas);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
@ -859,10 +1002,14 @@ again:
|
|
|
|
|
/*
|
|
|
|
|
* vma_merge has merged next into vma, and needs
|
|
|
|
|
* us to remove next before dropping the locks.
|
|
|
|
|
* Since we have expanded over this vma, the maple tree will
|
|
|
|
|
* have overwritten by storing the value
|
|
|
|
|
*/
|
|
|
|
|
if (remove_next != 3)
|
|
|
|
|
if (remove_next != 3) {
|
|
|
|
|
__vma_unlink(mm, next, next);
|
|
|
|
|
else
|
|
|
|
|
if (remove_next == 2)
|
|
|
|
|
__vma_unlink(mm, next_next, next_next);
|
|
|
|
|
} else {
|
|
|
|
|
/*
|
|
|
|
|
* vma is not before next if they've been
|
|
|
|
|
* swapped.
|
|
|
|
@ -873,15 +1020,19 @@ again:
|
|
|
|
|
* "vma").
|
|
|
|
|
*/
|
|
|
|
|
__vma_unlink(mm, next, vma);
|
|
|
|
|
if (file)
|
|
|
|
|
}
|
|
|
|
|
if (file) {
|
|
|
|
|
__remove_shared_vm_struct(next, file, mapping);
|
|
|
|
|
if (remove_next == 2)
|
|
|
|
|
__remove_shared_vm_struct(next_next, file, mapping);
|
|
|
|
|
}
|
|
|
|
|
} else if (insert) {
|
|
|
|
|
/*
|
|
|
|
|
* split_vma has split insert from vma, and needs
|
|
|
|
|
* us to insert it before dropping the locks
|
|
|
|
|
* (it may either follow vma or precede it).
|
|
|
|
|
*/
|
|
|
|
|
__insert_vm_struct(mm, insert);
|
|
|
|
|
__insert_vm_struct(mm, &mas, insert);
|
|
|
|
|
} else {
|
|
|
|
|
if (start_changed)
|
|
|
|
|
vma_gap_update(vma);
|
|
|
|
@ -909,6 +1060,7 @@ again:
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (remove_next) {
|
|
|
|
|
again:
|
|
|
|
|
if (file) {
|
|
|
|
|
uprobe_munmap(next, next->vm_start, next->vm_end);
|
|
|
|
|
fput(file);
|
|
|
|
@ -930,7 +1082,7 @@ again:
|
|
|
|
|
* "next->vm_prev->vm_end" changed and the
|
|
|
|
|
* "vma->vm_next" gap must be updated.
|
|
|
|
|
*/
|
|
|
|
|
next = vma->vm_next;
|
|
|
|
|
next = next_next;
|
|
|
|
|
} else {
|
|
|
|
|
/*
|
|
|
|
|
* For the scope of the comment "next" and
|
|
|
|
@ -946,7 +1098,6 @@ again:
|
|
|
|
|
}
|
|
|
|
|
if (remove_next == 2) {
|
|
|
|
|
remove_next = 1;
|
|
|
|
|
end = next->vm_end;
|
|
|
|
|
goto again;
|
|
|
|
|
}
|
|
|
|
|
else if (next)
|
|
|
|
@ -978,6 +1129,7 @@ again:
|
|
|
|
|
uprobe_mmap(insert);
|
|
|
|
|
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
@ -1131,6 +1283,7 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
|
|
|
|
|
struct vm_area_struct *area, *next;
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
/*
|
|
|
|
|
* We later require that vma->vm_flags == vm_flags,
|
|
|
|
|
* so this tests vma->vm_flags & VM_SPECIAL, too.
|
|
|
|
@ -1206,6 +1359,7 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
|
|
|
|
|
khugepaged_enter_vma(area, vm_flags);
|
|
|
|
|
return area;
|
|
|
|
|
}
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
@ -1688,6 +1842,7 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
|
|
|
|
|
struct rb_node **rb_link, *rb_parent;
|
|
|
|
|
unsigned long charged = 0;
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
/* Check against address space limit. */
|
|
|
|
|
if (!may_expand_vm(mm, vm_flags, len >> PAGE_SHIFT)) {
|
|
|
|
|
unsigned long nr_pages;
|
|
|
|
@ -1802,7 +1957,13 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
|
|
|
|
|
goto free_vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vma_link(mm, vma, prev, rb_link, rb_parent);
|
|
|
|
|
if (vma_link(mm, vma, prev, rb_link, rb_parent)) {
|
|
|
|
|
error = -ENOMEM;
|
|
|
|
|
if (file)
|
|
|
|
|
goto unmap_and_free_vma;
|
|
|
|
|
else
|
|
|
|
|
goto free_vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma_merge() calls khugepaged_enter_vma() either, the below
|
|
|
|
@ -1842,6 +2003,7 @@ out:
|
|
|
|
|
|
|
|
|
|
vma_set_page_prot(vma);
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return addr;
|
|
|
|
|
|
|
|
|
|
unmap_and_free_vma:
|
|
|
|
@ -1857,6 +2019,7 @@ free_vma:
|
|
|
|
|
unacct_error:
|
|
|
|
|
if (charged)
|
|
|
|
|
vm_unacct_memory(charged);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -1873,12 +2036,19 @@ static unsigned long unmapped_area(struct vm_unmapped_area_info *info)
|
|
|
|
|
struct mm_struct *mm = current->mm;
|
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
|
unsigned long length, low_limit, high_limit, gap_start, gap_end;
|
|
|
|
|
unsigned long gap;
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
|
|
|
|
|
/* Adjust search length to account for worst case alignment overhead */
|
|
|
|
|
length = info->length + info->align_mask;
|
|
|
|
|
if (length < info->length)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
mas_empty_area(&mas, info->low_limit, info->high_limit - 1,
|
|
|
|
|
length);
|
|
|
|
|
gap = mas.index;
|
|
|
|
|
gap += (info->align_offset - gap) & info->align_mask;
|
|
|
|
|
|
|
|
|
|
/* Adjust search limits by the desired length */
|
|
|
|
|
if (info->high_limit < length)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
@ -1960,20 +2130,31 @@ found:
|
|
|
|
|
|
|
|
|
|
VM_BUG_ON(gap_start + info->length > info->high_limit);
|
|
|
|
|
VM_BUG_ON(gap_start + info->length > gap_end);
|
|
|
|
|
|
|
|
|
|
VM_BUG_ON(gap != gap_start);
|
|
|
|
|
return gap_start;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static unsigned long unmapped_area_topdown(struct vm_unmapped_area_info *info)
|
|
|
|
|
{
|
|
|
|
|
struct mm_struct *mm = current->mm;
|
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
|
struct vm_area_struct *vma = NULL;
|
|
|
|
|
unsigned long length, low_limit, high_limit, gap_start, gap_end;
|
|
|
|
|
unsigned long gap;
|
|
|
|
|
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
/* Adjust search length to account for worst case alignment overhead */
|
|
|
|
|
length = info->length + info->align_mask;
|
|
|
|
|
if (length < info->length)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
mas_empty_area_rev(&mas, info->low_limit, info->high_limit - 1,
|
|
|
|
|
length);
|
|
|
|
|
gap = mas.last + 1 - info->length;
|
|
|
|
|
gap -= (gap - info->align_offset) & info->align_mask;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Adjust search limits by the desired length.
|
|
|
|
|
* See implementation comment at top of unmapped_area().
|
|
|
|
@ -2059,6 +2240,32 @@ found_highest:
|
|
|
|
|
|
|
|
|
|
VM_BUG_ON(gap_end < info->low_limit);
|
|
|
|
|
VM_BUG_ON(gap_end < gap_start);
|
|
|
|
|
|
|
|
|
|
if (gap != gap_end) {
|
|
|
|
|
pr_err("%s: %p Gap was found: mt %lu gap_end %lu\n", __func__,
|
|
|
|
|
mm, gap, gap_end);
|
|
|
|
|
pr_err("window was %lu - %lu size %lu\n", info->high_limit,
|
|
|
|
|
info->low_limit, length);
|
|
|
|
|
pr_err("mas.min %lu max %lu mas.last %lu\n", mas.min, mas.max,
|
|
|
|
|
mas.last);
|
|
|
|
|
pr_err("mas.index %lu align mask %lu offset %lu\n", mas.index,
|
|
|
|
|
info->align_mask, info->align_offset);
|
|
|
|
|
pr_err("rb_find_vma find on %lu => %p (%p)\n", mas.index,
|
|
|
|
|
find_vma(mm, mas.index), vma);
|
|
|
|
|
#if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
|
|
|
|
|
mt_dump(&mm->mm_mt);
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
struct vm_area_struct *dv = mm->mmap;
|
|
|
|
|
|
|
|
|
|
while (dv) {
|
|
|
|
|
pr_err("vma %p %lu-%lu\n", dv, dv->vm_start, dv->vm_end);
|
|
|
|
|
dv = dv->vm_next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
VM_BUG_ON(gap != gap_end);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return gap_end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -2284,7 +2491,6 @@ struct vm_area_struct *find_vma(struct mm_struct *mm, unsigned long addr)
|
|
|
|
|
vmacache_update(addr, vma);
|
|
|
|
|
return vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(find_vma);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@ -2357,7 +2563,9 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
|
|
|
|
|
struct vm_area_struct *next;
|
|
|
|
|
unsigned long gap_addr;
|
|
|
|
|
int error = 0;
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
if (!(vma->vm_flags & VM_GROWSUP))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
@ -2381,10 +2589,15 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
|
|
|
|
|
/* Check that both stack segments have the same anon_vma? */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We must make sure the anon_vma is allocated. */
|
|
|
|
|
if (unlikely(anon_vma_prepare(vma)))
|
|
|
|
|
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
/* We must make sure the anon_vma is allocated. */
|
|
|
|
|
if (unlikely(anon_vma_prepare(vma))) {
|
|
|
|
|
mas_destroy(&mas);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma->vm_start/vm_end cannot change under us because the caller
|
|
|
|
|
* is required to hold the mmap_lock in read mode. We need the
|
|
|
|
@ -2420,6 +2633,8 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
|
|
|
|
|
vm_stat_account(mm, vma->vm_flags, grow);
|
|
|
|
|
anon_vma_interval_tree_pre_update_vma(vma);
|
|
|
|
|
vma->vm_end = address;
|
|
|
|
|
/* Overwrite old entry in mtree. */
|
|
|
|
|
vma_mas_store(vma, &mas);
|
|
|
|
|
anon_vma_interval_tree_post_update_vma(vma);
|
|
|
|
|
if (vma->vm_next)
|
|
|
|
|
vma_gap_update(vma->vm_next);
|
|
|
|
@ -2434,6 +2649,8 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
|
|
|
|
|
anon_vma_unlock_write(vma->anon_vma);
|
|
|
|
|
khugepaged_enter_vma(vma, vma->vm_flags);
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
mas_destroy(&mas);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
#endif /* CONFIG_STACK_GROWSUP || CONFIG_IA64 */
|
|
|
|
@ -2447,7 +2664,9 @@ int expand_downwards(struct vm_area_struct *vma,
|
|
|
|
|
struct mm_struct *mm = vma->vm_mm;
|
|
|
|
|
struct vm_area_struct *prev;
|
|
|
|
|
int error = 0;
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
address &= PAGE_MASK;
|
|
|
|
|
if (address < mmap_min_addr)
|
|
|
|
|
return -EPERM;
|
|
|
|
@ -2461,10 +2680,15 @@ int expand_downwards(struct vm_area_struct *vma,
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* We must make sure the anon_vma is allocated. */
|
|
|
|
|
if (unlikely(anon_vma_prepare(vma)))
|
|
|
|
|
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
/* We must make sure the anon_vma is allocated. */
|
|
|
|
|
if (unlikely(anon_vma_prepare(vma))) {
|
|
|
|
|
mas_destroy(&mas);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* vma->vm_start/vm_end cannot change under us because the caller
|
|
|
|
|
* is required to hold the mmap_lock in read mode. We need the
|
|
|
|
@ -2501,6 +2725,8 @@ int expand_downwards(struct vm_area_struct *vma,
|
|
|
|
|
anon_vma_interval_tree_pre_update_vma(vma);
|
|
|
|
|
vma->vm_start = address;
|
|
|
|
|
vma->vm_pgoff -= grow;
|
|
|
|
|
/* Overwrite old entry in mtree. */
|
|
|
|
|
vma_mas_store(vma, &mas);
|
|
|
|
|
anon_vma_interval_tree_post_update_vma(vma);
|
|
|
|
|
vma_gap_update(vma);
|
|
|
|
|
spin_unlock(&mm->page_table_lock);
|
|
|
|
@ -2512,6 +2738,7 @@ int expand_downwards(struct vm_area_struct *vma,
|
|
|
|
|
anon_vma_unlock_write(vma->anon_vma);
|
|
|
|
|
khugepaged_enter_vma(vma, vma->vm_flags);
|
|
|
|
|
validate_mm(mm);
|
|
|
|
|
mas_destroy(&mas);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -2633,14 +2860,17 @@ static void unmap_region(struct mm_struct *mm,
|
|
|
|
|
* vma list as we go..
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
|
|
|
|
detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
struct vm_area_struct *prev, unsigned long end)
|
|
|
|
|
detach_vmas_to_be_unmapped(struct mm_struct *mm, struct ma_state *mas,
|
|
|
|
|
struct vm_area_struct *vma, struct vm_area_struct *prev,
|
|
|
|
|
unsigned long end)
|
|
|
|
|
{
|
|
|
|
|
struct vm_area_struct **insertion_point;
|
|
|
|
|
struct vm_area_struct *tail_vma = NULL;
|
|
|
|
|
|
|
|
|
|
insertion_point = (prev ? &prev->vm_next : &mm->mmap);
|
|
|
|
|
vma->vm_prev = NULL;
|
|
|
|
|
mas_set_range(mas, vma->vm_start, end - 1);
|
|
|
|
|
mas_store_prealloc(mas, NULL);
|
|
|
|
|
do {
|
|
|
|
|
vma_rb_erase(vma, &mm->mm_rb);
|
|
|
|
|
if (vma->vm_flags & VM_LOCKED)
|
|
|
|
@ -2681,6 +2911,7 @@ int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
{
|
|
|
|
|
struct vm_area_struct *new;
|
|
|
|
|
int err;
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
if (vma->vm_ops && vma->vm_ops->may_split) {
|
|
|
|
|
err = vma->vm_ops->may_split(vma, addr);
|
|
|
|
@ -2723,6 +2954,9 @@ int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
if (!err)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
/* Avoid vm accounting in close() operation */
|
|
|
|
|
new->vm_start = new->vm_end;
|
|
|
|
|
new->vm_pgoff = 0;
|
|
|
|
|
/* Clean everything up if vma_adjust failed. */
|
|
|
|
|
if (new->vm_ops && new->vm_ops->close)
|
|
|
|
|
new->vm_ops->close(new);
|
|
|
|
@ -2733,6 +2967,7 @@ int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
|
|
|
|
|
mpol_put(vma_policy(new));
|
|
|
|
|
out_free_vma:
|
|
|
|
|
vm_area_free(new);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -2759,6 +2994,8 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
{
|
|
|
|
|
unsigned long end;
|
|
|
|
|
struct vm_area_struct *vma, *prev, *last;
|
|
|
|
|
int error = -ENOMEM;
|
|
|
|
|
MA_STATE(mas, &mm->mm_mt, 0, 0);
|
|
|
|
|
|
|
|
|
|
if ((offset_in_page(start)) || start > TASK_SIZE || len > TASK_SIZE-start)
|
|
|
|
|
return -EINVAL;
|
|
|
|
@ -2779,6 +3016,9 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
vma = find_vma_intersection(mm, start, end);
|
|
|
|
|
if (!vma)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (mas_preallocate(&mas, vma, GFP_KERNEL))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
prev = vma->vm_prev;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@ -2789,7 +3029,6 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
* places tmp vma above, and higher split_vma places tmp vma below.
|
|
|
|
|
*/
|
|
|
|
|
if (start > vma->vm_start) {
|
|
|
|
|
int error;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Make sure that map_count on return from munmap() will
|
|
|
|
@ -2797,20 +3036,20 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
* its limit temporarily, to help free resources as expected.
|
|
|
|
|
*/
|
|
|
|
|
if (end < vma->vm_end && mm->map_count >= sysctl_max_map_count)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
goto map_count_exceeded;
|
|
|
|
|
|
|
|
|
|
error = __split_vma(mm, vma, start, 0);
|
|
|
|
|
if (error)
|
|
|
|
|
return error;
|
|
|
|
|
goto split_failed;
|
|
|
|
|
prev = vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Does it split the last one? */
|
|
|
|
|
last = find_vma(mm, end);
|
|
|
|
|
if (last && end > last->vm_start) {
|
|
|
|
|
int error = __split_vma(mm, last, end, 1);
|
|
|
|
|
error = __split_vma(mm, last, end, 1);
|
|
|
|
|
if (error)
|
|
|
|
|
return error;
|
|
|
|
|
goto split_failed;
|
|
|
|
|
}
|
|
|
|
|
vma = vma_next(mm, prev);
|
|
|
|
|
|
|
|
|
@ -2824,13 +3063,13 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
* split, despite we could. This is unlikely enough
|
|
|
|
|
* failure that it's not worth optimizing it for.
|
|
|
|
|
*/
|
|
|
|
|
int error = userfaultfd_unmap_prep(vma, start, end, uf);
|
|
|
|
|
error = userfaultfd_unmap_prep(vma, start, end, uf);
|
|
|
|
|
if (error)
|
|
|
|
|
return error;
|
|
|
|
|
goto userfaultfd_error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Detach vmas from rbtree */
|
|
|
|
|
if (!detach_vmas_to_be_unmapped(mm, vma, prev, end))
|
|
|
|
|
if (!detach_vmas_to_be_unmapped(mm, &mas, vma, prev, end))
|
|
|
|
|
downgrade = false;
|
|
|
|
|
|
|
|
|
|
if (downgrade)
|
|
|
|
@ -2842,6 +3081,12 @@ int __do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
|
remove_vma_list(mm, vma);
|
|
|
|
|
|
|
|
|
|
return downgrade ? 1 : 0;
|
|
|
|
|
|
|
|
|
|
map_count_exceeded:
|
|
|
|
|
split_failed:
|
|
|
|
|
userfaultfd_error:
|
|
|
|
|
mas_destroy(&mas);
|
|
|
|
|
return error;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int do_munmap(struct mm_struct *mm, unsigned long start, size_t len,
|
|
|
|
@ -2981,6 +3226,7 @@ static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long fla
|
|
|
|
|
pgoff_t pgoff = addr >> PAGE_SHIFT;
|
|
|
|
|
int error;
|
|
|
|
|
unsigned long mapped_addr;
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
|
|
|
|
|
/* Until we need other flags, refuse anything except VM_EXEC. */
|
|
|
|
|
if ((flags & (~VM_EXEC)) != 0)
|
|
|
|
@ -3030,7 +3276,9 @@ static int do_brk_flags(unsigned long addr, unsigned long len, unsigned long fla
|
|
|
|
|
vma->vm_pgoff = pgoff;
|
|
|
|
|
vma->vm_flags = flags;
|
|
|
|
|
vma->vm_page_prot = vm_get_page_prot(flags);
|
|
|
|
|
vma_link(mm, vma, prev, rb_link, rb_parent);
|
|
|
|
|
if (vma_link(mm, vma, prev, rb_link, rb_parent))
|
|
|
|
|
goto no_vma_link;
|
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
perf_event_mmap(vma);
|
|
|
|
|
mm->total_vm += len >> PAGE_SHIFT;
|
|
|
|
@ -3038,7 +3286,12 @@ out:
|
|
|
|
|
if (flags & VM_LOCKED)
|
|
|
|
|
mm->locked_vm += (len >> PAGE_SHIFT);
|
|
|
|
|
vma->vm_flags |= VM_SOFTDIRTY;
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
no_vma_link:
|
|
|
|
|
vm_area_free(vma);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int vm_brk_flags(unsigned long addr, unsigned long request, unsigned long flags)
|
|
|
|
@ -3127,6 +3380,9 @@ void exit_mmap(struct mm_struct *mm)
|
|
|
|
|
vma = remove_vma(vma);
|
|
|
|
|
cond_resched();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
trace_exit_mmap(mm);
|
|
|
|
|
__mt_destroy(&mm->mm_mt);
|
|
|
|
|
mm->mmap = NULL;
|
|
|
|
|
mmap_write_unlock(mm);
|
|
|
|
|
vm_unacct_memory(nr_accounted);
|
|
|
|
@ -3140,12 +3396,30 @@ int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
|
|
|
|
|
{
|
|
|
|
|
struct vm_area_struct *prev;
|
|
|
|
|
struct rb_node **rb_link, *rb_parent;
|
|
|
|
|
unsigned long start = vma->vm_start;
|
|
|
|
|
struct vm_area_struct *overlap = NULL;
|
|
|
|
|
unsigned long charged = vma_pages(vma);
|
|
|
|
|
|
|
|
|
|
if (find_vma_links(mm, vma->vm_start, vma->vm_end,
|
|
|
|
|
&prev, &rb_link, &rb_parent))
|
|
|
|
|
|
|
|
|
|
if (find_vma_intersection(mm, vma->vm_start, vma->vm_end))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
overlap = mt_find(&mm->mm_mt, &start, vma->vm_end - 1);
|
|
|
|
|
if (overlap) {
|
|
|
|
|
|
|
|
|
|
pr_err("Found vma ending at %lu\n", start - 1);
|
|
|
|
|
pr_err("vma : %lu => %lu-%lu\n", (unsigned long)overlap,
|
|
|
|
|
overlap->vm_start, overlap->vm_end - 1);
|
|
|
|
|
#if defined(CONFIG_DEBUG_VM_MAPLE_TREE)
|
|
|
|
|
mt_dump(&mm->mm_mt);
|
|
|
|
|
#endif
|
|
|
|
|
BUG();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((vma->vm_flags & VM_ACCOUNT) &&
|
|
|
|
|
security_vm_enough_memory_mm(mm, vma_pages(vma)))
|
|
|
|
|
security_vm_enough_memory_mm(mm, charged))
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
@ -3165,7 +3439,11 @@ int insert_vm_struct(struct mm_struct *mm, struct vm_area_struct *vma)
|
|
|
|
|
vma->vm_pgoff = vma->vm_start >> PAGE_SHIFT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vma_link(mm, vma, prev, rb_link, rb_parent);
|
|
|
|
|
if (vma_link(mm, vma, prev, rb_link, rb_parent)) {
|
|
|
|
|
vm_unacct_memory(charged);
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -3183,7 +3461,9 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
|
|
|
|
|
struct vm_area_struct *new_vma, *prev;
|
|
|
|
|
struct rb_node **rb_link, *rb_parent;
|
|
|
|
|
bool faulted_in_anon_vma = true;
|
|
|
|
|
unsigned long index = addr;
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
/*
|
|
|
|
|
* If anonymous vma has not yet been faulted, update new pgoff
|
|
|
|
|
* to match new location, to increase its chance of merging.
|
|
|
|
@ -3195,6 +3475,8 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
|
|
|
|
|
|
|
|
|
|
if (find_vma_links(mm, addr, addr + len, &prev, &rb_link, &rb_parent))
|
|
|
|
|
return NULL; /* should never get here */
|
|
|
|
|
if (mt_find(&mm->mm_mt, &index, addr+len - 1))
|
|
|
|
|
BUG();
|
|
|
|
|
new_vma = vma_merge(mm, prev, addr, addr + len, vma->vm_flags,
|
|
|
|
|
vma->anon_vma, vma->vm_file, pgoff, vma_policy(vma),
|
|
|
|
|
vma->vm_userfaultfd_ctx, anon_vma_name(vma));
|
|
|
|
@ -3238,6 +3520,7 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
|
|
|
|
|
vma_link(mm, new_vma, prev, rb_link, rb_parent);
|
|
|
|
|
*need_rmap_locks = false;
|
|
|
|
|
}
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return new_vma;
|
|
|
|
|
|
|
|
|
|
out_free_mempol:
|
|
|
|
@ -3245,6 +3528,7 @@ out_free_mempol:
|
|
|
|
|
out_free_vma:
|
|
|
|
|
vm_area_free(new_vma);
|
|
|
|
|
out:
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -3381,6 +3665,7 @@ static struct vm_area_struct *__install_special_mapping(
|
|
|
|
|
int ret;
|
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
vma = vm_area_alloc(mm);
|
|
|
|
|
if (unlikely(vma == NULL))
|
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
@ -3403,10 +3688,12 @@ static struct vm_area_struct *__install_special_mapping(
|
|
|
|
|
|
|
|
|
|
perf_event_mmap(vma);
|
|
|
|
|
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return vma;
|
|
|
|
|
|
|
|
|
|
out:
|
|
|
|
|
vm_area_free(vma);
|
|
|
|
|
validate_mm_mt(mm);
|
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|