Re: [PATCH v9 11/12] x86, mpx: cleanup unused bound tables

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 10/28/2014 04:49 AM, Thomas Gleixner wrote:
On Mon, 27 Oct 2014, Ren Qiaowei wrote:
If so, I guess that there are some questions needed to be considered:

1) Almost all palces which call do_munmap() will need to add
mpx_pre_unmap/post_unmap calls, like vm_munmap(), mremap(), shmdt(), etc..

What's the problem with that?


For example:

shmdt()
    down_write(mm->mmap_sem);
    vma = find_vma();
    while (vma)
        do_munmap();
    up_write(mm->mmap_sem);

We could not simply add mpx_pre_unmap() before do_munmap() or down_write(). And seems like it is a little hard for shmdt() to be changed to match this solution, right?

2) before mpx_post_unmap() call, it is possible for those bounds tables within
mm->bd_remove_vmas to be re-used.

In this case, userspace may do new mapping and access one address which will
cover one of those bounds tables. During this period, HW will check if one
bounds table exist, if yes one fault won't be produced.

Errm. Before user space can use the bounds table for the new mapping
it needs to add the entries, right? So:

CPU 0					CPU 1

down_write(mm->bd_sem);
mpx_pre_unmap();
    clear bounds directory entries	
unmap();
					map()
					write_bounds_entry()
					trap()
					  down_read(mm->bd_sem);
mpx_post_unmap();
up_write(mm->bd_sem);
					  allocate_bounds_table();

That's the whole point of bd_sem.


Yes. Got it.

3) According to Dave, those bounds tables related to adjacent VMAs within the
start and the end possibly don't have to be fully unmmaped, and we only need
free the part of backing physical memory.

Care to explain why that's a problem?


I guess you mean one new field mm->bd_remove_vmas should be added into staruct mm, right?

For those VMAs which we only need to free part of backing physical memory, we could not clear bounds directory entries and should also mark the range of backing physical memory within this vma. If so, maybe there are too many new fields which will be added into mm struct, right?

Thanks,
Qiaowei






[Index of Archives]     [Linux MIPS Home]     [LKML Archive]     [Linux ARM Kernel]     [Linux ARM]     [Linux]     [Git]     [Yosemite News]     [Linux SCSI]     [Linux Hams]

  Powered by Linux