All of lore.kernel.org
 help / color / mirror / Atom feed
* Getting rid of dynamic TASK_SIZE (on x86, at least)
@ 2016-05-10 16:07 ` Andy Lutomirski
  0 siblings, 0 replies; 22+ messages in thread
From: Andy Lutomirski @ 2016-05-10 16:07 UTC (permalink / raw)
  To: Dmitry Safonov, Ruslan Kabatsayev, X86 ML,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org, Borislav Petkov,
	Pavel Emelyanov, Cyrill Gorcunov, Oleg Nesterov

Hi all-

I'm trying to get rid of x86's dynamic TASK_SIZE and just redefine it
to TASK_SIZE_MAX.  So far, these are the TASK_SIZE users that actually
seem to care about the task in question:

get_unmapped_area.  This is used by mmap, mremap, exec, uprobe XOL,
and maybe some other things.

 - mmap, mremap, etc: IMO this should check in_compat_syscall, not
TIF_ADDR32.  If a 64-bit task does an explicit 32-bit mmap (using int
$0x80, for example), it should get a 32-bit address back.

 - xol_add_vma: This one is weird: uprobes really is doing something
behind the task's back, and the addresses need to be consistent with
the address width.  I'm not quite sure what to do here.

 - exec.  This wants to set up mappings that are appropriate for the new task.

My inclination would be add a new 'limit' parameter to all the
get_unmapped_area variants and possible to vm_brk and friends and to
thus push the decision into the callers.  For the syscalls, we could
add:

static inline unsigned long this_syscall_addr_limit(void) { return TASK_SIZE; }

and override it on x86.

I'm not super excited to write that patch, though...

--Andy

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2016-05-11 18:08 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-10 16:07 Getting rid of dynamic TASK_SIZE (on x86, at least) Andy Lutomirski
2016-05-10 16:07 ` Andy Lutomirski
2016-05-10 16:30 ` Cyrill Gorcunov
2016-05-10 16:30   ` Cyrill Gorcunov
2016-05-10 16:45   ` Andy Lutomirski
2016-05-10 16:45     ` Andy Lutomirski
2016-05-10 17:05     ` Cyrill Gorcunov
2016-05-10 17:05       ` Cyrill Gorcunov
2016-05-10 17:26       ` Andy Lutomirski
2016-05-10 17:26         ` Andy Lutomirski
2016-05-10 17:49         ` Cyrill Gorcunov
2016-05-10 17:49           ` Cyrill Gorcunov
2016-05-10 21:11           ` Andy Lutomirski
2016-05-10 21:11             ` Andy Lutomirski
2016-05-11  5:59             ` Cyrill Gorcunov
2016-05-11  5:59               ` Cyrill Gorcunov
2016-05-10 18:20 ` Oleg Nesterov
2016-05-10 18:20   ` Oleg Nesterov
2016-05-10 20:29   ` Andy Lutomirski
2016-05-10 20:29     ` Andy Lutomirski
2016-05-11 18:08     ` Oleg Nesterov
2016-05-11 18:08       ` Oleg Nesterov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.