lkml.org 
[lkml]   [1996]   [Nov]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: do_mmap()



Seems to me that this code get from user the 1st byte of each page of the
memory area to map. So, if user lies to Linux, an exception will occur.

Gerard.

On Sat, 16 Nov 1996, David L. Oppenheimer wrote:

>
> Does anyone know what the purpose of this piece of code is? (It appears at the
> end of do_mmap() in mm/mmap.c)
>
> if (flags & VM_LOCKED) {
> unsigned long start = addr;
> mm->locked_vm += len >> PAGE_SHIFT;
> do {
> char c = get_user((char *) start);
> len -= PAGE_SIZE;
> start += PAGE_SIZE;
> __asm__ __volatile__("": :"r" (c));
> } while (len > 0);
> }

\
 
 \ /
  Last update: 2005-03-22 13:38    [W:0.048 / U:0.728 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site